This file contains hidden or 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
❯ f -y https://youtu.be/l7VHsDODU7E | f -sp create_story_explanation | |
# Tesla's Privacy Problem: Your Car Is Watching You, But Who Else Is Watching Through Your Car? | |
Tesla vehicles are rolling surveillance systems with cameras everywhere, collecting massive amounts of data that might not be as private as the company claims. | |
- Modern Teslas have up to nine cameras recording everything around and inside your car. | |
- Tesla claims they only collect your data in limited circumstances like accidents or if you opt-in. | |
- The company promises any shared data is anonymized, but experts say this anonymization is easily defeated. | |
- Tesla employees were caught sharing customers' private videos, including footage inside homes and garages. | |
- A whistleblower leaked 100 gigabytes of internal Tesla data in 2023, exposing sensitive customer information. |
This file contains hidden or 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
## SUMMARY | |
Aldous Huxley, a distinguished social critic and author of "Brave New World," discusses with Mike Wallace the threats to freedom in the United States, focusing on impersonal forces and technological devices that could lead to a loss of freedom. Huxley emphasizes the importance of individual values and education to combat these threats. | |
## IDEAS: | |
- Huxley predicted a world under dictatorship, which he now believes is close to reality. | |
- He identifies impersonal forces and technological devices as threats to freedom. | |
- Overpopulation and over-organization are highlighted as significant impersonal forces. | |
- Huxley discusses the potential for technology, including drugs and propaganda, to control people. |
This file contains hidden or 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
" (Neo)Vim Configuration | |
" By Daniel Miessler | |
" August 2019 | |
" BASIC CONFIGURATION | |
" Remap Escape | |
inoremap jk <ESC> | |
" Remap the leader key to the spacebar |
This file contains hidden or 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
65 root vizxv | |
61 root xc3511 | |
43 root admin | |
39 admin admin | |
33 admin password | |
32 root xmhdipc | |
29 root root | |
26 root 123456 | |
24 root juantech | |
24 root 888888 |
This file contains hidden or 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
require 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
# Change for your ZIP | |
page = Nokogiri::HTML(open("http://www.airnow.gov/?action=airnow.local_city&zipcode=94102&submit=Go")) | |
# Get the current air quality | |
puts page.css('table.AQData td.AQDataLg').text |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am danielmiessler on github. | |
* I am danielmiessler (https://keybase.io/danielmiessler) on keybase. | |
* I have a public key whose fingerprint is C7D4 8DA8 35A4 5E83 3FC6 0ECA 79CB A58E D1BB 075F | |
To claim this, I am signing this object: |
This file contains hidden or 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
#!/usr/bin/env bash | |
cat /var/log/apache2/ | awk '{print $1}' > ips.txt | |
uniq ips.txt > uniques.txt | |
IPS='cat uniques.txt' | |
echo "" > ./ipinfo.csv | |
for i in $IPS | |
do | |
echo "$i,'host $i | awk '{print $5}'','geoiplookup $i | cut -d "," -f2 | sed -e 's/^[ \t]*//'','geoiplookup -f /usr/share/GeoIP/GeoLiteCity.dat $i | cut -d "," -f3 | sed -e 's/^[ \t]*//'','geoiplookup -f /usr/share/GeoIP/GeoLiteCity.dat $i | cut -d "," -f4 | sed -e 's/^[ \t]*//''" >> ipinfo.csv | |
done |
This file contains hidden or 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
bWljaGVsbGU= | |
c3Vuc2hpbmU= | |
MTIzNDU2Nzg= | |
c33367701511b4f6020ec61ded352059 | |
dldlsl202lfl | |
d56d5687d02684e18f914c497b606595aeb203be | |
test | |
5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5 |
This file contains hidden or 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
# Load the theme | |
if [ "$ZSH_THEME" = "random" ] | |
then | |
themes=($ZSH/themes/*zsh-theme) | |
N=${#themes[@]} | |
((N=(RANDOM%N)+1)) | |
RANDOM_THEME=${themes[$N]} | |
source "$RANDOM_THEME" | |
# echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." | |
else |
NewerOlder