Skip to content

Instantly share code, notes, and snippets.

View pixeldesu's full-sized avatar
💥
npx yarn install

Andreas Nedbal pixeldesu

💥
npx yarn install
View GitHub Profile
desutime
==========================================================
the maybe most mind fucking way to measure time in history
Basics of desutime
------------------
//in full 24h
1. remove the : of your current time. (for example 21:07, which will turn to 2107 as in full 24h time)
@pixeldesu
pixeldesu / securepassword
Created February 12, 2014 20:52
secure password method!
To generate a secret password, just with your mind, do the following steps:
[random number from 01-99] + [random word, preferably "secret/geheim"] + 69
now you've got a password which is absolutely unbreakable!
@pixeldesu
pixeldesu / gist:9493711
Created March 11, 2014 19:54
music list v2.7
+---Bandcamp
| +---Babbe Music
| | | Babbe feat. 3 singing lolis.lfml
| | | Babbe.lfml
| | | Babbe.png
| | |
| | +---bamf! bamf! kimochii!
| | | Babbe - bamf! bamf! kimochii! - 03 Wanna steal the Ice Fairy's Pantsu! (2013 Remake) -Instrumental ver-.mp3
| | | Babbe - bamf! bamf! kimochii! - 04 bamf! bamf! kimochii! -Instrumental ver-.mp3
| | | Babbe - bamf! bamf! kimochii! - 05 I love Gensokyo!! (Extended ver).mp3
@pixeldesu
pixeldesu / modernizr.css
Created June 11, 2014 13:04
Modern CSS for professional websites
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
Auflistung der Ordnerpfade für Volume Nitori (External)
+---Bandcamp
| +---Babbe Music
| | +---bamf! bamf! kimochii!
| | | Babbe - bamf! bamf! kimochii! - 03 Wanna steal the Ice Fairy's Pantsu! (2013 Remake) -Instrumental ver-.mp3
| | | Babbe - bamf! bamf! kimochii! - 04 bamf! bamf! kimochii! -Instrumental ver-.mp3
| | | Babbe - bamf! bamf! kimochii! - 05 I love Gensokyo!! (Extended ver).mp3
| | | Babbe feat. 3 singing lolis - bamf! bamf! kimochii! - 02 bamf! bamf! kimochii!.mp3
| | | Babbe feat. kuroTenshi - bamf! bamf! kimochii! - 01 Wanna steal the Ice Fairy's Pantsu! (2013 Remake).mp3
@pixeldesu
pixeldesu / survival-kit.md
Created August 6, 2014 20:44
A guide for Linux beginners and general users that want to start using elementary OS

pixeldesus elementary Survival Kit

Intro

This guide shows easily how you can start with a fresh-installed elementary OS-session and making it more usable just with some commands and tips to get rid of stuff that clutters your installation in the beginning.

Getting Rid of Pre-Installed Software

Requirements

@pixeldesu
pixeldesu / style.css
Created September 10, 2014 22:46
userstyle to remove the (most of the time bad) comment section of YouTube
#watch-discussion {
display: none;
}
@pixeldesu
pixeldesu / ello.css
Created September 28, 2014 13:13
replace the console-like looking font with Open Sans
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic");
@-moz-document url-prefix("https://ello.co") {
body {
font-family: 'Open Sans', Arial, sans-serif;
}
.heading, .feature__list h1, .feature__list h2, .system-post h1, .notification-post h1, .heading--large, .heading--normal, .system-post h2, .notification-post h2, .notification-post p, .bolded-post p, .delete__dialog h2, .searchbar__field {
font-family: "Open Sans", "AtlasGroteskBold","Helvetica Neue","HelveticaNeue","Helvetica","Arial",sans-serif;
#!/usr/bin/env ruby
require "twitter"
# Twitter client configuration
client = Twitter::REST::Client.new do |config|
config.consumer_key = YOUR_KEYS_HERE
config.consumer_secret = YOUR_KEYS_HERE
config.access_token = YOUR_KEYS_HERE
config.access_token_secret = YOUR_KEYS_HERE
end
@pixeldesu
pixeldesu / TDE-crypto.js
Created March 22, 2015 12:25
Where TweetDeck Enhancer uses CryptoJS
function GetPreferencesIdentifierFromCrypto() {
if (typeof CryptoJS !== "undefined") {
return CryptoJS.SHA3(TD.storage.store._backend.guestID); // 512 bit SHA-3? yes please
}
}