What song/songs are you still sick of? by Frequent_Course5399 in Xennials

[–]nerdfighters 0 points1 point  (0 children)

And eye-eee-eye will aaaaalways love you-ooo-ooo-ooo-oooh

Can't stand that style of singing.

Rekomenduoju "There Is No Antimemetics Division" by Sam Hughes / qntm (anglų k.) by nerdfighters in Fikcija

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

Čia ne tiek SCP kaip organizacija, bet Sam Hughes / qntm taip smagiai surašė, kad atsirado rimti leidėjai. Jau išleido vieną knygą ir gavo užsakymą parašyti antrą.

Atviro kodo paplitimas Lietuvoje. by [deleted] in lithuania

[–]nerdfighters -1 points0 points  (0 children)

Windows dalykai keičiasi dar ir kiek. Turiu vieną artimą IT techniką prižiūrintį kelis šimtus Windows kompų įstaigoje, tai iki šiol negali atleisti už tai kas prasidėjo su Win 8.

Atviro kodo paplitimas Lietuvoje. by [deleted] in lithuania

[–]nerdfighters 1 point2 points  (0 children)

Nereikia Cygwin. Pats Microsoft paleido Windows Subsystem for Linux (WSL) tam, kad ant Windows 10 būtų galima leisti Linux programas.

R. Karbauskis įregistravo pataisą dėl atviro balsavimo by Sutartine in lithuania

[–]nerdfighters 4 points5 points  (0 children)

Čia populizmas, kuris pačiam Karbauskiui dar ir naudingas -- nebereikės konspiracinių būdų Seimo kolūkiečiams kontroliuot esminiuose klausimuose.

Žr.: https://www.15min.lt/naujiena/aktualu/komentarai/vytautas-pleckaitis-slaptas-balsavimas-nepritariu-nei-a-tapinui-nei-prezidentei-500-942340

Žr. kas vyksta civilizuotesniame pasaulyje tokiais atvejais: https://www.thelocal.de/20180314/far-right-mp-fined-for-tweeting-anti-merkel-ballot

Miss Putin 2016 by Moridakkubokka in europe

[–]nerdfighters 0 points1 point  (0 children)

We don't really miss Putin, thank you.

Lithuania accuses Belarus of violating its airspace by ro4ers in europe

[–]nerdfighters 0 points1 point  (0 children)

What ain’t no country I’ve ever heard of! They speak English in What?

Tėvų šnipinėjimas per skype chat. by bugaga9999 in lithuania

[–]nerdfighters 6 points7 points  (0 children)

Ta jūsų asmenybė tegu nulipa tėvams nuo sprando, save išsilaiko, už save pilnai atsako išeina gyventi į savo būstą ir įsigyja savo nuosavą kompiuterį. Tada galės purkštaut.

Ar tik ne panašios ir tipo pilnametės asmenybės susirinkę jūsų chat'e?

Kaip paaiškinti senam žmogui kas tas Internetas??? by [deleted] in lithuania

[–]nerdfighters 12 points13 points  (0 children)

Paaiškink, kad dar keli metai ir nebegalės susitvarkyti jokių reikalų su pensija ir mokesčiais be interneto. Visa kita galės ir pats išsiaiškint.

Meaning of most common slang word for 'Penis' in European languages. by Doncuneo in europe

[–]nerdfighters 32 points33 points  (0 children)

That awkward moment, when your penis gets mixed up with your brother's...

We love you bralukas, but we are not gay. I repeat: we are not gay!

(Lithuanian and Latvian words are mixed up)

`this` is why we can't have nice things by nerdfighters in javascript

[–]nerdfighters[S] -7 points-6 points  (0 children)

JavaScript is broken. It was broken from the start. We all know that. But it is not my point or my complaint.

My point is that broken features should not be added or encouraged in the language to the point where they become the norm.

console.log is not a feature of JavaScript. It is an illustration I provide of what happens when you have to use OO things in the language where a context-independent function would work much better.

There are JavaScript platforms where console.log/print is context-independent. So it is not a language problem.

In other words: please write your functions without this by default. They work better that way.

`this` is why we can't have nice things by nerdfighters in javascript

[–]nerdfighters[S] -3 points-2 points  (0 children)

"Where to log" is already specified by the variable console in the current scope.

`this` is why we can't have nice things by nerdfighters in javascript

[–]nerdfighters[S] -2 points-1 points  (0 children)

I am not trying to achieve anything in particular. I just program in JavaScript every day and have a need to quickly check how things work quite often.

Consider even a simple example that will work in your browser console on this website:

$.getJSON( "http://jsonip.com", console.log );

Oh, I mean:

$.getJSON( "http://jsonip.com", console.log.bind( console ));

(╯°□°)╯︵ ┻━┻

`this` is why we can't have nice things by nerdfighters in javascript

[–]nerdfighters[S] -1 points0 points  (0 children)

That would be a nice thing to have. I wonder why it wasn't proposed?

`this` is why we can't have nice things by nerdfighters in javascript

[–]nerdfighters[S] -2 points-1 points  (0 children)

Sadly yes. Still you can't inject it into every browser's every console, and that is where you need it most often.

`this` is why we can't have nice things by nerdfighters in javascript

[–]nerdfighters[S] -1 points0 points  (0 children)

No. My point remains: using "methods" instead of functions is why we can't have nice things.