[go-nuts] Go Lang @ Plano,TX

2020-06-29 Thread johnatlantis07
Hi, Hope You Are Doing Well. If You Are Interested with Below Position Please Forward Me Your Updated Resume As Soon As Possible. *Go Lang Developers w/Testing background * *Plano, TX * *Long Term Contract* *Responsibilities: * • 3-5 years of strong API development experience

[go-nuts] Go lang

2020-03-18 Thread krishmashah2894
I have crud example of insert on localhost when i start with server http://localhost:8080 i get the view of apache Tomcat/8.5.43 So can u please help me out exactly what i have to write in url so that i can get the output of form. Below i have attached my go and template file if any changes

[go-nuts] Go Lang Challenge

2019-10-10 Thread ckcharmingchandan
Part- 1 Implement your own versions of the following data structures in non-parallel and parallel execution formats, and compare them. Stack (Linked List, Array based and Binary Tree) Circular Buffer (Linked List, Array based and Binary Tree) As part of your comparison you will need to

[go-nuts] Go Lang - Need Help

2019-02-20 Thread Merry
I am new to aws Could anybody help me to write a lambda function which i need read the cognio user log events, i have found i can trigger a lamdab from Cognio ?User pool in pre sign up and post sign up , but i wond understanf how can i getthe log events like user login, loug, password

Re: [go-nuts] GO lang not able to decrypt the xor-base64 text

2019-01-20 Thread Christian Staffa
Hi I guess the problem is the range over the input. if you have utf8 runes > 1byte in your input, you are not iterating with over each byte anymore. the i is the index of a encoded rune the string., right? Sent from my iPhone > On 19. Jan 2019, at 13:53, Soorya Prakash wrote: > > > I am

Re: [go-nuts] GO lang not able to decrypt the xor-base64 text

2019-01-20 Thread Jan Mercl
On Sun, Jan 20, 2019 at 4:13 PM Soorya Prakash wrote: > for i := range input { > output += string(input[i] ^ key[i%len(key)]) > } BTW, that's O(n^2). -- -j -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this

[go-nuts] GO lang not able to decrypt the xor-base64 text

2019-01-20 Thread Soorya Prakash
I am using the below code to encrypt and decrypt the data. Now I want to encrypt the data from Node JS and want to decrypt the data from Go lang. But I am not able to achieve it using GO lang. var B64XorCipher = { encode: function(key, data) { return new Buffer(xorStrings(key,

Re: [go-nuts] GO lang implementation for one deck card shuffle

2018-08-17 Thread Jan Mercl
On Fri, Aug 17, 2018 at 1:09 PM Sokolov Yura wrote: > I'd recently made "practically secure rng": https://github.com/funny-falcon/go-rando > > It uses SipHash permutation core (so it has 256 bit permuation stsate + counters), but also constantly reseeded from 1024 bit "entropy pool" that is

Re: [go-nuts] GO lang implementation for one deck card shuffle

2018-08-17 Thread Sokolov Yura
I'd recently made "practically secure rng": https://github.com/funny-falcon/go-rando It uses SipHash permutation core (so it has 256 bit permuation stsate + counters), but also constantly reseeded from 1024 bit "entropy pool" that is frequently refsreshed from crypto/rand. -- You received

Re: [go-nuts] GO lang implementation for one deck card shuffle

2018-08-15 Thread Pat Farrell
On Thursday, August 16, 2018 at 12:51:19 AM UTC-4, Rob 'Commander' Pike wrote: > > The math/rand package has 38848 bits of state. The seed value is only 64 > bits, yes, but that's a separate question. Is seeding what you are > concerned with? > Oh, that is good news. I didn't see that in the

Re: [go-nuts] GO lang implementation for one deck card shuffle

2018-08-15 Thread Rob Pike
The math/rand package has 38848 bits of state. The seed value is only 64 bits, yes, but that's a separate question. Is seeding what you are concerned with? -rob On Thu, Aug 16, 2018 at 1:19 PM, Pat Farrell wrote: > I want to build a poker simulator. For this, I need a nice method to > shuffle

[go-nuts] GO lang implementation for one deck card shuffle

2018-08-15 Thread Pat Farrell
I want to build a poker simulator. For this, I need a nice method to shuffle cards. A bit of googling shows that a good basic approach is the Fisher-Yates shuffle. Its O(n) and space efficient. But it depends on the quality of the PRNG. I am specifically concerned that the math/rand is only

[go-nuts] go lang best practices and git repo structure for newbies

2018-04-23 Thread vtejaswini1
Hello, I was quite new to go lang. It would be good if anyone can help with best practices and practical git repo structure example for getting inspiration to kick start. Thanks, Teja -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To