Skip to content

Instantly share code, notes, and snippets.

@patpohler
patpohler / Big List of Real Estate APIs.md
Last active December 16, 2024 04:19
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

@jdryg
jdryg / RayCapsuleTest.cpp
Created May 3, 2015 10:24
Ray/Capsule intersection test
class CVector3f
{
public:
float x, y, z;
CVector3f()
{}
CVector3f(float xx, float yy, float zz) : x(xx), y(yy), z(zz)
{}
@bitgentdev
bitgentdev / BITGENT.md
Last active December 16, 2024 04:18
READ: First AI agents inscribed as Bitcoin Ordinals. Cross-chain functionality in between BRC-20 to SPL-20 tokens on Solana.

Project: Bitgent + BRC20 Ordinal // SPL-20 Pumpfun Integration

This project bridges BRC-20 and SPL-20 token technologies, allowing users to create agents with dual-token issuance. Tweets in a specific format are parsed, and their parameters are used to inscribe data onto Bitcoin ordinals (BRC-20) and create linked SPL-20 tokens via Pumpfun.

GitHub: https://github.com/bitgentdev

Funded and backed by Ordiswap Labs.


@ThioJoe
ThioJoe / Appx-Uninstaller.ps1
Last active December 16, 2024 04:11
A basic script for uninstalling a list of app packages in Windows 10/11, including those pre-installed with Windows
# A basic script for uninstalling app packages in Windows 10/11, including those pre-installed with Windows
#
# Note: If you get an error about the script not being allowed to run, the below command will change the execution polciy temporarily for one session only:
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
#
# To execute the script, open a Powershell window to the directory with the script and run the following command using your scripts file name (and don't forget the .\ )
# .\WhateverScriptName.ps1
# -------------------------------------------------------------------------------------------
# Script by ThioJoe - https://github.com/ThioJoe
@stevekm
stevekm / convert_FLAC_to_mp3.sh
Created August 11, 2016 20:05
Use FFMPEG to convert FLAC to MP3
#!/bin/bash
# on OS X, need to install ffmpeg
# so that we can convert FLAC music files
# into mp3 files
# install ffmpeg
brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-libass --with-libquvi --with-libvorbis --with-libvpx --with-opus --with-x265
brew update && brew upgrade ffmpeg
Linkedin = {
config: {
scrollDelay: 3000,
actionDelay: 5000,
nextPageDelay: 5000,
// set to -1 for no limit
maxRequests: -1,
totalRequestsSent: 0,
// set to false to skip adding note in invites
addNote: true,
@guweigang
guweigang / git_toturial
Last active December 16, 2024 04:04
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "[email protected]" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global --unset http.proxy # remove proxy configuration on git
git clone git+ssh://[email protected]/VT.git # clone远程仓库
@4v3ngR
4v3ngR / ytadblock.js
Last active December 16, 2024 04:01
Block youtube ads in Safari with userscripts
// ==UserScript==
// @name Youtube adblock
// @namespace http://tampermonkey.net/
// @version 0.2
// @description enough with the ads!
// @author 4v3ngR
// @match https://*.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant none
// @run-at document-start
@theevilbit
theevilbit / inject.c
Last active December 16, 2024 03:57
DYLD_INSERT_LIBRARIES DYLIB injection in macOS / OSX deep dive
#include <stdio.h>
#include <syslog.h>
#include <stdlib.h>
__attribute__((constructor))
static void customConstructor(int argc, const char **argv)
{
setuid(0);
system("id");
printf("Hello from dylib!\n");