Skip to content

Instantly share code, notes, and snippets.

const std = @import("std");
const builtin = @import("builtin");
const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
const target = b.standardTargetOptions(.{});
const exe = b.addExecutable("huh", "main.zig");
exe.setTarget(target);
exe.linkSystemLibrary("c");
@donpdonp
donpdonp / weather.js
Last active May 12, 2023 17:59
gluon weather rain
(function() {
// descriptor
setup()
return {name:"weather"}
})
var apikey_climacell
var apikey_pirateweather
function setup(){
@donpdonp
donpdonp / launch.js
Last active March 28, 2021 01:40
gluon launch spacex
(function() {
return {name:"launch"}
})
var alert_channel = "#pdxtech"
function go(msg) {
var privmsg = false
var clocktower = false
if (msg.method == "clocktower" && (new Date(Date.parse(msg.params.time))).getMinutes() == 30) {
@donpdonp
donpdonp / coin.sh
Last active August 11, 2020 17:43
coincap.io coin price lookup
#!/bin/bash
if [ -z "$1" ];
then
COINS=`cat ~/.coins`
PARAM="ids=$COINS"
else
echo $1
PARAM="search=$1"
fi
DATA=`curl --silent "https://api.coincap.io/v2/assets?$PARAM"`
Hello, I work as a Private Investigator.
Our agency received a case with an objective of hacking into your email, phone, cloud storage, network and collecting intelligence.
We work with hackers from China for tasks like that, and they are the best. As you can see, they did a good job. Your accounts and devices are compromised.
But we do have an ethical protocol in place.
After checking the background of the person who paid for the hacking and investigation on you, I have decided to come forward and offer you to buy the information about that person (name, contacts, emails and other proof).
You will also get a report on yourself (including a list of compromised accounts, devices, logs, screenshots, photos and documents).
Normally, we do not disclose sensitive information about our clients, but in this case we will be.
Upon reviewing this case, I found that something illegal was planned against you.
The materials we have collected on you are very sensitive and can be easily used to blackmail you.
@donpdonp
donpdonp / cdp.js
Last active August 26, 2020 17:45
gluon defi CDP checker
(function() {
setup()
return { name: "cdp" }
})
var key = "defi:cdps"
var cache = []
var soon_cache = []
var soon_time = 15 * 60 * 1000 // 15min
var alert_channel = "#zrobo"
@donpdonp
donpdonp / oregonorders.js
Last active February 10, 2022 21:05
gluon oregon state executive orders
(function() {
setup()
return {
name: "oregonorders"
}
})
var alert_channel = "#portlandor"
var orders = []
@donpdonp
donpdonp / covid.js
Last active March 17, 2021 02:02
gluon covid tracker for Oregon
(function() {
setup()
return {name:"covid"}
})
var alert_channel = '#pdxbots'
var locations
var data_date
var oregon
@donpdonp
donpdonp / kernel.js
Last active June 26, 2023 07:10
gluon kernel
(function() {
kernel_cache()
return {name:"kernel"}
})
var db_key = "kernel:cache"
var kver = {}
var alert_channel = "#pdxtech"
function kernel_cache() {
@donpdonp
donpdonp / tls.js
Last active June 28, 2023 16:51
gluon tls ssl checks
(function() {
setup()
return {name:"tls"}
})
var alert_channel = "#pdxbots"
var watchlist = {}
var key = "tls:watchlist"
function setup() {