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/python3 | |
import abc | |
import sys | |
import json, base64 | |
from typing import Callable, IO, cast | |
import requests | |
import pandas as pd | |
import attr |
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/python3 | |
import abc | |
import sys | |
from typing import Callable, IO, cast | |
import requests | |
import attr | |
class MessageTemplating(metaclass=abc.ABCMeta): |
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/python3 | |
import abc | |
import time, json, sys | |
from typing import Callable, IO, cast | |
import shutil | |
from subprocess import Popen as popen_call # Execute a shell command | |
from subprocess import call as system_call # Execute a shell command | |
import attr |
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/sh | |
# $1 : file with keys | |
# $2 : certificat (256 - 512) | |
# $3 : binary to check. | |
cat $1 | grep "`shasum -a $2 $3`" | |
if grep -q "`shasum -a $2 $3`" $1 | |
then |
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/sh | |
# $1 : file with keys | |
# $2 : certificat (256 - 512) | |
# $3 : binary to check. | |
cat $1 | grep "`shasum -a $2 $3`" | |
if grep -q "`shasum -a $2 $3`" $1 | |
then |
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/local/bin/python3 | |
from east import * | |
if __name__ == '__main__': | |
Naviguate().browse('/foo/bar') | |
Naviguate().simple_browser('') |
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_DIR := public | |
SRC_DIR := src | |
CP := $(which cp) | |
RM := $(which rm) | |
PROJECTS_SRC := $(wildcard $(SRC_DIR)/*) | |
PROJECTS_PUBLIC := $(subst $(SRC_DIR)/,$(PUBLIC_DIR)/,$(PROJECTS_SRC)) | |
install: $(PROJECTS_SRC) | |
$(PROJECTS_SRC): clear/$(PUBLIC_DIR) |
NewerOlder