View apt1.json
{ | |
"type": "bundle", | |
"id": "bundle--cf20f99b-3ed2-4a9f-b4f1-d660a7fc8241", | |
"spec_version": "2.0", | |
"objects": [ | |
{ | |
"type": "intrusion-set", | |
"id": "intrusion-set--da1065ce-972c-4605-8755-9cd1074e3b5a", | |
"created": "2015-05-15T09:00:00.000Z", | |
"modified": "2015-05-15T09:00:00.000Z", |
View install_ffmpeg_libfdkaac.sh
# Criando um script .sh para executar todos os comandos | |
#user@servidor:~$ wget https://gist.githubusercontent.com/SteveClement/26d9c9035c635fb7bff05ff8eacd1a94/raw/d3a82be86039f72f25f8d2b8cbc6d5299be75cac/install_ffmpeg_libfdkaac.sh | |
#user@servidor:~$ chmod +x install_ffmpeg_libfdkaac.sh | |
#user@servidor:~$ ./install_ffmpeg_libfdkaac.sh | |
YOLO="true" # Living on the bleeding edge | |
x265="true" # Include libx265 | |
mkdir -p ~/bin |
View explode.sh
#!/usr/bin/env bash | |
INPUT_FILE="${1}" | |
if [[ ! -f "${1}" ]]; then | |
echo "File "${1}" does not exist" | |
exit -1 | |
fi | |
if [[ ${INPUT_FILE} == *"/"* ]]; then | |
echo "Slash exists" |
View pullMergePush.sh
#!/usr/bin/env bash | |
BASE="2.4" | |
CURRENT_BRANCH=$(git branch | grep ^\* |cut -f 2 -d\ ) | |
git checkout $BASE && git fetch upstream | |
git merge upstream/$BASE && git push | |
# gh-pages (not needed, will be done during doc regen) |
View jsonschema
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import re | |
import sys | |
from jsonschema.cli import main | |
if __name__ == '__main__': | |
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) |
View gist:3e0251a0c28381904d4852ff51e83a29
########### Checking Requirements ########### | |
[OK] Docker is Installed. Output: Docker version 18.06.1-ce, build e68fc7a | |
[OK] Git is Installed. Output: git version 2.19.1 | |
[OK] Check: https://misp.dcso.de | |
Result: * Connected to misp.dcso.de (185.183.127.100) port 443 (#0). | |
[OK] Check: https://dockerhub.dcso.de/v2/ | |
Result: * Connected to dockerhub.dcso.de (217.110.69.251) port 443 (#0). | |
[OK] Check: https://github.com/DCSO/misp-dockerized | |
Result: * Connected to github.com (192.30.255.113) port 443 (#0). |
View twotwo-wayland.sh
#!/bin/bash | |
# vi: ts=4:sw=4:et | |
# | |
# twotwo.sh | |
# This script allows you to install/update Enlightenment 22 git version on | |
# Ubuntu 18.04 or Debian buster (testing), or remove E22 git from your system. | |
# ******************************************************************** | |
# * This version builds enlightenment with wayland. * | |
# * That means this requires a very recent Ubuntu or Debian version. * | |
# * This may not work properly! You've been warned! * |
View twotwo.sh
#!/bin/bash | |
# vi: ts=4:sw=4:et | |
# | |
# twotwo.sh | |
# This script allows you to install/update Enlightenment 22 git version on | |
# Ubuntu 18.04 LTS or Debian testing (buster), or remove E22 git from your system. | |
# Originally from: http://ubuntuforums.org/showthread.php?t=2203190 | |
# By: Philippe J. Guillaumie (batden AT sfr DOT fr). | |
# Additional updates by: Bryan Hundven (bryanhundven AT gmail DOT com). | |
# |
View imageEffect.pde
PImage kitten; | |
void setup() { | |
size(2024, 512); | |
kitten = loadImage("kitten.jpg"); | |
//kitten.filter(GRAY); | |
image(kitten, 0, 0); | |
} | |
void draw() { |
View checkNet.py
#!/usr/bin/env python3 | |
# Source: # https://github.com/arvydas/blinkstick-python/wiki/Example:-Display-Internet-connectivity-status | |
import socket | |
import time | |
try: | |
import netifaces | |
gws = netifaces.gateways() |
NewerOlder