- Open Atom
- Click the Atom > Open Your Stylesheet menu item
- Paste code below
.editor .markup.underline.link.hyperlink {
color: #F9EE98;
text-decoration: underline;
}
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Vibrancy Example</title> | |
<style> | |
* { | |
color: rgba(100, 100, 100, 0.9); | |
} | |
h1 { |
node_modules |
#!/usr/bin/env coffee | |
fs = require 'fs' | |
log = fs.readFileSync('log.txt', 'utf8') | |
lines = log.split('\n') | |
lines = lines.filter (line) -> not /\thas entered the room$/.test(line) | |
lines = lines.filter (line) -> not /\thas left the room$/.test(line) |
.editor .markup.underline.link.hyperlink {
color: #F9EE98;
text-decoration: underline;
}
a | |
b | |
c |
#!/usr/bin/env bash | |
curl -s "http://www.google.com/finance/historical?q=$1&startdate=jan+1&2c+$2&enddate=dec+31%2c+$2&output=csv&histperiod=weekly" \ | |
| sed -e '1d' \ | |
| tac \ | |
| cut -d, -f5 \ | |
| spark |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.URL; | |
import java.util.Collection; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.eclipse.egit.github.core.Repository; | |
import org.eclipse.egit.github.core.service.RepositoryService; |
import java.io.IOException; | |
import org.eclipse.egit.github.core.RepositoryId; | |
import org.eclipse.egit.github.core.client.GitHubClient; | |
import org.eclipse.egit.github.core.service.RepositoryService; | |
public class Fork { | |
public static void main(String... args) throws IOException { | |
GitHubClient client = new GitHubClient(); |