[-] rushaction@programming.dev 37 points 1 week ago

Is it? Sounds a lot like what I'd hope to hear from someone with his history.

Maybe he learned something. People can change, it's just really frickin hard for every one of us.

[-] rushaction@programming.dev 73 points 3 months ago* (last edited 3 months ago)

I'm going to try to help explain this, but i'll be honest it feels like you're coming from a place of frustration. I'm sorry about that, take a break :)

(I'm not a language expert, but here goes)

var test int < bruh what? :=

These are the two forms of variable declaration and the second one is a declaration and initialization short hand. I most commonly use :=. For instance:

foo := 1 // it's an int!
var bar uint16 // variable will be assigned the zero value for unit16 which is unsurprisingly, 0.

func(u User) hi () { ... } Where is the return type and why calling this fct doesnt require passing the u parameter but rather u.hi().

This has no return type because it returns no values. It does not require passing u. It's a method on the User type, specifically u User is a method receiver. You might think of this akin to self or this variable in other languages. By convention it is a singke character of the type's name.

If that function returned a value it might look like:

func(u User) hi() string {
    return "hi!"
}

map := map[string] int {} < wtf

This is confusing because of how it's written. But the intent is to have a map (aka dictionary or hashmap) with string keys and int values. In your example it's initializd to have no entries, the {}. Let me rewrite this a different way:

ages := map[string]int{
    "Alice": 38,
    "Bob": 37,
}

Hope this helps. In all honesty, Go's language is very simple and actually rather clear. There's definitely some funny bits, but these aren't it. Take a break, come back to it later. It's hard to learn if you are frustrated.

I also recommend doing the Tour of Go here. My engineers who found Go intimidating found it very accessible and helped them get through the learning code (as there is with any language).

Good luck (I'm on mobile and didn't check my syntax, hopefully my code works ๐Ÿ˜Ž)

[-] rushaction@programming.dev 24 points 3 months ago

Except Google Pay had the ability to send money to/from friends and bill splitting. Wallet has no such features at all. And nothing they've published or any news on it seems to mention this. (Which has left me somewhat confused that I'm missing something. But as best as I can tell, I'm not)

[-] rushaction@programming.dev 44 points 5 months ago

I'm more curious about the seemingly random reactions on every friggin message. What the hell is that?

[-] rushaction@programming.dev 16 points 6 months ago

Agreed. Though I worry that'll take pressure off the cantankerous legislators that are blocking true support for Ukraine.

How did US politics get to a point where Russia is tacitly if not explicitly being supported by half of the electorate? And all because of an ๐ŸŠ with an IQ to match?

:(

[-] rushaction@programming.dev 15 points 6 months ago* (last edited 6 months ago)

They expose themselves to risks simply by living in Russia.

Holy hell. That is absolutely not how the world works. People have no choice in the circumstances of their birth and frankly not a whole lot of control over their lives either. Such behavior is reckless and shows a wanton disregard for other human beings.

Please stop. Putting random people at risk of having their lives destroyed by the authoritarian regime in which they were born into is so incredibly shameful.

What an incredible display of emotional immaturity. So much so I assume this must be trolling.

Grow up. Quickly.

Edit: make yourself useful and target people that matter if you need to express yourself. I hear Putin and everyone connected to him is a good choice.

[-] rushaction@programming.dev 41 points 6 months ago

Respectfully, please do not do this. Helium is a non-renewable resource. Once lost to the atmosphere it's gone for good. Nitrogen on the other hand makes up 78% of the atmosphere and is equally effective.

[-] rushaction@programming.dev 18 points 7 months ago

My gay ass doesn't see an issue at all with this.

Then again it's religion. And as we are currently experiencing, that is a shit show no matter what.

[-] rushaction@programming.dev 36 points 7 months ago

For me it's more like new interesting self hosted project and then find out it's only distributed as a docker container without any proper packaging. As someone who runs FreeBSD, this is a frustration I've run into with quite a number of projects.

[-] rushaction@programming.dev 22 points 7 months ago

I thought roach myself.

[-] rushaction@programming.dev 69 points 8 months ago

The Gays would kindly ask this list include the HIV crises.

Thank you!

[-] rushaction@programming.dev 13 points 10 months ago

Sigh, amusing but really unnecessary effort.

  1. use a lid. Water boils significantly faster with one!
  2. buy a $5 pot minder, it'll make noise when the pot starts boiling

There done.

view more: next โ€บ

rushaction

joined 11 months ago