Skip to content

Instantly share code, notes, and snippets.

View KodingDev's full-sized avatar
👩‍💻
we do a little coding

Stella KodingDev

👩‍💻
we do a little coding
View GitHub Profile
@jimmywarting
jimmywarting / readme.md
Last active September 10, 2025 00:05
Cors proxies
Exposed headers
Service SSL status Response Type Allowed methods Allowed headers
@pvieito
pvieito / gist:ee6d2c8934a8f84b9aeb467585277b8a
Last active September 15, 2025 09:00
Consumer keys of official Twitter clients

Twitter API Keys

Twitter for iPhone

Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU

Twitter for Android

Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for Google TV

Consumer key: iAtYJ4HpUVfIUoNnif1DA

@ramesh-lingappan
ramesh-lingappan / pushgateway_docker-compose.yml
Created July 9, 2020 15:24
PushGateway docker compose file
version: '3'
networks:
monitor-net:
driver: bridge
volumes:
prometheus_data: {}
pushgateway_data: {}
services:
prometheus:
@bristermitten
bristermitten / RecordTypeAdapterFactory.java
Created July 24, 2021 15:47
Gson support for java 16 records
package me.bristermitten.warzone.config.loading;
import com.google.gson.Gson;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.annotations.SerializedName;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;
@KodingDev
KodingDev / README.md
Last active September 14, 2024 11:57
Teyvat Map Comments - UserScript
@ellsies
ellsies / Crossover.sh
Last active September 13, 2025 07:09
Crackover (Complete free version of crossover)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS