Skip to content

Instantly share code, notes, and snippets.

View aliosmanyuksel's full-sized avatar
🤒
Out sick

Ali Osman Yüksel aliosmanyuksel

🤒
Out sick
View GitHub Profile
(?i)(?:(?:access_key|access_token|admin_pass|admin_user|algolia_admin_key|algolia_api_key|alias_pass|alicloud_access_key|amazon_secret_access_key|amazonaws|ansible_vault_password|aos_key|api_key|api_key_secret|api_key_sid|api_secret|api.googlemaps AIza|apidocs|apikey|apiSecret|app_debug|app_id|app_key|app_log_level|app_secret|appkey|appkeysecret|application_key|appsecret|appspot|auth_token|authorizationToken|authsecret|aws_access|aws_access_key_id|aws_bucket|aws_key|aws_secret|aws_secret_key|aws_token|AWSSecretKey|b2_app_key|bashrc password|bintray_apikey|bintray_gpg_password|bintray_key|bintraykey|bluemix_api_key|bluemix_pass|browserstack_access_key|bucket_password|bucketeer_aws_access_key_id|bucketeer_aws_secret_access_key|built_branch_deploy_key|bx_password|cache_driver|cache_s3_secret_key|cattle_access_key|cattle_secret_key|certificate_password|ci_deploy_password|client_secret|client_zpk_secret_key|clojars_password|cloud_api_key|cloud_watch_aws_access_key|cloudant_password|cloudflare_api_key|cloudflare_au
@aliosmanyuksel
aliosmanyuksel / delete-likes-from-twitter.md
Created August 7, 2022 13:40 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }
@aliosmanyuksel
aliosmanyuksel / insta-unfollowers.js
Created May 1, 2022 22:32
Instagram List Unfollowers & Unfollow - Chrome - Opera - Safari - Edge Console Code
function getCookie(a) {
const b = `; ${document.cookie}`,
c = b.split(`; ${a}=`);
if (2 === c.length) return c.pop().split(";").shift();
}
function sleep(a) {
return new Promise((b) => {
setTimeout(b, a);
});
}
@aliosmanyuksel
aliosmanyuksel / twitter-unfollow.js
Created October 10, 2021 14:50
Twitter Mass Unfollow Console Code 2021 (Chrome&Safari&Opera&Firefox)
var LANGUAGE = "TR"; //NOTE: change it to use your language!
var WORDS =
{
//English language:
EN:
{
followsYouText: "Follows you", //Text that informs that follows you.
followingButtonText: "Following", //Text of the "Following" button.
confirmationButtonText: "Unfollow" //Text of the confirmation button. I am not totally sure.
},
@aliosmanyuksel
aliosmanyuksel / Tükiye Cumhuriyeti Kurumları JSON.json
Last active October 16, 2023 13:03
Türkiye Cumhuriyeti kamu kurumlarının JSON formatında veri listesi. Veriler turkiye.gov.tr adresinden Ocak, 2019 tarihinde alınmıştır.
[
{
"code": "1",
"title": "Adalet Bakanlığı",
"link": "http://www.adalet.gov.tr/",
"tel": "03124177770",
"email": "info@adalet.gov.tr",
"adres": "Vekaletler Cad. Kızılay / ANKARA"
},
{
<section>
<form action="#" method="GET" id="searchform">
<input type="text" name="city" id="city" value="Örnek: Denizli">
<input type="text" name="query" id="query" value="Örnek: Bar">
<input type="submit" name="submit" id="submit" value="Getir">
</form>
<div id="content">
<div id="venuewrapper">
<div id="venues"></div>
</div>
@aliosmanyuksel
aliosmanyuksel / tinder-api-documentation.md
Created December 22, 2015 21:52 — forked from rtt/tinder-api-documentation.md
Tinder API Documentation

Tinder API documentation

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)

Note: this was written in April/May 2014 and the API may have changed since

API Details