Skip to content

Instantly share code, notes, and snippets.

@tr37ion
tr37ion / riotim.css
Created January 30, 2018 19:18
Riot.IM Dark Userstyle Experiment for Widescreen
@-moz-document domain("riot.im")
{
body
{
font-size: 15px;
background-color: #0d161b;
color: #e0e8ef;
border: 0;
margin: 0;
-webkit-font-smoothing: subpixel-antialiased;
@tr37ion
tr37ion / Contract Killer 3.md
Created December 19, 2017 23:16 — forked from malarkey/Contract Killer 3.md
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@tr37ion
tr37ion / keybase.md
Created December 12, 2017 13:08
keybase.md

Keybase proof

I hereby claim:

  • I am tr37ion on github.
  • I am tr37ion (https://keybase.io/tr37ion) on keybase.
  • I have a public key ASAze4Pf8cnOQYrUP7CoorbPo8s89dSq4qO9PrB9qI8i0Ao

To claim this, I am signing this object:

#!/bin/bash
cd /tmp
agetpkg nvidia 375.10
agetpkg nvidia-libgl 375.10
agetpkg nvidia-utils 375.10
agetpkg opencl-nvidia 375.10
agetpkg lib32-libvdpau 375.10
agetpkg lib32-nvidia-libgl 375.10
@tr37ion
tr37ion / DI.m3u
Created August 21, 2016 19:53 — forked from sim642/DI.m3u
Digitally Imported premium streams
#EXTM3U
#EXTINF:-1,Digitally Imported - Ambient
http://pub1.diforfree.org:8000/di_ambient_hi
#EXTINF:-1,Digitally Imported - Big Room House
http://pub1.diforfree.org:8000/di_bigroomhouse_hi
#EXTINF:-1,Digitally Imported - Breaks
http://pub1.diforfree.org:8000/di_breaks_hi
#!/bin/env python
"""Import keepass 1.x compatible password database into GNU pass
http://www.passwordstore.org/.
Uses the kppy (https://pypi.python.org/pypi/kppy) library to open and decode
the database. Python 2.7+ and Python 3.x compatible. Best results with Python3
for any unicode issues.
Usage: keepass2pass.py <keepass db> [--keyfile <key file if necessary>]
Based on http://git.zx2c4.com/password-store/tree/contrib/importers/keepassx2pass.py
@tr37ion
tr37ion / .emacs-light
Last active August 29, 2015 14:16
A small Emacs config file for (fast) CLI file editing
;; ------------------------- Emacs CLI config ------------------------
;; I use this Emacs config for CLI editing files. Some things you see
;; can be deleted in favor of faster loading times. I use it as it is
;; for convenience. Use an shell alias to start emacs from CLI eg:
;; # alias eml='emacs -Q -nw -L .emacs-light'
;; Feel free to change it to you needs. If you find something useful
;; or code not needed/outdated please let me know. Have fun!!!
;; -------------------------------------------------------------------
;; Prepare package management
@tr37ion
tr37ion / thunderbirdIDsort
Created December 16, 2013 18:47
Extract and reorganize (sort) Thunderbird identities (alpha version)
!#/bin/bash
# Extract and reorganize (sort) Thunderbird identities (alpha version)
#
# --> Be careful!
# If you have more than one account, you have to delete those IDs which are linked to other accounts.
grep 'useremail' prefs.js | sort -t"," -k2 |egrep -o 'id[0-9]{1,}' | tr '\n' ', '