I hereby claim:
- I am yousefamar on github.
- I am drmr (https://keybase.io/drmr) on keybase.
- I have a public key whose fingerprint is 1DBB 55D3 6533 1AD1 554E 875C B85C 26CC 81EF 6F49
To claim this, I am signing this object:
let things = []; | |
UBDs.map(u => u.id).forEach(id => { | |
fetch('https://dbs-ub-directory.homeoffice.gov.uk/org-page.php?id='+id).then(res => res.text()).then(text => { | |
let el = document.createElement('html'); | |
el.innerHTML = text; | |
el = el.getElementsByClassName('pricing')[0]; | |
if (!el) { | |
console.log(id, 'has no price'); | |
return; | |
} |
const fs = require('fs'); | |
const https = require('https') | |
const { execSync } = require('child_process'); | |
const queryFrequencyMs = 5 * 60 * 1000; | |
let seenNids = {}; | |
const generateEmail = (() => { | |
const footer = `<h1>New cat alert!</h1>`; |
const TracePlayback = require('./trace-playback.js') | |
const tp = new TracePlayback('2019811-msgs.mlrec', '2019811-stat.mlrec', { | |
playbackBufferSize: 1000, | |
tickTimeMs: 100 | |
}); | |
tp.on('packet', packet => { | |
console.log(packet); | |
}); |
license: mit |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>String Substituter</title> | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
<!-- <script src="https://cdn.jsdelivr.net/npm/vue"></script> --> | |
<link rel='stylesheet' href='https://cdn.jsdelivr.net/gh/kognise/water.css@latest/dist/light.min.css'> | |
<style> |
#!/usr/bin/python3 | |
import subprocess | |
from collections import defaultdict | |
import sys | |
#IPsByMAC = defaultdict(list) | |
#proc = subprocess.Popen('cat dhcp.log | bro-cut ts mac assigned_ip', shell=True, stdout=subprocess.PIPE) | |
#while True: |
#!/bin/sh | |
# | |
# Splits up a PCAP file by MAC addresses | |
# | |
# Authors: | |
# Yousef Amar <[email protected]> | |
# | |
if [ $# -lt 1 ]; then |
I hereby claim:
To claim this, I am signing this object:
const username = ''; | |
const password = ''; | |
require('nightmare')() | |
.goto('https://accounts.google.com/Login?continue=https://myactivity.google.com/item') | |
.wait('#Email') | |
.insert('#Email', username) | |
.click('#next') | |
.wait('#Passwd') | |
.insert('#Passwd', password) |
# Maintainer: mar77i <mar77i at mar77i dot ch> | |
# Past Maintainer: Gaetan Bisson <[email protected]> | |
# Contributor: Scytrin dai Kinthra <[email protected]> | |
pkgname=st-git | |
_pkgname=st | |
pkgver=0.7.2.gf92ca6e | |
pkgrel=1 | |
pkgdesc='Simple virtual terminal emulator for X' | |
url='http://st.suckless.org/' |