Skip to content

Instantly share code, notes, and snippets.

View efe's full-sized avatar

Efe Öge efe

View GitHub Profile

Keybase proof

I hereby claim:

  • I am efe on github.
  • I am efe (https://keybase.io/efe) on keybase.
  • I have a public key ASDJlP-JOh7ot5oFiePUrpIqSRfi5JR4Sawr_KIuoW7pAAo

To claim this, I am signing this object:

@efe
efe / tiktik.ino
Last active March 25, 2018 11:28
// CONFIGURATIONS
const int digital_pin_of_servo = 9;
const int servo_idle_state_degree = 90;
const int servo_active_state_degree = 70;
#include <DS3231.h>
#include <Servo.h>
// initialize the real time clock object.
DS3231 rtc(SDA, SCL);
@efe
efe / tinder_autolike.py
Last active October 5, 2019 16:34
A script for Tinder auto like.
import time
import requests
API_TOKEN = 'PUT YOUR TOKEN HERE'
HEADERS = {"X-Auth-Token": API_TOKEN}
class Person():
def __init__(self, tinder_id, name, birth_date, bio, photo_url):
self.tinder_id = tinder_id
self.name = name
STREET_TYPE_ABBEY = 'ABBEY'
STREET_TYPE_FARM = 'FARM'
STREET_TYPE_PINES = 'PINES'
STREET_TYPE_ACRES = 'ACRES'
STREET_TYPE_FIELD = 'FIELD'
STREET_TYPE_PL = 'PL'
STREET_TYPE_ALLEE = 'ALLEE'
STREET_TYPE_FOREST = 'FOREST'
STREET_TYPE_PLACE = 'PLACE'
STREET_TYPE_ALLEY = 'ALLEY'
{
"application-transaction": {
"accounts": [],
"application-args": [
"Ym9vdHN0cmFw",
"AAAAAAAAAAc=",
"AAAAAAAAAAA="
],
"application-id": 31,
"foreign-apps": [],
@efe
efe / squawk_migrations.py
Created September 8, 2025 15:59
squawk_migrations.py
# yourproject/app/management/commands/squawk_migrations.py
from __future__ import annotations
import sys
import shlex
import subprocess
from io import StringIO
from typing import List, Tuple
from django.core.management import BaseCommand, call_command, CommandError