None
None
31
1337th post Facebook: It's happening :marseyagree::marseyagree::marseyagree:
None
42
:marseyvader: :marseypalpatine: :marseystarwars:
None
None

Generated from TLDR This:

Where is the heart of the technology industry?

The simple answer is “Silicon Valley,” a term that now generally means the San Francisco-San Jose-Oakland area of California.

The Exchange explores startups, markets and money.

To answer that question, we have to understand how Silicon Valley compares to the larger United States venture capital and startup market; if Silicon Valley is truly losing its dominance domestically, it certainly cannot claim an international title.

https://t.co/5UabCGkHqb — Chamath Palihapitiya (@chamath) September 26, 2022 In time, I do anticipate that a more global tech industry will dilute Silicon Valley’s former hegemony as the spawning point for what’s next, and it will become more figurehead than anything else.

None
52
TIL Getogeto :marseygetobuff: is a BSDchad :marseygroomerfreebsd:

!schizomaxxxers discuss @getogeto

!codecels discuss FreeBSD

!lurkers do not discuss

None
None

reaction thread:

https://old.reddit.com/r/linux/comments/wpr8yp/the_gnome_hate_on_this_subreddit_is_tiresome_no/?sort=controversial

None
36
That's a pretty good commit hash
None

Orange Site:

https://news.ycombinator.com/item?id=40247604

None
Reported by:
None

This lolsuit could not only affect the IA, but the entire US library system. Anyway,

:#marseysal:

Orange Site:

https://news.ycombinator.com/item?id=35207390

None

orange site discussion

None
3
Lapsus$ hackers strike again!
None

Hard to believe just a decade ago or even 3-5 years ago, Reddit was known as a bastion of free speech.

:marseysnoo:

https://old.reddit.com/r/Conservative/comments/104wuf5/as_twitter_gains_notoriety_for_past_censorship/?sort=controversial

https://old.reddit.com/r/OntarioTheProvince/comments/1054ck3/as_twitter_gains_notoriety_for_past_censorship/?sort=controversial

https://old.reddit.com/r/conspiracy_commons/comments/1057893/as_twitter_gains_notoriety_for_past_censorship/?sort=controversial

https://old.reddit.com/r/conservatives/comments/104wuj0/as_twitter_gains_notoriety_for_past_censorship/?sort=controversial

None
Reported by:
53
Turns out ProtonMail/VPN isn’t as private as you think

They also gave out info to Europol recently regarding Paris climate protests

r/privacy thread of the tweet above

ProtonMail thread

ProtonMail response

None

https://news.ycombinator.com/item?id=40171125

None
57
After a 36hr outage Cloudflare posts their post mortem. :marseypopcorn: :marseybug2: :marseyplugged:

Orange site during outage: https://news.ycombinator.com/item?id=38127313

Orange site on the post-mortem: https://news.ycombinator.com/item?id=38138640

None

A user asked me the below.

Hey, did you use any guides for setting up your pie hole and/or installing the button?

Was interested in making one of these as well.

Any tips or w/e would be appreciated, thanks!

This was my response. which is probably definitely rslurred but w/e

!codecels roast me


No Guides, but happy to give tips, and follow ups where things are unclear.

Button is pretty cool for sure... but you can do everything you need to do from your computer and phone.

A pihole does not protect you unless you set it up as your DNS on your router.

I would also recommend setting up a vpn to your home network using openvpn that way you can take your protection on the go, itll protect you from getting throttled by your cell phone provider too

Parts

Config Pi

Code

  • Look its probably right... but how you set this thing up makes a difference

  • Put this on your Pi maybe call it buttonscript.js

  • {YOUR USER HERE} needs to be swapped out for the user you created

const fs = require('fs');

const Gpio = require('onoff').Gpio;

const { exec } = require('child_process');

// GPIO pin number

const buttonPin = 17;

const logFilePath = '/home/{YOUR USER HERE}/buttonscript.log';

// Setup the button GPIO as input

const button = new Gpio(buttonPin, 'in', 'falling', { debounceTimeout: 200 });

// Function to disable Pi-hole blocking for 5 minutes

function disablePiHole() {

const timestamp = new Date().toISOString();

const logMessage = [${timestamp}] Button pressed. Disabling Pi-hole for 5 minutes...;

console.log(logMessage);

fs.appendFile(logFilePath, logMessage + '\n', (err) => {

if (err) {

 console.error('Error writing to log file:', err);

}

});

exec('pihole disable 5m');

}

// Add event listener to the button

button.watch(disablePiHole);

// Cleanup GPIO on process exit

process.on('SIGINT', () => {

button.unexport();

process.exit();

});

Service

  • This thing needs to start back up when power fails so you need to set it up to do that

  • go here cd /etc/systemd/system/

  • run this to create it sudo nano buttonscript.service

[Unit]

Description=Button Script

After=network.target

[Service]

ExecStart=/usr/bin/node /home/{YOUR USER HERE}/buttonScript.js > /home/{YOUR USER HERE}/buttonscript.log 2>&1

WorkingDirectory=/home/{YOUR USER HERE}/

Restart=always

User={YOUR USER HERE}

[Install]

WantedBy=multi-user.target

  • save and exit nano

  • run this sudo systemctl enable buttonscript.service

  • run this sudo systemctl start buttonscript.service

Circuit

https://i.rdrama.net/images/169043665549889.webp

https://i.rdrama.net/images/16904366556798973.webp

  • find your pinout, I am showing a 4b there are others

  • 3.3 to a rail on the + side of the breadboard at the top using these wires https://www.amazon.com/dp/B01EV70C78

  • in that top rail, put the resistor in

  • resistor to the left hand side on maybe the top row of the breadboard

  • gpio 17 to left side on that row using these wires https://www.amazon.com/dp/B01EV70C78

  • button to left side on that row use the breadboard wires there

  • other terminal on the button to the right side of the breadboard

  • ground to right side on that row using these wires https://www.amazon.com/dp/B01EV70C78

Package to suit, and your done

None

I unironically hope Meta goes bankrupt soon.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.