Skip to content

Instantly share code, notes, and snippets.

View alekxeyuk's full-sized avatar
⚒️
Workers of the world, unite!

LeLuCh B0й alekxeyuk

⚒️
Workers of the world, unite!
  • Tanelorn
  • United Russian Kingdom
View GitHub Profile
@Junohea
Junohea / Office_kms
Last active December 16, 2022 07:27 — forked from mokoshalb/Office_kms
KMS server Windows
OSPP.VBS in one of these folders
Program Files\Microsoft Office\Office[##]
Program Files (x86)\Microsoft Office\Office[##]
First, install product key for version of office
cscript OSPP.VBS /inpkey:
office 2010: VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB
office 2013: YC7DK-G2NP3-2QQC3-J6H88-GVGXT
office 2016: XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99
office 2019: NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP
@mokoshalb
mokoshalb / Office_kms
Created July 4, 2019 05:36 — forked from CHEF-KOCH/KMS_office.cmd
KMS server Windows
cd\Program Files\Microsoft Office\Office16
cd\Program Files (x86)\Microsoft Office\Office16
cscript OSPP.VBS /sethst:kms.digiboy.ir
cscript OSPP.VBS /actcscript OSPP.VBS /dstatus
slmgr.vbs /ckms
@sandeepkv93
sandeepkv93 / flask_heroku_guide.md
Created November 27, 2018 00:29
Creating Flask App and deploying it in Heroku

Creating Flask App and deploying it in Heroku

Create a Flask App

  1. Create a virtual environment
    • In Windows
    virtualenv env
    cd env\Scripts
    .\activate
@OctoberWu
OctoberWu / flask_reminder.md
Last active October 5, 2020 21:37
[Deploy Flask on Heroku] #flask #heroku

prerequisetes - Flask, gunicorn, Heroku account and Heroku CLI are needed

$pip install flask gunicorn

step 1: Create a simple Flask App

// ./app.py

app = Flask(__name__)
{
"type": "playlist",
"ownerId": 196090362,
"id": 3,
"isOfficial": 0,
"title": "HOME Discographic",
"subTitle": null,
"description": "",
"rawDescription": "",
"authorLine": "",
@seraku24
seraku24 / 149909-playlist_youtube-vlc3patch.lua
Created May 16, 2018 09:56
VLC 3.x compatibility patch for 149909-playlist_youtube.lua
--[[
Youtube playlist importer for VLC media player 1.1 and 2.0
Copyright 2012 Guillaume Le Maout
Authors: Guillaume Le Maout
Contact: http://addons.videolan.org/messages/?action=newmessage&username=exebetche
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
@shengchiliu
shengchiliu / heroku_for_flask_apps.md
Last active May 2, 2019 10:45
Heroku for Flask Apps

Heroku for Flask Apps

Install Heroku, Flask and Gunicorn

1. Create Procfile and .gitignore Files

@lubien
lubien / stickers-downloader.js
Last active November 21, 2023 03:06
Download all visible telegram stickers images
// How to download telegram sticker images
/*
1. Go to Telegram Web;
2. Open console (F12);
3. Paste the code below in the console and press Enter;
4. Open your stickers menu and make sure you see the sticker pack you want to download (so Telegram will load it).
5. At the console paste and run "downloadStickers()" any time you want to download a pack.
6. [Convert .webm to another format](http://www.freewaregenius.com/convert-webp-image-format-jpg-png-format/);
7. Happy hacking.
@marcom04
marcom04 / .python-c-echo
Last active April 20, 2024 18:14
Basic echo between Python client and C server via socket using Python ctypes
Basic echo between Python3 client and C server, and vice versa, via socket using Python ctypes
@joaopizani
joaopizani / .screenrc
Created May 17, 2012 11:55
A killer GNU Screen Config
# the following two lines give a two-line status, with the current window highlighted
hardstatus alwayslastline
hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]'
# huge scrollback buffer
defscrollback 5000
# no welcome message
startup_message off