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/env python3 | |
# coding=utf-8 | |
import sys | |
def main(): | |
for line in sys.stdin: | |
process(line) |
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/env python3 | |
# coding=utf-8 | |
import argparse | |
import csv | |
import datetime | |
import re | |
from collections import namedtuple | |
from os import listdir | |
from os.path import isfile, join |
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
SELECT * | |
FROM ALL_SOURCE | |
WHERE UPPER(text) LIKE UPPER('%what_im_searching_for%') | |
ORDER BY type, name, line | |
; |
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
digraph thompson_nfa { | |
rankdir = LR; | |
node [shape = circle, height = 0.5, fixedsize = true, fontsize = 14]; | |
S_1 [label = "1"]; | |
S_2 [label = "2"]; | |
S_3 [label = "3"]; | |
S_4 [label = "4"]; | |
S_5 [label = "5"]; |