Discuss Scratch

Firedrake969
Scratcher
1000+ posts

Go

Does anybody use Go? I have to learn it since I bought a Go t-shirt at Google

'17 rickoid

bf97b44a7fbd33db070f6ade2b7dc549
VoltageGames
Scratcher
1000+ posts

Go

… would've been nice if you told us what Go was.
https://code.google.com/p/go/ <– did you mean this?

Last edited by VoltageGames (Nov. 26, 2015 04:17:31)


i3-6100 / r9 380 / 8 gigs ram / 1 tb hdd

Click here to inflate my ego and thank me for my posts.


Firedrake969
Scratcher
1000+ posts

Go

Yeah, golang

'17 rickoid

bf97b44a7fbd33db070f6ade2b7dc549
Firedrake969
Scratcher
1000+ posts

Go

Bump…

Anybody?

'17 rickoid

bf97b44a7fbd33db070f6ade2b7dc549
MegaApuTurkUltra
Scratcher
1000+ posts

Go

Nope
It seems nice though

$(".box-head")[0].textContent = "committing AT crimes since $whenever"
Firedrake969
Scratcher
1000+ posts

Go

Helped me understand pointers, but structs and interfaces and function syntax take some getting used to

'17 rickoid

bf97b44a7fbd33db070f6ade2b7dc549
DrKat123
Scratcher
1000+ posts

Go

Firedrake969 wrote:

Does anybody use Go? I have to learn it since I bought a Go t-shirt at Google
duuude you don't have to do that

Moving from Scratch? Don't learn C or Java, try Snap!
it haz OOP
DrKat McKatFace
First of all I'm 100% human and humans does not have a cat face
and second, the Boaty McBoatFace/Parsey McParseFace madness has just begun

λ
Sharp, my new Scratch mod
Is my post/siggy worthy for an internet?
DrKat123
Scratcher
1000+ posts

Go

Ok try this
import "fmt"
func main() {
	fmt.Println("Hello, World")
	fmt.Println("I'm a n00b ATer")
}
I dare you ATers print this

Last edited by DrKat123 (Dec. 14, 2015 06:52:06)


Moving from Scratch? Don't learn C or Java, try Snap!
it haz OOP
DrKat McKatFace
First of all I'm 100% human and humans does not have a cat face
and second, the Boaty McBoatFace/Parsey McParseFace madness has just begun

λ
Sharp, my new Scratch mod
Is my post/siggy worthy for an internet?
MegaApuTurkUltra
Scratcher
1000+ posts

Go

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.

Last edited by MegaApuTurkUltra (Dec. 14, 2015 13:49:26)


$(".box-head")[0].textContent = "committing AT crimes since $whenever"
comp09
Scratcher
1000+ posts

Go

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
…which is what good programming practices are for…


Visit the website of Andrew Sun!


Jonathan50
Scratcher
1000+ posts

Go

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^

Not yet a Knight of the Mu Calculus.
MegaApuTurkUltra
Scratcher
1000+ posts

Go

Jonathan50 wrote:

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^
People are imperfect. If we could all write 100% good code then C++ would be great. The problem is that even though you try, you still create random bugs. A bit of safety greatly reduces the chance that a bug you introduce is going to be completely untraceable.

$(".box-head")[0].textContent = "committing AT crimes since $whenever"
Jonathan50
Scratcher
1000+ posts

Go

MegaApuTurkUltra wrote:

Jonathan50 wrote:

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^
People are imperfect. If we could all write 100% good code then C++ would be great. The problem is that even though you try, you still create random bugs. A bit of safety greatly reduces the chance that a bug you introduce is going to be completely untraceable.
but what's wrong with that is then you will still use bad practices and you'll trip on it later, even with Go.

Not yet a Knight of the Mu Calculus.
MegaApuTurkUltra
Scratcher
1000+ posts

Go

Jonathan50 wrote:

MegaApuTurkUltra wrote:

Jonathan50 wrote:

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^
People are imperfect. If we could all write 100% good code then C++ would be great. The problem is that even though you try, you still create random bugs. A bit of safety greatly reduces the chance that a bug you introduce is going to be completely untraceable.
but what's wrong with that is then you will still use bad practices and you'll trip on it later, even with Go.
Well yes, don't write serious code until you know how to use best practices.
What I'm saying is best practices can't possibly protect you from everything.

$(".box-head")[0].textContent = "committing AT crimes since $whenever"
Firedrake969
Scratcher
1000+ posts

Go

Jonathan50 wrote:

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^
So then write good Go code. Use whatever tool you want as long as it meets your needs.

How to complain about Go:
https://medium.com/@divan/how-to-complain-about-go-349013e06d24#.3i3d89xrj

Last edited by Firedrake969 (Dec. 15, 2015 00:04:40)


'17 rickoid

bf97b44a7fbd33db070f6ade2b7dc549
Jonathan50
Scratcher
1000+ posts

Go

Firedrake969 wrote:

Jonathan50 wrote:

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^
So then write good Go code. Use whatever tool you want as long as it meets your needs.
I know that, I'm simply telling MATU that using Go isn't an excuse for writing bad code…

Not yet a Knight of the Mu Calculus.
comp09
Scratcher
1000+ posts

Go

Jonathan50 wrote:

Firedrake969 wrote:

Jonathan50 wrote:

MegaApuTurkUltra wrote:

@ChocolatePi's comment which I'll assume was meant to GO here pun intended
https://scratch.mit.edu/discuss/post/1666130/

My response: Go is C++ for those who would rather not spend hours figuring out what the heck is causing a segfault 0.01% of the time they run their code.
pls no
just debug it and write good code

comp09 wrote:

…which is what good programming practices are for…
^^^
So then write good Go code. Use whatever tool you want as long as it meets your needs.
I know that, I'm simply telling MATU that using Go isn't an excuse for writing bad code…
I hear that Go is (annoyingly) designed in such a way to force Google engineers to code in a certain way.


Visit the website of Andrew Sun!


Firedrake969
Scratcher
1000+ posts

Go

Where do you see that?

'17 rickoid

bf97b44a7fbd33db070f6ade2b7dc549
gdpr533f604550b2f20900645890
Scratcher
1000+ posts

Go

Go

wait for it…

ogle

There is also something called “Google Apps Script.” Does it have any relation to Go?
Jonathan50
Scratcher
1000+ posts

Go

Chibi-Matoran wrote:

Go

wait for it…

ogle

There is also something called “Google Apps Script.” Does it have any relation to Go?
No
Google Apps Script is something that (IMO) never should've happened.
It's JavaScript but supposed to be for Google Drive/Docs.

Last edited by Jonathan50 (Dec. 15, 2015 00:13:11)


Not yet a Knight of the Mu Calculus.

Powered by DjangoBB