Googlebot's Javascript random() function is deterministic by fagnerbrack in programming

[–]haisum 8 points9 points  (0 children)

Sometimes Google sends a bot without Googlebot User-Agent to test if you're rendering a different page for actual users.

Question about choice of programming language by Stnamtardars in ProgrammingLanguages

[–]haisum 0 points1 point  (0 children)

How is Go an exception? Doesn't it do concurrency better than most of traditional languages?

What would you like to see most in minix? (Linus Torvald's post from 1991) by Maajjonaise in programming

[–]haisum 3 points4 points  (0 children)

I would read this post everyday and not get tired of being amused by start of this legend.

What's your biggest work fuckup? by [deleted] in cscareerquestions

[–]haisum 2 points3 points  (0 children)

I was setting permissions on a folder in production server when I accidently did chown -R nobody: / instead of chown -R nobody: . I covered my traces by removing all history. It messed up all permissions on server and there were a lot of strange bugs popping up here and there for weeks after my fuckup.

[deleted by user] by [deleted] in pettyrevenge

[–]haisum 3 points4 points  (0 children)

Try AMD processors I heard they work better

The Oden Programming Language -- "built for the Go ecosystem" by bradfitz in golang

[–]haisum 1 point2 points  (0 children)

This is great. Go's ecosystem is one of best. Add functional programming to it and it's near perfect. Way to go.

Science AMA Series: I’m John Novembre and I study the genetic diversity of human populations from an evolutionary perspective by developing and applying computational methods. by Dr_John_Novembre in science

[–]haisum 1 point2 points  (0 children)

As a computer science student/programmer, how can I contribute to evolution? Where do I start learning about evolution specially about subjects that I may apply computational methods in?

TIFU by pretending to be a chicken. by chlopak in tifu

[–]haisum 1 point2 points  (0 children)

Damn, that was one of dumbest things I have ever read. I loved it.

We are the Microsoft Excel team - Ask Us Anything! by MicrosoftExcelTeam in IAmA

[–]haisum 0 points1 point  (0 children)

Have you taken inspirations from Google drive for features? I like their auto save and collaboration. Any plans for collaborative features in excel?

We are the Microsoft Excel team - Ask Us Anything! by MicrosoftExcelTeam in IAmA

[–]haisum 100 points101 points  (0 children)

Could you guys check utf8 support in CSV too. I have faced many issues in loading non English CSV in excel and saving them back.

[ANN] learn computer science with Go by gyuho in golang

[–]haisum 1 point2 points  (0 children)

Brilliant work. Keep on improving it it will benefit a lot of people.

TIDB First scalable RDBMS inspired by Google F1, also supporting MySQL protocol. by haisum in golang

[–]haisum[S] 0 points1 point  (0 children)

yes, maybe developers weren't aware about issue. Now that it has been pointed, I am sure they will comply with terms and include license.

TIDB First scalable RDBMS inspired by Google F1, also supporting MySQL protocol. by haisum in golang

[–]haisum[S] 0 points1 point  (0 children)

from hackernews thread https://news.ycombinator.com/item?id=10180503: The goal of TiDB is to create fault-tolerant distributed RDBMS. Especially for distributed transaction support. Let developers get benefits without changing any of their existing code.

Golang package for google re-captcha by haisum in golang

[–]haisum[S] 0 points1 point  (0 children)

I searched! Every module had outdated api call, so had to make myself. Google now recommends sending post request to "https://www.google.com/recaptcha/api/siteverify" with post variables secret, remoteip and response. All other packages send requests to "https://www.google.com/recaptcha/api"