[go-nuts] Serve HTML/CSS/JS as a desktop app?

2018-09-22 Thread atighe
Hello, Is there a good active library that can serve HTML, CSS, and JS in a desktop app without CGO? Something like electron for Go. I do not want to programmatically create the GUI. I would rather create separate HTML. I also do not need communication between the two, I can just run POST requ

[go-nuts] Best method for getting input from user?

2018-05-28 Thread atighe
Hello again, I was wondering in y'all's opinion the best method for getting information from the user. I am gonna create a licensing system and need to be able to let the user add credentials to the specified local json map database, as well as remove credentials. They also must be able to sta

Re: [go-nuts] Cross platform native(no dependencies) GUI options.

2018-05-28 Thread atighe
I just do not like the slow compile speeds and the inability to cross compile easily. It just sucks to have a language with such power and to have a libraries kill it. Thanks for the comment though! -- You received this message because you are subscribed to the Google Groups "golang-nuts" grou

Re: [go-nuts] Cross platform native(no dependencies) GUI options.

2018-05-27 Thread atighe
I just do not want it to have cgo and it should be perfect. On Sunday, May 27, 2018 at 2:55:06 PM UTC-7, Tyler Compton wrote: > > I'm not sure if it's actually feasible to write a GUI library without > external libraries. A GUI that runs Linux will need to interact with an X > server or a Waylan

Re: [go-nuts] Cross platform native(no dependencies) GUI options.

2018-05-27 Thread atighe
Yeah, the ones suggested all use cgo though. On Sunday, May 27, 2018 at 2:08:17 PM UTC-7, Sebastien Binet wrote: > > There was very recently a thread about this on Reddit: > > > https://www.reddit.com/r/golang/comments/8m5icy/cross_platform_native_gui_library/ > > sent from my droid > > On Sun, Ma

[go-nuts] Cross platform native(no dependencies) GUI options.

2018-05-27 Thread atighe
Hello, I would like you guys to suggest some GUI libraries that do not have any HTML/CSS or C bindings, are cross platform and require no dependencies. When I say native, I mean no dependencies. I do not mean native to the OS. This would be great but I don't see any available that have no C b

[go-nuts] Re: Please help me solve a bug with my licencing system!

2018-05-11 Thread atighe
solved, hex.encode in server. simple mistake, sorry to waste you guys time! On Thursday, May 10, 2018 at 11:23:43 PM UTC-5, ati...@mail.ccsf.edu wrote: > > Hello all, > > I am creating a simple licencing system to help licence my own programs > and also to help others via github. I have come acro

Re: [go-nuts] Please help me solve a bug with my licencing system!

2018-05-11 Thread atighe
How do you recommend I check errors. I dismiss them because I don't like if err !=nil { log.error(err.error()} being all over my project. Suggestions please, Thanks! On Friday, May 11, 2018 at 2:28:32 AM UTC-5, kortschak wrote: > > To summarise: always check your errors. > > On Thu, 2018-05-10

Re: [go-nuts] Please help me solve a bug with my licencing system!

2018-05-11 Thread atighe
Thanks for the suggestion, will look into it! On Thursday, May 10, 2018 at 11:30:58 PM UTC-5, Burak Serdar wrote: > > It is likely that HashDecoded is "" (line 28) because > hex.DecodeString() fails, so password check never fails. > > On Thu, May 10, 2018 at 7:46 PM, > > wrote: > > Hello all,

[go-nuts] Please help me solve a bug with my licencing system!

2018-05-10 Thread atighe
Hello all, I am creating a simple licencing system to help licence my own programs and also to help others via github. I have come across a bug that I don't really understand and am asking for some advice. I will add the client code soon. I also hope to add more advanced features. Basically,