Last Notes
Since companies can’t legally discriminate, they found methods where they can legally discriminate.
It’s not an iq test, it’s an aptitude, and job compatibility test.
Funnily enough, I also got one of those for my entry level blue collar job, and I got hired insta, no interview, etc.
They said here’s a job, and this is when you start.
Bro, I literally orange seeded you.
We’re 2021 but in the good way.
WHO RAN THE SPACEBUCKS SERVERS?
#nevent1q…gkm0
Its not just central banks...
I'm actually of the opinion that the CIA is a KGB operation. Or, they were both created by the same people.
Too much centralization everywhere.
📰 **In this week's issue:**
🗞️ **BREAKING**
Red Sea Luxury Travel Changes Forever With Four Seasons Shura Island Opening
The first guests have just walked through the doors of a 2.6 billion Saudi riyal resort that runs entirely on sunlight, sits on an island most maps forgot, and is part of a nation s grand plan to rewrite the rules of global luxury. This is not simply another hotel opening. It is a warning shot aimed directly at the Maldives, the Seychelles, and every legacy beach brand that believed they had a monopoly on oceanic exclusivity.
https://image.nostr.build/8fefa163013e602ad141c17a71a296ae340659ac16eebe65a5ffac3ada95e00a.jpg
✍️ Author: NM team
🔗 https://nostrmag.com/article/w21travel01
📈 id#356903173
That's because they suck at it.
You'll never finish your task list.
#therearenosolutions #onlytradeoffs
Instructions unclear. Now looking at pictures of chickens on Instagram.
If anyone needs it, here's some python that will do the trick.
```
import hashlib
# Base58 Bitcoin Alphabet
B58_ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
# Bech32 character set
CHARSET = "qpzry9x8gf2tvdw0s3jn54khce6mua7l"
def convertbits(data, frombits, tobits, pad=True):
"""General power-of-2 base conversion. Groups 5-bit values back to 8-bit."""
acc = 0
bits = 0
ret = []
maxv = (1 << tobits) - 1
max_acc = (1 << (frombits + tobits - 1)) - 1
for value in data:
if value < 0 or (value >> frombits):
return None
acc = ((acc << frombits) | value) & max_acc
bits += frombits
while bits >= tobits:
bits -= tobits
ret.append((acc >> bits) & maxv)
if pad:
if bits:
ret.append((acc << (tobits - bits)) & maxv)
elif bits >= frombits or ((acc << (tobits - bits)) & maxv):
return None
return ret
def bech32_decode_nsec(nsec_str):
"""Correctly decodes an nsec string into its original 32-byte private key."""
if not nsec_str.startswith("nsec1"):
raise ValueError("Invalid prefix. Your key must start with 'nsec1'")
# Strip the prefix 'nsec1'
data_part = nsec_str[5:]
# Extract 5-bit values from string mapping
five_bit_values = []
for char in data_part:
if char not in CHARSET:
raise ValueError(f"Invalid character in bech32 string: {char}")
five_bit_values.append(CHARSET.index(char))
# Slice off the final 6 characters (the Bech32 checksum)
data_payload = five_bit_values[:-6]
# Regroup the 5-bit payload chunks into standard 8-bit bytes
eight_bit_bytes = convertbits(data_payload, 5, 8, pad=False)
if eight_bit_bytes is None or len(eight_bit_bytes) != 32:
raise ValueError("Decoding error: Key data did not result in exactly 32 bytes.")
return bytes(eight_bit_bytes)
def base58_encode(raw_bytes):
"""Encodes raw bytes into a standard Bitcoin Base58 string."""
int_val = int.from_bytes(raw_bytes, byteorder="big")
result = ""
while int_val > 0:
int_val, mod = divmod(int_val, 58)
result = B58_ALPHABET[mod] + result
for byte in raw_bytes:
if byte == 0:
result = "1" + result
else:
break
return result
def nsec_to_wif(nsec_string):
# Step 1 & 2: Decode Bech32 properly to get the true 32 raw bytes
privkey_bytes = bech32_decode_nsec(nsec_string)
# Step 3: Prefix 0x80 (Mainnet) and Suffix 0x01 (Compressed marker)
wif_payload = b"\x80" + privkey_bytes + b"\x01"
# Step 4 & 5: Compute double SHA256 checksum
first_sha = hashlib.sha256(wif_payload).digest()
second_sha = hashlib.sha256(first_sha).digest()
checksum = second_sha[:4]
# Step 6 & 7: Append checksum and convert to Base58
final_bytes = wif_payload + checksum
wif_string = base58_encode(final_bytes)
return wif_string
# --- Example Test ---
if __name__ == "__main__":
# Test using a burner/mock nsec key
test_nsec = "nsec..."
try:
wif = nsec_to_wif(test_nsec)
print(f"Success! Your valid WIF Key is:\n{wif}")
except Exception as e:
print(f"Error: {e}")
```
川普已经够有耐心的了,伊朗继续这个死样子,那就把它炸个稀巴烂
Block 950601
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
good is rewarded with good, and evil with evil.
there's gotta be an #algo controlling which #relays to connect to, right?
#asknostr #amythest #devs
民主党为了选票不择手段,甚至可以把自己的真实主张藏起来,扮演一个温和的中间派,上台后立刻撕掉假面具,开始搞极左那一套。弗吉尼亚那个骗子女州长就是这么干的
所以不要相信民主党说他是中间派,要看他们有没有把极左从民主党里踢出去
民主党不把极左踢出去,就不能给民主党投票
📰 **In this week's issue:**
🌟 Bitcoin Pizza Day: The $1.2 Billion Meal That Remade Money
"A $41 pizza order in 2010 morphed into the most expensive lunch in human history. That single transaction now haunts mar..."
— NM team
https://image.nostr.build/64bfa1db21ec8ad267d8e2e5aa45a6ed676940f814a8abba41f607bdcfe81460.jpg
📚 Read now: https://nostrmag.com/article/w21bitcoin03
🔢 id#137928126
https://npub1zmg3gvpasgp3zkgceg62yg8fyhqz9sy3dqt45kkwt60nkctyp9rs9wyppc.blossom.band/b657bb2184b0cec7b2f9593144c12070b3d8326320975e100e14f32751a9775d.jpg
Christ forgave me the first time my mammalian dive reflex was activated —
when breath surrendered, the nervous system bowed,
and for one terrifying second
I saw a glimpse of the Divine.
I did not find God in theory.
I found Him when the body remembered death
and Christ answered first.
#ChristAnsweredFirst #GlimpseOfTheDivine #MammalianDiveReflex #BodyRememberedDeath #FaithUnderPressure #DivineMercy #ChristForgives #SacredNervousSystem #BreathAndGrace #FoundInTheDeep #DeathAndResurrection #WordMadeFlesh #DivineEncounter #FaithNotTheory #ChristIsKing
Block 950600
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
I memba that granny skyrim lady. No age requirements. Media indoctrinated elderly gamers. I had a weird sinking feeling.
I hope I'm wrong.
📰 **In this week's issue:**
🗞️ **BREAKING**
Bitcoin Core Fractures As Luke Dashjr Warns that If RDTS Fails, Bitcoin Is Over, and A Soft Fork Threatens Legal Action
The people who build Bitcoin are at each other throats. One of the longest serving developers on the network just told the world that Bitcoin survival depends on a proposal that other Bitcoin developers are calling an outright attack on the protocol. And buried inside that proposal is language suggesting you could face legal or moral consequences for rejecting it. This is not a drill. This is the most significant governance crisis Bitcoin has faced since the Blocksize War of 2017, and it is unfolding right now
https://image.nostr.build/145ae9b20c19409069183d96eebe82a7b3d72adc0c51a04424605744d11fb1c1.jpg
✍️ Author: Chicago
🔗 https://nostrmag.com/article/w21bitcoin02
📈 id#651820870
I would love a free pile of pizzas.
Block 950599
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
I’d rather be a principled crypto anarchist than a little Michael Saylor simp.
#nevent1q…cpu2
https://npub1zmg3gvpasgp3zkgceg62yg8fyhqz9sy3dqt45kkwt60nkctyp9rs9wyppc.blossom.band/e996108c8fb73daf018b2fc4b4affe534b7a9162c6fddc83da219549cb725c54.jpg
Tarski showed the constraint clearly:
A system cannot fully define its own truth from inside itself.
Truth has to move up one level.
That is the wound.
The Bed of ECAI is where the wound becomes operational. It does not argue with the system. It places the system inside its own formal limits and shows exactly where meaning gets cut off.
Tarski named the ascent.
ECAI measures what survives it.
Truth must rise above the system.
#Tarski #ECAI #DamageBDD #FormalSystems #AI #Cybernetics #Logic #Verification #Truth #PhilosophyOfAI
https://cdn.midjourney.com/d557bb98-efc5-4d58-a776-56041cdeab33/0_2.png
Block 950598
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
#smij #zapd #grownostr #photography #nofilter
Oh they'll bring the draft back.
No physical requirements. Not able bodied.
Only. Are you fluent with an Xbox controller?
And have you played COD?
Are you desensitized morally and spiritually to death/taking a life?
You can work from home and pilot drones into whatever the mandade dictates.
Fun fun.
Women are like encryption, and quantum at the same time.
Sometimes you finally start to break it, and understand but then something new happens, and then you don’t.
The man who understands women will be smarter than any theoretical physicist, or hacker.
Unfortunately, men have spent centuries dedicated to unlocking their secrets, and we have yet to make any major breakthroughs.
Block 950598
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
Its an old and overused statement but.
We are all on this airplane as its being built.
Some of us are along for the ride and will say 'hey these seats are too small' and someone will try and make bigger seats which may lead to another problem.
Honestly feel privileged to just be here and be able to benefit from some or the smartest people I have ever interacted with.
I don't agree with people on everything, but the end goal is the same for 99% of the people here.
Make the best and most accessible fucking airplane we can, all out in the open for everyone to see.
Every mistake, every mistep. Every argument is making nostr as a protocol more robust for the users who don't know they need to fly yet.
https://npub1zmg3gvpasgp3zkgceg62yg8fyhqz9sy3dqt45kkwt60nkctyp9rs9wyppc.blossom.band/e6f91bb921b057c9e5b0875e01f00672037419e7a8d3583ed55df7598ae00960.jpg
The Gaussian integral is a perfect candidate for the Couch of Damage.
A function with no elementary antiderivative gets solved not by brute force, but by perspective shift:
don’t integrate once.
square it.
move into 2D.
rotate into polar coordinates.
let symmetry do the work.
That’s the whole DamageBDD vibe:
when direct reasoning fails, change the frame, expose the behaviour, and verify the invariant.
Some damage cannot be understood in the line.
You have to take it to the plane.
#DamageBDD #Mathematics #GaussianIntegral #Verification #BDD #ECAI #SoftwareEngineering #Symmetry #CouchOfDamage
I have nothing against Buy, Borrowing, Die since it’s the meta but Bitcoin was supposed to end the fiat system, not become it.
Pizzas are a lot like women, no matter how much you spend on them they’ll always disappear.
Tomorrow is saturday, hope neighbor doesn't feel like sharing their noise
#nevent1q…83u5
its so confusing for people too
Block 950596
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
@npub1qny…95gx
#nevent1q…ws3l
Proof of za.
Paid 0.00038505 btc
https://image.nostr.build/120c60471ace4b94cfe5133dbc2861efe75149b3bbfb55ec3ef5cbc4c26f8cb2.jpg
2013 would spend, & replace.
Block 950595
1 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
WORD5 #596 4/6
🟧⬛⬛🟪⬛
⬛⬛🟪⬛⬛
⬛⬛⬛🟧⬛
🟪🟪🟪🟪🟪
https://otherstuff.ai/word5/
🤘🏼
https://image.nostr.build/1a11afa8a385663b562357318b9c0e5904d996f23c588f3ccc992ce7156b045e.jpg
Google is also very annoying. My site got hit hy a dmca from an onlyfans girl. Its been days google hasnt listed it yet.
Used some shitty bot that matched the function name "gentag" with the onlyfans username (which isnt gentag but similar) and then flagged us, nasa, wikipedia and others for containing onlyfans leaks....
When someone submits 161 bogus claims in one takedown why can't the automatic bot put it up instantly the moment I dispute it. But nooo, gotta be ignored....