This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Originally created by cwke | |
* Reuploaded by Waxaranai | |
* Recoded by SlavyanDesu | |
* | |
* GitHub is an open-source community, so why are you so triggered when someone shared some simple code? | |
*/ | |
const fs = require('fs-extra') | |
const packID = 'com.snowcorp.stickerly.android.stickercontentprovider b5e7275f-f1de-4137-961f-57becfad34f2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var stickerExif = 0 // to prevent stickers with the same name | |
const webp = require('webp-converter'); | |
const Exif = require('/path/to/exif.js'); //https://gist.github.com/JoseHM8A/14a09d7afa34e63eb2c57492d59c2ddd | |
const exif = new Exif() | |
stickerExif++ | |
const packname = 'Pack Name' | |
const autor = 'Author' | |
exif.create(packname, autor, `stc_${author}${stickerExif}`) | |
const encryptMedia = isQuotedImage ? await quotedMsg.downloadMedia() : await msg.downloadMedia() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { decryptMedia } = require('@open-wa/wa-decrypt') | |
const mime = require('mime-types') | |
const nrc = require('node-run-cmd') | |
const fs = require('fs-extra') | |
const sizeOf = require('image-size') | |
const buffer = await decryptMedia(message) | |
const fileName = `temp${from}.${mime.extension(mimetype)}` | |
fs.writeFile(fileName, buffer, function (err) {}) | |
await nrc.run(`convert ${fileName} ${from}.png`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(msg.body=='!clearChats'){ | |
//clearing ALL CHATS | |
msg.reply("Clearing chats !") | |
const chats = await client.getChats(); | |
for (let index = 0; index < chats.length; index++) { | |
let chat = chats[index] | |
/* | |
UNCOMMENT IF YOU WANT CLEAR ONLY PRIVATE CHATS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- MTPhreak IMEI changer and randomizer for MediaTek NVRAM | |
-- This version is adapted specifically for the Sigma sKai and other MT6572 based phones | |
-- Usage: lua mtphreak-6572.lua NVRAMfile [imei1 [imei2]] | |
-- If no IMEIs are passed, they are randomized (with respect to Luhn checksum) | |
function parseImei(imeistr) -- imei string to 12-byte table | |
local imeiTbl = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} | |
for i = 1, 15 do | |
local digit = tonumber(imeistr:sub(i,i)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"key_events": { | |
"key_unknown": "adb shell input keyevent 0", | |
"key_soft_left": "adb shell input keyevent 1", | |
"key_soft_right": "adb shell input keyevent 2", | |
"key_home": "adb shell input keyevent 3", | |
"key_back": "adb shell input keyevent 4", | |
"key_call": "adb shell input keyevent 5", | |
"key_endcall": "adb shell input keyevent 6", | |
"key_0": "adb shell input keyevent 7", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Cambridge Silicon Radio\Harmony\Default] | |
"OSD"=dword:00000000 |
This Gist is about how I use PyAudio, NumPy, and Matplotlib to plot freqency spectrum of system sound or microphone.
You can read this blog post for more detail or watch this video:
NewerOlder