Rakan Al-Huneiti
Rakan Al-Huneiti
This enables admin to schedule push notifications to be sent at a specific time in the future.
Provide a way for send notifications tasks to be cancelled.
Hello @tomusdrw, Using this peice of code: ``` pub fn use_key(keystore_file: &String, password: String) -> Option { let file = File::open(&keystore_file).unwrap(); let key: KeyFile = serde_json::from_reader(file).unwrap(); let password: Protected =...
This PR upgrades the code to use the new pallet syntax
When adding cells to the gridview, they don't show until a scroll gesture is made. Once this happens all the items are rendered normally. Whats going wrong?
It would be great if the package can also show the list of files that have been changed. Also the file names / hunks should be clickable to be able...
Thanks for this package! I've been wanting to make something like this for a while. It would be nice if the package can fetch "upstream" or "origin" (whatever the remote...
For the coding style guide, a quick search pointed me to: https://github.com/bbatsov/emacs-lisp-style-guide which looks fine from a quick glance.
Hello, I was wondering if it's possible for the Github reporter to report the result of each step back to Github for their UI to display? If that's not currently...
Hello, Is there a reason why `U*` types do not implement `From`/`Into` from each other? At least to be able to cast upwards. Example, ```rust impl From for U128 {...