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
#Creating an .onion service in the Tor network is as simple as editing /etc/tor/torrc and adding: | |
HiddenServiceDir /var/lib/tor/www_service/ | |
HiddenServicePort 80 127.0.0.1:80 | |
# After restarting the tor service with | |
sudo service tor restart | |
# or | |
sudo service tor reload | |
# The directory will be created automagically, and inside the new directory, two files are generated, hostname and private_key. |
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
sudo apt-get update | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository universe | |
sudo add-apt-repository ppa:certbot/certbot | |
sudo apt-get update | |
sudo apt-get install certbot python3-certbot-apache | |
sudo certbot --apache |
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 python3 | |
print(""" | |
░░░░▄▄▄▄▀▀▀▀▀▀▀▀▄▄▄▄▄▄ | |
░░░░█░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░▀▀▄ | |
░░░█░░░▒▒▒▒▒▒░░░░░░░░▒▒▒░░█ | |
░░█░░░░░░▄██▀▄▄░░░░░▄▄▄░░░█ | |
░▀▒▄▄▄▒░█▀▀▀▀▄▄█░░░██▄▄█░░░█ | |
█▒█▒▄░▀▄▄▄▀░░░░░░░░█░░░▒▒▒▒▒█ | |
█▒█░█▀▄▄░░░░░█▀░░░░▀▄░░▄▀▀▀▄▒█ | |
░█▀▄░█▄░█▀▄▄░▀░▀▀░▄▄▀░░░░█░░█ |
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
<?php if (!defined('PmWiki')) exit(); | |
$WikiTitle = "My New Wiki"; | |
$PageLogoUrl = "http://example.com/mylogo.gif"; | |
# Uncomment and correct these if PmWiki fails to detect the browser-reachable URLs | |
#$ScriptUrl = 'http://example.com/pmwiki/pmwiki.php'; | |
#$PubDirUrl = 'http://example.com/pmwiki/pub'; | |
$DefaultPasswords['admin'] = pmcrypt('onesecret'); |
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
(==( )==) | |
`-.`. ,',-' | |
_,-'" | |
,-',' `.`-. | |
(==( )==) | |
`-.`. ,',-' | |
_,-'" | |
,-',' `.`-. | |
(==( )==) | |
`-.`. ,',-' |
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
... | |
;::::; | |
;::::; :; | |
;:::::' :; | |
;:::::; ;. | |
,:::::' ; OOO\ | |
::::::; ; OOOOO\ | |
;:::::; ; OOOOOOOO | |
,;::::::; ;' / OOOOOOO | |
;:::::::::`. ,,,;. / / DOOOOOO |
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
2fd6cemt4gmccflhm6imvdfvli3nf7zn6rfrwpsy7uhxrgbypvwf5fad.onion <-- ExcavaTOR (one of my favorite search engines) | |
tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion <- Tor66 fairly decent search engine gives good results but not the best | |
3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion <-- OnionLand search engine (gives very good results) | |
xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion <- TORCH one of the oldest search engines around on TOR | |
kx5thpx2olielkihfyo4jgjqfb7zx7wxr3sd4xzt26ochei4m6f7tayd.onion <-- Imperial Library of Trantor (good place to find free Ebooks) |
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
+------------------------------------------------------+ | |
Linux command cheat sheet | |
+------------------------------------------------------+ | |
COMMAND DESCRIPTION | |
echo "text" ------ echos text (eg echo "hello world" ) | |
uname -a ------- Show system and kernel | |
head -n1 /etc/issue ---- Show distribution |
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
add_newline = true | |
prompt_order = ["username", "kubernetes", "directory", "git_branch", "git_status", "character"] | |
[character] | |
symbol = "\n(∩`-´)⊃ " | |
error_symbol = "\n(ง •̀_•́)ง " | |
style_success = "bold green" | |
use_symbol_for_status = true | |
[username] |
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
#!/bin/bash | |
# enp's epic .bashrc file | |
#it's open source duh | |
# {{{ History | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# don't overwrite GNU Midnight Commander's setting of `ignorespace'. | |
export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups | |
# ... or force ignoredups and ignorespace |
OlderNewer