summaryrefslogtreecommitdiff
path: root/public/posts/shell-aliases/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/posts/shell-aliases/index.html')
-rw-r--r--public/posts/shell-aliases/index.html167
1 files changed, 167 insertions, 0 deletions
diff --git a/public/posts/shell-aliases/index.html b/public/posts/shell-aliases/index.html
new file mode 100644
index 0000000..9241ede
--- /dev/null
+++ b/public/posts/shell-aliases/index.html
@@ -0,0 +1,167 @@
+<!DOCTYPE html>
+<html lang="en-us">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <style type=text/css>body{font-family:monospace;}</style>
+ <title>Shell Aliases</title>
+
+
+ <link rel="stylesheet" href="/css/style.css">
+
+
+</head>
+<body>
+ <header>
+ ==========================<br>
+ == <a href="https://blog.tinfoil-hat.net">blog.tinfoil-hat.net</a> ==<br>
+ ==========================
+ <div style="float: right;">A save home for every tinfoil-hat!</div><br>
+ <p>
+ <nav>
+ <a href="/"><b>Start</b></a>.
+
+
+ <a href="/posts/"><b>Posts</b></a>.
+
+ <a href="/categories/"><b>Categories</b></a>.
+
+ <a href="/tags/"><b>Tags</b></a>.
+
+ </nav>
+ </p>
+ <script async defer data-website-id="9b2f4923-27f6-41ac-ba15-43c51d35250e" src="https://stats.tinfoil-hat.net/umami.js"></script>
+
+</header>
+
+
+ <main>
+ <article>
+ <h1>Shell Aliases</h1>
+ <b><time>25.01.2024 13:22</time></b>
+
+ <a href="/tags/technology">Technology</a>
+
+ <a href="/tags/linux">Linux</a>
+
+
+ <div>
+ <p>Here are my Shell Aliases, that I use mostly on a regular basis, enjoy</p>
+<pre tabindex="0"><code># Aliases
+
+## RSS Feeds
+alias rss=&#34;newsboat&#34;
+
+## Change OpenBSDs Soundlevel
+alias audio-ext=&#34;sysctl hw.snd.default_unit=4&#34;
+alias audio-int=&#34;sysctl hw.snd.default_unit=0&#34;
+
+## List files and Folders
+alias ll=&#34;ls -lah&#34;
+
+## Mount with SSH
+alias nasm=&#34;sudo sshfs -o uid=1000 -o gid=1000 -o allow_other root@192.168.178.200:/hdds/ /media/anon/nas &#34;
+
+## Torrent via CLI - no seed
+alias torrent=&#34;aria2c --follow-torrent=mem --seed-time=0 -j 10&#34;
+
+## Neofetch with Picture
+alias fetch=&#34;neofetch --backend w3m --source ~/Bilder/tiger.png&#34;
+
+## Listen German Radio
+alias radio-berliner-rundfunk-91-4=&#34;mpv http://stream.berliner-rundfunk.de/brf/mp3-128/internetradio&#34;
+
+## Listen German techno Radio
+alias technobase=&#34;mpv http://listen.technobase.fm/tunein-mp3&#34;
+
+## Listen anonradio
+alias anonradio=&#34;mpv http://anonradio.net:8000/anonradio&#34;
+
+## Backup Home Folder
+alias backup=&#34;~/Software/git/rsync-time-backup/rsync_tmbackup.sh ~/ /media/anon/8TB/backup/&#34;
+
+## Spinnig ASCII Globe
+alias download-world=&#34;curl -s http://artscene.textfiles\.com/vt100/globe.vt | pv -L9600 -q&#34;
+
+## Open Darknet Bookmarks
+alias darknet=&#34;torsocks w3m -o auto_image=FALSE .w3m/bookmark.html&#34;
+
+## Open Weechat that runs on Server
+alias reechat=&#34;ssh weechat@vps -t screen -rd weechat&#34;
+
+## Openvpn
+alias cast-tay=&#34;sudo openvpn ~/Seafile/Crypt/tay.ovpn&#34;
+alias cast-vps=&#34;openvpn ~/Seafile/Crypt/vps.ovpn&#34;
+
+## webserver statistics
+alias goaccess=&#34;ssh tay -t goaccess -c /var/log/nginx/access.log&#34;
+
+## Dotfiles in Git
+alias config=&#34;git --git-dir=$HOME/.cfg/ --work-tree=$HOME&#34;
+
+## Tempary Upload from cli
+alias drop=&#34;~/Software/bin/plik&#34;
+
+## Displays when Filesystem was created
+alias installation-age=&#34;stat -c %w /&#34;
+
+## launch Stable Diffusion
+alias stable-diffusion=&#34;bash ~/Software/scripts/stable-diffusion.sh&#34;
+
+## Launch Youtube-dl with Brave Cookies and twitter fix
+alias youtube-dl=&#34;yt-dlp --cookies-from-browser Brave -o &#39;%(title).100B [%(id)s].%(ext)s&#39;&#34;
+
+## Run a simple webserver in current dir
+alias webserver=&#34;python3 -m http.server&#34;
+
+## Spotify cli
+alias ncspot=&#34;flatpak run io.github.hrkfdn.ncspot&#34;
+
+## Launch Matrix Client
+alias matrix=&#34;gomuks&#34;
+
+## Mound NAS
+alias nasm=&#34;sudo mount -t nfs4 192.168.178.254:/media/user/raid /media/anon/raid&#34;
+
+## Show Hardware Infos
+alias hardware=&#34;inxi -Fnxxz&#34;
+</code></pre>
+ </div>
+ </article>
+ </main>
+<aside>
+ <div>
+ <div>
+ <h3>LATEST POSTS</h3>
+ </div>
+ <div>
+ <ul>
+
+ <li><a href="/posts/shell-aliases/">Shell Aliases</a></li>
+
+ <li><a href="/posts/removed-services/">Service Update: Discontinuation Due to Frontend-Backend Incompatibility</a></li>
+
+ <li><a href="/posts/revert-brave-flatpak-to-deb/">Revert Brave Flatpak to Deb</a></li>
+
+ <li><a href="/posts/proxmox-docker-workstation/">Proxmox Docker Workstation</a></li>
+
+ <li><a href="/posts/local-apt-mirror/">Local Apt Mirror</a></li>
+
+ </ul>
+ </div>
+ </div>
+</aside>
+
+
+ <footer>
+ <p>&copy; 2024 <a href="https://blog.tinfoil-hat.net"><b>blog.tinfoil-hat.net</b></a>.
+ <a href="https://tinfoil-hat.net"><b>Landing Page</b></a>.
+ <a href="http://keys.gnupg.net/pks/lookup?op=vindex&amp;fingerprint=on&amp;search=0xC0090D40CFE34966"><b>GPG-Fingerprint</b></a>.
+ <a href="mailto:mal@tinfoil-hat.net"><b>E-Mail</b></a>.
+ <a href="https://git.tinfoil-hat.net"><b>Gitweb</b></a>.
+ </p>
+</footer>
+
+</body>
+</html>