Skip to content

Instantly share code, notes, and snippets.

View Bestulo's full-sized avatar

Besto Bestulo

View GitHub Profile
@Bestulo
Bestulo / gist:33a43f8e8884919a1ccd95bfc3dd8bd8
Created December 10, 2017 07:27
Failed login attempt to zerobias/telegram-mtproto
const {MTProto} = require('telegram-mtproto')
const fs = require('fs-extra')
const vars = JSON.parse(fs.readFileSync('secrets'))
const {phone, api_id, hash} = vars.userbot
const prompt = require('prompt-promise')
const api = {
layer: 57,
api_id: api_id
}
@Bestulo
Bestulo / Common-Currency.json
Created December 8, 2017 03:42 — forked from ksafranski/Common-Currency.json
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},
@Bestulo
Bestulo / bancos
Last active May 18, 2023 17:36 — forked from xombra/bancos
[JSON] Codigo y Bancos correspondientes de Venezuela
[
{
"prefijo": "0156",
"nombre": "100%BANCO"
},
{
"prefijo": "0196",
"nombre": "ABN AMRO BANK"
},
{
@Bestulo
Bestulo / ltplugin.user.js
Created November 22, 2016 10:08
plugin for LT
$(document).ready(function(){
var $songLink = $('li.song-node-info-album').find('a').attr("href");
var $tabs = $('ul.tabs');
$.ajax({
type: 'GET',
url: $songLink,
success: function(res){
$(res).find('.green_tab').each(function(){
$tabs.append($(this));
});