AT&T: [[email protected]] (SMS), [[email protected]] (MMS)
T-Mobile: [[email protected]] (SMS & MMS)
Verizon: [[email protected]] (SMS), [[email protected]] (MMS)
Sprint: [[email protected]] (SMS), [[email protected]] (MMS)
XFinity Mobile: [[email protected]] (SMS), [[email protected]] (MMS)
Virgin Mobile: [[email protected]] (SMS), [[email protected]] (MMS)
Tracfone: [[email protected]] (MMS)
Metro PCS: [[email protected]] (SMS & MMS)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mess with the best, die like the rest. | |
There is no right and wrong. There's only fun and boring. | |
Spandex: it's a privilege, not a right. | |
The pool on the roof must have a leak. | |
YO THIS IS ZERO COOL! | |
Whoa! This isn't woodshop class? | |
Of all the things I've lost, I miss my mind the most. | |
Orwell is here now. He's livin' large. We have no names, man. No names. We are nameless! | |
"This is our world now. The world of the electron and the switch; the beauty of the baud. We exist without nationality, skin color, or religious bias. You wage wars, murder, cheat, lie to us and try to make us believe it's for our own good, yet we're the criminals. Yes, I am a criminal. My crime is that of curiosity. I am a hacker, and this is my manifesto." Huh? Right? Manifesto? "You may stop me, but you can't stop us all." | |
When I was a child, I spoke as a child, I understood as a child, I thought as a child, but when I became a man, I put away childish things. What? It's Corinthians one, chapter thirteen verse eleven. |
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
You can just use map within the components render method.
render () {
return (
<div>
{stations.map(station => <div key={station}> {station} </div>)}
</div>
);
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Bring your own SQL server; | |
export DOCKER_MARIADB_DBHOST="127.0.0.1"; | |
export DOCKER_MARIADB_DBPORT="3306"; | |
export DOCKER_MARIADB_DBNAME="mdb"; | |
export DOCKER_MARIADB_DBHOSTPW="Password123!"; | |
export DOCKER_MARIADB_DATABASE="mydatabase"; | |
export DOCKER_MARIADB_USER="'devuser'"; | |
export DOCKER_MARIADB_TABLE="mytable"; | |
docker run -p "$DOCKER_MARIADB_DBHOST":"$DOCKER_MARIADB_DBPORT":"$DOCKER_MARIADB_DBPORT" --name "$DOCKER_MARIADB_DBNAME" -e MARIADB_ROOT_PASSWORD="$DOCKER_MARIADB_DBHOSTPW" -d mariadb:latest & | |
sleep 15s; |
DOMAIN="mydomain.com"
cp /etc/letsencrypt/live/$DOMAIN/fullchain.pem /etc/letsencrypt/live/$DOMAIN/fullchain_with_key.pem;
cat /etc/letsencrypt/live/$DOMAIN/privkey.pem >> /etc/letsencrypt/live/$DOMAIN/fullchain_with_key.pem;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GDB commands by function - simple guide | |
--------------------------------------- | |
More important commands have a (*) by them. | |
Startup | |
% gdb -help print startup help, show switches | |
*% gdb object normal debug | |
*% gdb object core core debug (must specify core file) | |
%% gdb object pid attach to running process | |
% gdb use file command to load object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deb http://deb.debian.org/debian bullseye main contrib non-free | |
deb http://deb.debian.org/debian bullseye-updates main contrib non-free | |
deb http://deb.debian.org/debian bullseye-backports main contrib non-free | |
deb http://security.debian.org/debian-security/ bullseye-security main contrib non-free |