Skip to content

Instantly share code, notes, and snippets.

View EnesKeremAYDIN's full-sized avatar
💜
It is very difficult to learn...

Enes Kerem AYDIN EnesKeremAYDIN

💜
It is very difficult to learn...
View GitHub Profile
@EnesKeremAYDIN
EnesKeremAYDIN / xeggex-faucet-auto-claim.js
Last active April 11, 2024 18:40
XEGGEX Faucet Auto Claim
var buttons = document.querySelectorAll(".btn.btn-sm.btn-success.makeclaim");
function clickButtonsSequentially(index) {
if (index < buttons.length) {
buttons[index].click();
setTimeout(function() {
clickButtonsSequentially(index + 1);
}, 100); // 100ms delay
}
}
(function()
{
var wishlist = [];
var wishlisted = [];
jQuery.ajax({
type: 'GET',
url: '//api.steampowered.com/ISteamApps/GetAppList/v2',
dataType: 'jsonp',
success: function(result){
@bmaupin
bmaupin / free-backend-hosting.md
Last active May 3, 2024 18:14
Free backend hosting
@ismailbaskin
ismailbaskin / turkce_isimler.sql
Last active March 31, 2024 03:45
Türkçe isim veritabanı
-- Turkce isimler sozlugu twitter : http://twitter.com/baskindev
CREATE TABLE `isimler` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`isimler` varchar(255) DEFAULT NULL,
`cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
-- ----------------------------