- Angst
- Anlage: A re-evaluation of the premaxillary bone in humans
- Ansatz
- Autobahn
- Bildungsroman: Wikipedia, New York Times
- Diktat: New York Times
- Doppelgänger
- Dreck: The Baffler
- Ersatz: The Baffler
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
^http:\/\/.*\/([^:/]+\/(?:[^:/]+:\/)*(?:[^:/]+\/){3}[^/]+.rpm) http://opensuse.squid.internal/$1 |
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 | |
echo -e '\\e[1m \e[1mbold\e[21m \\e[21m' | |
echo -e '\\e[3m \e[3mitalic\e[23m \\e[23m' | |
echo -e '\\e[4m \e[4munderline\e[24m \\e[24m' | |
echo -e '\\e[5m \e[5mblinking\e[25m \\e[25m' | |
echo -e '\\e[9m \e[9mstrikethrough\e[29m \\e[29m' | |
echo -e '\\e[53m \e[53moverline\e[55m \\e[55m' | |
echo -e '\\e[XXm' | |
for i in $(seq 30 38) |
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
#!/usr/bin/sed -f | |
# Remove hard-coded typedefs in the beginning. | |
2,+13d | |
# Remove addresses from Stmts, Attrs, Comments. | |
s/\o033\[0m\o033\[0;1;35m\([A-Za-z]*\)\o033\[0m\o033\[0;33m 0x[0-9a-f]*/\o033[0m\o033[0;1;35m\1\o033[0m\o033[0;33m/g | |
s/\o033\[0m\o033\[0;1;34m\([A-Za-z]*\)\o033\[0m\o033\[0;33m 0x[0-9a-f]*/\o033[0m\o033[0;1;34m\1\o033[0m\o033[0;33m/g | |
s/\o033\[0m\o033\[0;34m\([A-Za-z]*\)\o033\[0m\o033\[0;33m 0x[0-9a-f]*/\o033[0m\o033[0;34m\1\o033[0m\o033[0;33m/g | |
# Remove source locations and ranges. | |
s/ <\o033\[0;33m[^\o033]*\o033\[0m>//g | |
s/ <\o033\[0;33m[^\o033]*\o033\[0m, \o033\[0;33m[^\o033]*\o033\[0m>//g |
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
add_subdirectory(llvm) |
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
%!PS-Adobe-3.0 | |
%%Creator: Aaron Puchert | |
%%Title: The Spierpinski triangle | |
%%Pages: 1 | |
%%PageOrder: Ascend | |
%%BeginProlog | |
% PAGE SETTINGS | |
/pageset { | |
28.3464566 28.3464566 scale % set cm = 1 |
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
require("utils") | |
require("parallel") | |
# do not start in RStudio | |
if (Sys.getenv("RSTUDIO_USER_IDENTITY") == "" && !file.exists(".cluster")) { | |
cat(Sys.getpid(), file=".cluster") | |
Cluster <- makeCluster(detectCores()) | |
} | |
.First <- function() source("src/main.r") # should load all other sources |
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
CREATE OR REPLACE FUNCTION group_concat_iterate(_state INTEGER[], _value INTEGER) | |
RETURNS INTEGER[] AS | |
$BODY$ | |
SELECT | |
CASE | |
WHEN $1 IS NULL THEN ARRAY[$2] | |
ELSE $1 || $2 | |
END | |
$BODY$ | |
LANGUAGE SQL VOLATILE; |
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
PRAGMA recursive_triggers=on; | |
CREATE TABLE nodes ( | |
id INTEGER NOT NULL, | |
parent_id INTEGER, | |
interval_start REAL, | |
interval_end REAL, | |
name TEXT NOT NULL, | |
PRIMARY KEY (id ASC), | |
FOREIGN KEY (parent_id) |
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
CREATE TABLE tab2 ( | |
columns TEXT); | |
INSERT INTO tab2 (columns) SELECT columns from tab; | |
DROP TABLE tab; | |
ALTER TABLE tab2 RENAME TO tab; |