hm I regularly massacre processes in my laptop...
HN user
high_density
maybe we can have some keyboard plugin/"mode" that merges letters to form symbols in special way?
Korean windows have a "special-emoji" keyboard that can be invoked by: 1. type a charactor 2. press 'hanja' key 3. (wild special character selection menu appears)
example: § (from 'ㅁ') / ㈜ (from 'ㅁ') / ㎖ (from 'ㄹ')
if 80 devs all read the same part same way, it won't make much of a difference.
maybe the issue is we aren't using static analysis enough / don't have enough static analysis tools?
newb here -- please expand more on this.
Are there stuff that kotlin's pattern-matching can't do?
because most ML libraries are python-first...
as for other stuff (web-servers, what not), I don't think python can beat kotlin / typescript / etc
but those leaks weren't 100% believable --- this case, it's different. (or apple can just change their future products...)
using tmpfs... it'll help a bit (I used mysql-on-tmpfs before)
but scala's cousin kotlin doesn't seem to suffer from this a lot... kotlin library-packages don't have kotlin-version to their download link... maybe I'm missing something?
for most simple HTTP webservers, python maintains somewhat OK-ish source/binary compatibility between python-versions. But my experience with scala was things breaking between scala-versions / waiting for some library to compile with next scala-version...
I'm surprised why scala couldn't solve it better than python -- I mean, scala's a compiled language, so it should have more wriggle-room...
is it something deeply ingrained to rust? or is it something rust is working on?
maybe they're producing too many devices, so ended up filling up SN space for some device type?
well Google's using all three in different ways...
and another trend on prog. langs: they're becoming more and more similar feature-wise (eg. pattern matching)
maybe Google, FB, Amazon are victims of their own 'successful ML algorithms' or some sellers that are gaming the advertisement system?
break the hash algo...?
...but you can delivery boxes...?
so put mail in boxes?
I mean, there's DHL, Fedex, and others...
that's when you pour almost all of your savings...
And is 'loyalty towards a company' for having few shares a good thing? loyalty towards what ends? towards massive financial damage?
is this induction, but in opposite direction?
N+1 backup is N backup
1 backup is 0 backup
I'm sorry, but you seems to be void of any refutation of my logic.
you iterated some famous people who are supportive of WSB, but... so what? Are they 'the wise ones of the stock market'? Are they financially supporting financial damage-takers?
They're just famous people, and that's all.
I agree that making a more level playing field is good. But that should be done by congress and law makers, not by burning gullible people's money.
ok, I didn't know it's left or right term... wtf the word seems to be like 'feel-good-fool' but seems there's more to it
sorry I thought Social Justice Warrior is a term for 'people who rally to do good for the society but are just a bunch of fools'
well they might not be the SJWs, but the gullible ones fooled by SJWs.
the whole premise of the campaign is to 'fight against the injust hedge funds' (by burning your own money, that is)
on the side note, this makes an excellent youtube material...
there's a Korean investment channel that explains how people were gullible, and it's really funny to hear the fiascos...
...but not when I'm the gullible that is!
yes agreed. it's not crime by law... but it's like using uncovered parts of the law to swindle people.
Though it'll be really difficult to make a law preventing this without hurting beneficial actions.
well depends on the law though...
but this time, there's no 'fradulent' element, so I guess no.
If there were promises of earnings, it might have been.
ditto this. And the motivation for organizing "buy gamestop" isn't altruistic as it seems..
1. buy gamestop stocks
2. call in SJWs to 'fight against the bad guys (hedge funds)' by buying gamestop stocks
- they relay this message to others
3. watch price go up, thanks to campaigns from SJWs
4. sell off when the price is right (feels highest)
5. watch the price go back to normal valuation - you can't expect this high price to continue forever.
6. watch people who were fooled by SJWs cry over their lifesavings
this is a financial crime, though the victims fell for a temporary 'feel good' moment... so I guess they 'paid' their lesson?
as for Robinhood, blocking 'buy' seems to be a protective measure that backfired too much. Robinhood's branding depends on how it can explain this well...
edit: I agree that it's not a 'financial crime' by law... I just mean it's a detestable and almost 'criminal' campaign.
Actually... the 'Mainland-China' isn't 'China' at all -- they got rid of their own legacy during the Cultural Revolution. The traditions, artworks, even the people were lost for a lost cause (idolization of Mao)
Taiwan is 'what remains of the real China -- the Han dynasty and others'. Though the mainland 'Chinese' has deteriorated the branding 'china' so much that Taiwanese no longer wants to do anything with the word 'china'
what about upgrading fans to silent fans? Has anyone tried noctua fans?
even if the 'gradually-evolving' process isn't provided, isn't there some genetic chance? (be it really small -- like lottery?)
...what should I do?
I remember pooping a really long worm some years ago, and taking a anti-worm medicine...
woah another rustacean? hi there!
for rust, it counts as a 'feature' because it provides safety guarantee, and they're opt-in (can use unsafe)
as for haskell, that immutability also provides guarantee of 'referential-transparency', which the users/libraries can use to their advantange.
But in python's case, you have to define the multi-line function *outside* the chaining, and 'forcing to name things' isn't always good (especially for constantly-changing code)
def hideEmail(user): return { ...user, email: user.hideEmail? '': user.email, }
users.map(hideEmail)
// later: def hideEmailAndPhone(user): return { ...user, email: user.hideEmail? '': user.email, phoneNo: ... // same stuff }
users.map(hideEmailAndPhone) ---
As for JS/TS, you can have 'named-callback-fn':
users.map(function hidePrivateFields(user) { ... })
and it's not difficult to come up with 'named-lambda-fn' standard
users.map(hidePrivateFields(user) => { ... })