- add the required
node_modules/ - add
images/folder - add
SecondMonitor.pngfile - add
socketio.jsfile
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
| # mod | |
| set $mod Mod4 | |
| # font | |
| #font pango: System San Francisco Display 10 | |
| font pango: Roboto-Medium 10.5 | |
| # thin borders | |
| hide_edge_borders both |
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 | |
| # store the current dir | |
| CUR_DIR=$(pwd) | |
| # Let the person running the script know what's going on. | |
| echo -e "\n\033[1mPulling in latest changes for all repositories...\033[0m\n" | |
| # Find all git repositories and update it to the master latest revision | |
| for i in $(find . -name ".git" | cut -c 3-); do |
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
| import java.nio.charset.Charset | |
| import java.security.MessageDigest | |
| import java.security.NoSuchAlgorithmException | |
| import java.security.SecureRandom | |
| import java.util.* | |
| object Main { | |
| /** | |
| * Die Anzahl der zu verteilenden Aufgaben |
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
| import java.io.BufferedReader | |
| import java.io.FileReader | |
| import java.io.IOException | |
| import java.util.* | |
| /** | |
| * Main | |
| * This class reads a RC4 Keystream file and tries to guess the first byte | |
| * The file lines must be in the format: "IV: ${iv0} ${iv1} ${iv2} keystream: ${ks}" |
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
| import java.util.* | |
| /** | |
| * @version 1.0 | |
| * @author MalteSchwitters | |
| * @author fluktuid | |
| */ | |
| object Main { | |
| @JvmStatic | |
| fun main(args: Array<String>) { |
I hereby claim:
- I am fluktuid on github.
- I am fluktuid (https://keybase.io/fluktuid) on keybase.
- I have a public key ASCCCFbFn3SZxGg7BX-ls5CTn92M_8AMGUp62YptMgf7jgo
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
| public void blizz(int millis, View v) { | |
| ColorDrawable[] BackGroundColor = { | |
| new ColorDrawable(Color.parseColor("#ffffff")), // 40% 102 | |
| new ColorDrawable(Color.parseColor("#000000")) // 0% | |
| }; | |
| TransitionDrawable td = new TransitionDrawable(BackGroundColor); | |
| v.setBackground(td); | |
| td.startTransition(1500); | |
| } |