[go-nuts] Re: Build c-shared ASLR Windows dll

2020-09-15 Thread brainman
CL you are referring to onle changed executables. I don't think DLLs were fixed. Please file an issue, maybe someone will fix your problem, Thank you. Alex On Wednesday, 16 September 2020 at 02:41:24 UTC+10 Quim Muntal wrote: > Hi everyone, > > I need to export some Go function as a windows/a

[go-nuts] Re: Inject windows manifest into binary built by "go build"

2020-09-15 Thread Alex
> Is there a way to force the go linker to include the local manifest file? A syso file *is* the way. > Or somehow inject the manifest into a built exe? Readup on *mt.exe*, I haven't used it on go programs but it might work. https://docs.microsoft.com/en-us/cpp/build/how-to-embed-a-manifest-insi

Re: [go-nuts] Re: Pure Go Oracle Driver?

2020-09-15 Thread Samy Sultan
you can see my project go-ora it is a pure go oracle client https://github.com/sijms/go-ora في الأربعاء، 22 يوليو 2015 في تمام الساعة 11:10:37 م UTC+3، كتب oldCoderException رسالة نصها: > Much appreciated Rich, > > As you astutely hinted, we're deploying to a server that doesn't have the > o

[go-nuts] Build c-shared ASLR Windows dll

2020-09-15 Thread Quim Muntal
Hi everyone, I need to export some Go function as a windows/amd64 DLL which have ASLR and High Entropy VA protections enabled. I'm currently building the binary using go 1.15 and the command `go build -buildmode=c-shared .`, which generates a DLL with the NX flag but without IMAGE_DLLCHARACTER

Re: [go-nuts] Re: While implement ssh client using golang, record keyboard input

2020-09-15 Thread Marvin Renich
* sc3983...@gmail.com [200915 11:41]: > Hi Everyone: > > I have the same problem, How do I get user input command, with *SSH > client with a Interactive Shell* > > 在 2018年10月23日星期二 UTC+8上午4:57:50,Sun Frank写道: > > > > Hi Everyone: > > > > I came across a problem which puzzled me for couple

[go-nuts] Re: What books/tutorail/resources/blog for newcomer to golang?

2020-09-15 Thread Brian Candler
There are lots of excellent resources here: https://golang.org/doc/ I especially recommend "A Tour of Go" and "Effective Go", and many articles under The Go Blog, such as "Go Slices: usage and internals" -- You received this message because you are subscribed to the Google Groups "golang-nuts"

[go-nuts] What books/tutorail/resources/blog for newcomer to golang?

2020-09-15 Thread Sachin Maharana
If i had to learn golang now what are the best books/resources/blogs to start with. Thanks -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr.

[go-nuts] Re: While implement ssh client using golang, record keyboard input

2020-09-15 Thread sc3983315
Hi Everyone: I have the same problem, How do I get user input command, with *SSH client with a Interactive Shell* 在 2018年10月23日星期二 UTC+8上午4:57:50,Sun Frank写道: > > Hi Everyone: > > I came across a problem which puzzled me for couple of days. I am trying > to write a* SSH client with a Inte

Re: [go-nuts] Re: Secure password hashing algorithm in go.

2020-09-15 Thread anggi nugroho
hai.. is the issue solved? Pada Selasa, 08 Januari 2019 pukul 05.19.33 UTC+7 kortschak menulis: > The problem with this approach is that something that's good enough for > This Use™ by the owner of the code will be seen by another person and > then used by someone else with less understanding. Th

[go-nuts] Inject windows manifest into binary built by "go build"

2020-09-15 Thread Augusto Roman
I’m trying to embed windows manifest information into an exe. I’ve generated the resource.syso file using goversioninfo and it works fine when that file is in the target package. But now I want to do something slightly different: I want to use go build module/package/cmd/binary with a locally-g

[go-nuts] Re: SQL Do I use Query or Exec?

2020-09-15 Thread Tamás Gulácsi
You can use EXPLAIN in PostgreSQL: # explain with t as (select * from mantis_user_table) update mantis_user_table b set id=id where exists (select 1 from t where t.id = b.id); Update on mantis_user_table b (cost=23.19..41.92 rows=453 width=186) -> Hash Join (cost=23.19..41.92 rows=453 width=

[go-nuts] SQL Do I use Query or Exec?

2020-09-15 Thread Rich
I am writing a program in Go that allows users to put a query to a database. This program uses multiple different drivers such as Postgres, MySQL, and I want to be able to add other drivers as needed. This is supposed to be something a user can use and depending on how the configuration file

AW: [go-nuts] Using Mysql and Golang combined resources

2020-09-15 Thread Lutz Horn
The net contains many sources for this kind of information. Just a random pick: https://medium.com/@hugo.bjarred/mysql-and-golang-ea0d620574d2 Von: golang-nuts@googlegroups.com im Auftrag von Ayush Paudel Gesendet: Montag, 14. September 2020 13:11 An: g