- Download the Stylus extension (custom CSS)
- Download the Tampermonkey extension (custom JS)
- In Stylus, create a style for twitch.tv, and copy the stylus_chrome.css lines into it, and click save
- In Tampermonkey, "Create a new script..." and copy the tampermonkey_chrome.js lines into it, and click File->Save (in Tampermonkey on the top left)
- Refresh the twitch page, and chat should now look a lot better.
This file contains 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
Enable Text Fragment Anchor | |
This is the setting in chrome://flags to disable the asinine highlighting and auto-scrolling of search results AFTER you click them. What were they thinking?? |
This file contains 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
[ | |
2to3 | |
apt | |
ar | |
arch | |
as | |
at | |
atq | |
atrm | |
awk |
This file contains 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
# running this in irb in tmux on WSL on Windows 10 (then you have to ctrl-c) causes segfault | |
# ruby version ruby 2.3.1p112 (2016-04-26) [x86_64-linux-gnu] | |
# /etc/lsb-release | |
#DISTRIB_ID=Ubuntu | |
#DISTRIB_RELEASE=16.04 | |
#DISTRIB_CODENAME=xenial | |
#DISTRIB_DESCRIPTION="Ubuntu 16.04.5 LTS" | |
def gen(r); o = ->(n) { n == 1 ? 1 : r**(n-1) + r*(-> o {o[r**(n-1)]}[o])}; end | |
two = gen(2) | |
two[2] |
Figwheel https://www.youtube.com/watch?v=j-kj2qwJa_E
Rich Hickey Why Simplicity Matters https://www.youtube.com/watch?v=rI8tNMsozo0
David Nolen https://www.youtube.com/watch?v=AhxcGGeh5ho
This file contains 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
[Event "MANY SPRINGS 104 (201709160932)"] | |
[Site "North Richland Hills Library"] | |
[Date "2017.09.16"] | |
[Round "2"] | |
[White "Muller"] | |
[Black "Crane"] | |
[Result "0-1"] | |
[WhiteElo "Unrated"] | |
[BlackElo "1523"] | |
[ECO ""] |
This file contains 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.*; | |
public class RPNCalc { | |
private static Stack<Integer> stack = new Stack<Integer>(); | |
private static Scanner input = new Scanner(System.in); | |
public static void calculator() throws Exception { | |
System.out.println("Welcome to the RPN Calculator program!"); |
This file contains 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
(ns mandelclj.core | |
(:gen-class) | |
(:import | |
(sun.java2d SunGraphics2D) | |
(javax.swing JFrame JLabel) | |
(java.awt.image BufferedImage) | |
(java.awt Dimension Color Rectangle) | |
(java.awt.event ActionEvent | |
ActionListener | |
MouseAdapter |
This file contains 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
class Thread | |
class TimeoutError < StandardError; end | |
def self.timeout(n) | |
temp_queue = Queue.new | |
work_thread = Thread.new { temp_queue << {return: yield} } # wrapping in a hash guarantees uniqueness of output | |
timeout_thread = Thread.new { sleep n; temp_queue << :timeout } | |
if (ret_val = temp_queue.pop) == :timeout # this pop is blocking, so it either waits on the yield or the timeout | |
work_thread.kill | |
raise TimeoutError |
This file contains 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
Set: Unordered list of unique elements. | |
Array: Ordered list of elements. | |
HashMap: Unordered list of key-value pairs where the keys are unique. | |
(Note: this has many different names. | |
Hash in Ruby, Perl | |
Dictionary in Python (keys must be immutable) | |
Object in Javascript (value functions can introspect) | |
Map in Clojure | |
HashMap in Java | |
Associative Array in PHP,Perl,Wikipedia |
NewerOlder