[ Launch: histogram ] bebd8102abb297799e5d1f56f5d2846b by storbeck
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/bash | |
# Replace with your GitHub organization name and token | |
ORG_NAME="$1" | |
# GitHub API URL | |
API_URL="https://api.github.com/orgs/$ORG_NAME/repos" | |
# Pagination variables | |
PAGE=1 |
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 <ESP8266WiFi.h> | |
#include <DNSServer.h> | |
#include <ESP8266WebServer.h> | |
#include <LittleFS.h> | |
// Network Configuration | |
const char *ssid = "FreeWiFi"; // Fake SSID | |
const char *password = ""; // Open network | |
IPAddress apIP(192, 168, 4, 1); // AP IP address | |
IPAddress netMsk(255, 255, 255, 0); // Subnet mask |
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
<# | |
Find hosts with: https://www.shodan.io/search?query=%28ZPS6%29+200+OK | |
#> | |
param( | |
[Parameter(Mandatory=$true)][string]$ip | |
) | |
$request = [xml]@' | |
<?xml version="1.0" encoding="utf-8"?> |
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
function getRandom(min,max) { | |
return Math.floor(window.crypto.getRandomValues(new Uint32Array(1))[0] / 0x100000000 * (max - min) + min) | |
} |
[ Launch: reddit base ] 22101e0ce6e8064dac0ce116f128b89a by storbeck[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
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
IBM.output-colorizer | |
Kal.theme-glacier | |
Nuuf.theme-hackershaze | |
PaulOlteanu.theme-railscasts | |
Poorchop.theme-darktooth | |
TsumiNa.Seti-theme | |
TwentyChung.jsx | |
WallabyJs.wallaby-vscode | |
aalaap.theme-toothpaste | |
akamud.vscode-caniuse |
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
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] |
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/osascript | |
on run this_file | |
tell application "System Events" | |
set desktopCount to count of desktops | |
repeat with desktopNumber from 1 to desktopCount | |
tell desktop desktopNumber | |
set picture to this_file | |
end tell | |
end repeat |
NewerOlder