This file contains hidden or 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
import java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
import java.io.UnsupportedEncodingException; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
/* | |
* This is the output : |
This file contains hidden or 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
#!/usr/bin/python3 | |
# DONE BY gemaroul & jecaudal | |
import sys | |
sys.stderr.write("becarefull to enter an odd hex\n") | |
arr = [] |
This file contains hidden or 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
Publicspeakingisveryeasy.126241207206v7809opukmq426135 | |
Publicspeakingisveryeasy.126241207205t4589opukmq426135 | |
Publicspeakingisveryeasy.126241207204o1609opukmq426135 | |
Publicspeakingisveryeasy.126241207203k2519opukmq426135 | |
Publicspeakingisveryeasy.126241207202b7559opukmq426135 | |
Publicspeakingisveryeasy.126241207201b2149opukmq426135 | |
Publicspeakingisveryeasy.126241207200q7779opukmq426135 | |
Publicspeakingisveryeasy.126241207206v7809opukma426135 | |
Publicspeakingisveryeasy.126241207205t4589opukma426135 | |
Publicspeakingisveryeasy.126241207204o1609opukma426135 |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
Publicspeakingisveryeasy.126241207200q7779/0%+-!426135 | |
Publicspeakingisveryeasy.126241207201b2149/0%+-!426135 | |
Publicspeakingisveryeasy.126241207202b7559/0%+-!426135 | |
Publicspeakingisveryeasy.126241207203k2519/0%+-!426135 | |
Publicspeakingisveryeasy.126241207204o1609/0%+-!426135 | |
Publicspeakingisveryeasy.126241207205t4589/0%+-!426135 | |
Publicspeakingisveryeasy.126241207206v7809/0%+-!426135 | |
Publicspeakingisveryeasy.126241207200q7779/0%+-1426135 | |
Publicspeakingisveryeasy.126241207201b2149/0%+-1426135 |
This file contains hidden or 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 CHAT_ID = -100424242422442442244242; | |
const TELEGRAM_TOKEN = ""; | |
const TELEGRAM_HOST = "api.telegram.org"; | |
const SPREADSHEET_ID = "" | |
const GOOGLE_CLOUD_KEY = "" | |
const nameUrlMap = new Map(); | |
const https = require('node:https'); |
This file contains hidden or 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
import { ArgumentsHost, Catch, ExceptionFilter, HttpException } from "@nestjs/common"; | |
import { Response } from "express"; | |
@Catch(HttpException) | |
export class ErrorHidingFilter implements ExceptionFilter { | |
catch(exception: HttpException, host: ArgumentsHost): void { | |
const ctx = host.switchToHttp(); | |
const response = ctx.getResponse<Response>(); | |
const status = exception.getStatus(); | |
const message = exception.getResponse(); |
This file contains hidden or 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
<html> | |
<style> | |
body, | |
html { | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
padding: 0 | |
} |
This file contains hidden or 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
server { | |
listen 80; | |
server_name example.com; | |
location / { | |
proxy_pass https://xxxx/; | |
} | |
} |
This file contains hidden or 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 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) { |
This file contains hidden or 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
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' | |
version: 2.1 | |
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. | |
# See: https://circleci.com/docs/2.0/orb-intro/ | |
orbs: | |
node: circleci/[email protected] | |
jobs: | |
main: | |
docker: |
NewerOlder