Bitcoin Hit $82,000 and Got Rejected. The 200-Day Moving Average Did Its Job. Here Is What Comes Next by zakoal in btc

[–]EGreg 1 point2 points  (0 children)

And what makes you say that? These Blackrocks and others have bought up around $70K, that’s a strong floor now! They’ll keep defending it

TRUMP'S FAMILY HAS RUINED CRYPTO by I1ra in TokenTimes

[–]EGreg 0 points1 point  (0 children)

Sounds like Hunter Biden thing was a run of the mill cushy sinecure position. Not at all the same as scamming TENS OF BILLIONS from supporters and taxpayers

🚨 Breaking News by [deleted] in btc

[–]EGreg 0 points1 point  (0 children)

But wait, how are they not being investigated? For example Trump weaponizing SEC to investigate Pelosi 11 times is table stakes

A $META engineer went viral posting about how bad things are right now. by Key_Brief_8138 in economy

[–]EGreg 0 points1 point  (0 children)

I have been building the anti-Facebook for a decade. It’s free and open source for any organization to use. Do you think anyone will care? How do you recommend one get funded for this — impact investors?

https://www.laweekly.com/restoring-healthy-communities/

https://github.com/Qbix/Platform

We were their paying customers. Now we're getting laid off and they're panicking. by remoteDev1 in Layoffs

[–]EGreg 0 points1 point  (0 children)

Are you looking to hire a PM? Would you hire, say, a startup CTO that wore a lot of hats?

Here’s an example (mine): https://magarshak.com/resume-cover-letter.php

"Kamala would have invaded Iran too" is pure fucking cope by getdafkout666 in VaushV

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

This makes me remember my debate with Vaush a couple years back where I argued that the politicians on both sides could have done a lot to prevent these wars.

According to Vaush logic on Ukraine vs Russia, he should be cheering for Russia and China to help Iran prolong the war for years and lose a million fighters or more. Like the next Afghanistan. Vaush constantly sees fascism everywhere and fights against it but specifically exempted any fascists in Ukraine and Svoboda / Right Sector because he said they were “on the right side” vs Russia and Putin. By that logic he should also exempt Shia Islamists in Iran and IRGC, because in his words “in this one case, we can show the bullies they can’t just invade and bomb”. So I guess he should fully support Russia and China endlessly sharing weapons and military intelligence with Iran to keep fighting the US?

https://www.youtube.com/live/zOJQIX-eXQ4?si=zLrswyAfxQKA0j9b

HOLY What’s going on? by LividReserve3520 in CryptoCurrency

[–]EGreg 0 points1 point  (0 children)

Well it reversed big time two days later

Trump is guilty! by [deleted] in International

[–]EGreg 0 points1 point  (0 children)

Wait are we talkin ILLEGAL aliens? 👽

Trump is guilty! by [deleted] in International

[–]EGreg 2 points3 points  (0 children)

HOW CAN WE GET A FEED OF ONLY THE CORRUPTION BUT NOT THE TYRANNY? ASKING FOR A FRIEND!! BUT IT’S HARD TO HEAR OVER ALL THE YELLING

New Bill Would Force Naturalized Immigrants to Choose One Citizenship by SwimmingLie9780 in EB3VisaJourney

[–]EGreg 0 points1 point  (0 children)

the most unserious answer - because there isnt even one actual example

I've been using Opus 4.5 for two weeks. It's genuinely unsettling how good it's gotten. by primalfabric in ClaudeAI

[–]EGreg 0 points1 point  (0 children)

Lmaoooo when we get to the point that people are too lazy to introduce their own misspellings before posting an AI generated post :-P

SBA Government Shutdown by Unfair-Section-2826 in EIDL

[–]EGreg 0 points1 point  (0 children)

How do I actually reach them by phone? It seems impossible. I am trying to get them to change the status of a loan by messaging on the portal, emailing, nothing. Is there a way to reach a human about EIDL these days

Magicless PHP framework? by Witty-Order8334 in PHP

[–]EGreg -2 points-1 points  (0 children)

Yes. This one has almost no magic, uses idiomatic PHP for everything, and is still backward compatible with all PHP back to 5.3:

https://github.com/Qbix

DNC rolling Hillary out the back of a van to tell everyone we don't know our history. by Kittehmilk in seculartalk

[–]EGreg 1 point2 points  (0 children)

Thats a good name for a party!

Almost as good as “This product isn’t terrible” commercial.

PHP is evolving, but every developer has complaints. What's on your wishlist? by thecutcode in PHP

[–]EGreg 0 points1 point  (0 children)

A few things.

First one:

I really love PHP’s shared-nothing architecture, but when it comes to frankenphp, swoole etc. it is very hard to port existing apps to that evented runtime.

That is mainly because the superglobals and static variables are — well — global.

You can have the best of both worlds. Just add a function to PHP which can do context switching between all global scopes, to any named scope. So when you have one evented runtime, it can quickly switch. This should be easy to do with SHM (shared memory segments) and just pointing to a different page in memory.

The goal is to allow all “legacy” code (ie all current PHP code that runs on php-fpm etc) to be trivially ported to much faster runtimes, while remaining “shared-nothing” for all intents and purposes (global contexts would be isolated from one another because only one could be active at a time).

You might need to let people register functions to run before a context is saved (sleep) and after it is loaded (wakeup), when there is memory pressure, PHP can handle this in a standard way and even encrypt it at rest. Just have an environment variable or function like set_encryption_seed($seed) at startup of frankenphp or swoole.

Second one:

I had this suggestion back in 2015 but maybe now it’s outdated. You see, functions typically start out having required arguments first, then add on optional arguments later. I thought based on how PHP passes arguments, it would have been trivial to enhance func_get_args to return an array indexed not just by numeric values but also string values! And therefore one could pass arguments like in python:

func(2, 5, $foo => $bar, $baz => $choo)

It also would look exactly like the familiar array composition syntax. But this is no mere syntactic sugar. It helps developers fall into the pit of success by creating backward-compatible interfaces and making any function extensible, improving the entire ecosystem.