Skip to content

Instantly share code, notes, and snippets.

View Kekson's full-sized avatar
👽

Bacho Kekelidze Kekson

👽
View GitHub Profile
@delasy
delasy / HAMSTER-KOMBAT-PLAYGROUND-GAMES-PRMO-CODE-KEYS-GENERATOR.md
Last active September 20, 2024 12:23
[FREE] Hamster Kombat playground promo code keys generator. FCTRY, WATER, INFCT, PIN, COUNT, HIDE, BOUNC, STONE, FLUF, TILE, ZOO, TRIM, POLY, TWERK, MERGE, CUBE, TRAIN games.

HamsterKombat Playground Promo Code Keys Generator

This script is way more advanced than other scripts out there.

  • allows generating HamsterKombat coupon code for free using your machine.
  • acts as close as possible to real games with delays for game re-installations.
  • it doesn't use any proxies, it doesn't make any requests to external APIs.

If you are afraid that your IP will get blocked you can simply use VPN or proxy.

@LeCoupa
LeCoupa / redis_cheatsheet.bash
Last active August 12, 2024 13:00
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.
@Stichoza
Stichoza / ხელოსნები.md
Last active March 30, 2024 12:22
ხელოსნები
  • ელექტროობა, დიაგნოსტიკა - იურა 555566484 - დიღმის მასივში, ასტრა დიღომში;
  • ელექტროობა, დიაგნოსტიკა - ზაზა 599730481 - საბურთალოზე, შარტავაზე საბურთალოს ბაზრთან (ყოფილი) მშენებარე ობიექტია და იმ ტერიტორიაზეა. გვერდით სამრეცხაოც არის;
  • ელექტროობა, დიაგნოსტიკა - გურამი 593214435 - "ნახალოკაში";
  • ელექტროობა, დიაგნოსტიკა - იგორი - "Opel"-ის ყოფილ სერვის ცენტრში - ელიავაზე;
  • ელექტროობა - არტურა 599656090 - ორთაჭალაში სამშობიაროს რო გაცდები მარცხნივ მწვანე კარებია და მანდ მუშაობს;
  • ელექტროობა - არტურა 593223950 - მანქანაზე "პერებოის" გარანტიით გასწორება, შეუძლია შეამოწმოს ყველაფერი (მანქანა ცივი უნდა იყოს) - მუშაბს მარჯვენა სანაპიროზე, დიღმის მასივიდან რომ არის ჩასასვლელი, ბოქსებს დაინახავთ, მანდ სამრეცხაოებიც არის;
  • ელექტროობა - ნიკო და ზურა 599789053 - ველოტრეკზე (მერსედესის ცენტრამდე);
  • ელექტროობა, დიაგნოსტიკა Star C3-ის აპარატით - რობო 568775999 - დიდუბეში აკვაპარკის ჩასახვევში პირველივე პროფელაქტიკა;
  • ელექტროობა - ედიკა 599601454;
  • ელექტროობა - ზვიადი 599540517 - დიღომში ყოფილ ავტობაზრობასთან. მუშაობ
@dgp
dgp / youtube api video category id list
Created June 11, 2015 05:57
youtube api video category id list
2 - Autos & Vehicles
1 - Film & Animation
10 - Music
15 - Pets & Animals
17 - Sports
18 - Short Movies
19 - Travel & Events
20 - Gaming
21 - Videoblogging
22 - People & Blogs
@LeCoupa
LeCoupa / nodejs-cheatsheet.js
Last active June 30, 2024 04:14
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@kosinix
kosinix / custom-nav-walker-usage.php
Last active April 25, 2023 09:32
WordPress: Using a custom nav walker to create navigation menus in plain <a> tags. That is the <ul> and <li> tags are not present. Very useful if you want to create simple links that can be centered with a simple text-align:center on the containing element.
<?php
// In your template files like footer.php
// The items_wrap value ('%3$s') removes the wrapping <ul>, while the custom walker (Nav_Footer_Walker) removes the <li>'s.
wp_nav_menu(array('items_wrap'=> '%3$s', 'walker' => new Nav_Footer_Walker(), 'container'=>false, 'menu_class' => '', 'theme_location'=>'footer', 'fallback_cb'=>false ));
?>
@alexdunae
alexdunae / wordpress_custom_post_gallery.php
Created March 31, 2011 23:55
Display a custom post type's media library inline on the WordPress edit page screen
<?php
define('MY_POST_TYPE', 'my');
define('MY_POST_SLUG', 'gallery');
function my_register_post_type () {
$args = array (
'label' => 'Gallery',
'supports' => array( 'title', 'excerpt' ),
'register_meta_box_cb' => 'my_meta_box_cb',