Skip to content

Instantly share code, notes, and snippets.

View Lobbyra's full-sized avatar

Jérémy Caudal Lobbyra

View GitHub Profile
@Lobbyra
Lobbyra / 42_to_\x4\x2.py
Last active March 9, 2023 17:30
42_to_\x4\x2.py
#!/usr/bin/python3
# DONE BY gemaroul & jecaudal
import sys
sys.stderr.write("becarefull to enter an odd hex\n")
arr = []
@Lobbyra
Lobbyra / script.js
Created February 26, 2022 17:25
App Script (google) code for connect circleci with telegram channel
var token = "YOUR TELEGRAM API CODE";
var telegramUrl = "https://api.telegram.org/bot" + token;
var webAppUrl = "THE URL OF THE APP SCRIPT INSTANCE"
function setWebhook() {
var url = telegramUrl + "/setWebhook?url=" + webAppUrl;
var response = UrlFetchApp.fetch(url);
}
function sendMessage(chat_id, text) {