Todsaporn Banjerdkit

Results 36 issues of Todsaporn Banjerdkit

```rust pub fn set_icon(&mut self, icon: &str) -> Result { unsafe { let icon_name = NSString::alloc(nil).init_str(icon); self.icon = Some(NSImage::initWithContentsOfFile_( NSImage::alloc(nil), icon_name, )); } Ok(()) } ``` I try to modify...

This should take me some time but I willing to do it anyway because your story and style really inspire me 👍 Please guide me on what to do. Thanks!

Refer to https://github.com/axios/axios/issues/1219 Main issue for me is `axios` can't be use with service workers. And `axios`not seem to like `fetch adapter` PR https://github.com/contentful/contentful.js/pull/396 So `isomorphic-fetch` seem to be better...

at https://github.com/wasmflow/node-to-rust/blob/master/book/chapters/chapter-15-closures.adoc#basic-closure-syntax ```typescript let closure = () \=> { console.log("Hi! I'm in a closure"); }; closure(); ``` has weird `\=>` for some reason and it's appear all over the book....

AIR 3.8 is released with Rectangle Texture support also Starling... https://github.com/PrimaryFeather/Starling-Framework/commit/5b37e1843710650e56202c396d59952c0814fa0f So anyone take a look for Rectangle Texture exporter supported yet?

**Step to reproduce** 1. Checkout fresh install. 1. `npm i` 1. `npm run dev` **Results** - webpack throw error **Workaround** 1. `yarn install` // To install dependency 1. `npm run...

This should be on front page of http://todomvc.com/ to gain more :heart: Cheers

question

Can I create new wallet through API? Or maybe just `web3.eth.accounts.create();`? Thanks

When I try to use ```go intents, err := client.IntentsFindAllRequest() if err != nil { log.Fatal(err) } for _, intent := range intents { fmt.Println(intent.Name) } ``` I got ```...