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
import base64 | |
import json | |
import urllib | |
import requests | |
org_name = "your org" | |
project_name = "your project" | |
repo_name = "test" | |
PAT = "a_pat" |
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
trigger: | |
enabled: false | |
variables: | |
- group: dev | |
stages: | |
- stage: Build | |
jobs: | |
- job: Test | |
steps: | |
- task: CmdLine@2 |
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
-- Place this in %APPDATA%\Wireshark\plugins | |
-- declare our protocol | |
IP8 = Proto("IP8","IP8") | |
-- create a function to dissect it | |
function IP8.dissector(buffer,pinfo,tree) | |
pinfo.cols.protocol = "IP8" | |
local subtree = tree:add(IP8,buffer(),"IP8 Protocol Data") | |
offset = 0 | |
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
#include <p32xxxx.h> | |
#include <stdint.h> | |
#include <sys/kmem.h> | |
uint8_t __attribute__((coherent)) buf[200]; | |
void main() | |
{ | |
uint32_t i; |
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/perl | |
#In a nutshell: grab the MLS search results page | |
#extract listings with RegEx (test it with https://regex101.com/) | |
#check results against a local SQLite database for changes or additions | |
#send out updates via a gmail account and smtp | |
#run this script with a cron job | |
use strict; |