Source:
++++[>+++++<-]>-[>++++++>+++++>++<<<-]>-----.>++.<+++++++..+++.>.<----.>>+.<++++.<-.>.
Output:
mattwas'ere
| #!/usr/bin/python3 | |
| # https://gist.github.com/kezzyhko/e11e6da0de014989a476f2d256b8de27 | |
| from PIL import Image, ImageTk, PngImagePlugin | |
| import sys | |
| import numpy as np | |
| import tkinter as tk | |
| from tkinter import ttk, filedialog, simpledialog | |
| from pathlib import Path | |
| import subprocess |
Source:
++++[>+++++<-]>-[>++++++>+++++>++<<<-]>-----.>++.<+++++++..+++.>.<----.>>+.<++++.<-.>.
Output:
mattwas'ere
| import random | |
| import string | |
| import urllib.parse | |
| WEBHOOK_LINK = "your webhook service" | |
| CHAT_GPT_LINK = "https://chatgpt.com/?q=" | |
| IS_DEBUG = False | |
| ANTI_CACHE_LENGTH = 3 |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Braille translator</title> | |
| <style> | |
| .braille-6 { | |
| display: inline-grid; | |
| grid-auto-flow: column; | |
| grid-template-columns: repeat(2, 50%); | |
| grid-template-rows: repeat(3, 33%); |
| #if UNITY_EDITOR | |
| using System; | |
| using UnityEditor; | |
| using Medallion.Shell; | |
| using UnityEditor.Compilation; | |
| using UnityEngine; | |
| public static class MedallionShellTest | |
| { |
| strings $1 | grep -wFf <(grep -E '^.{4,}$' ~/words.txt) |
| @echo off | |
| echo[ | |
| echo[ | |
| echo MTB: | |
| wmic baseboard get Manufacturer, Product | |
| echo CPU: | |
| wmic cpu get Name |
| from PIL import Image | |
| DELTA_X = 17 | |
| DELTA_Y = 17 | |
| START_X = 10 | |
| START_Y = 10 | |
| # https://stackoverflow.com/a/138260/6702274 | |
| im = Image.open('Untitled.png') | |
| pix = im.load() |
| using System; | |
| using System.IO; | |
| using System.Runtime.Serialization.Json; | |
| using System.Threading.Tasks; | |
| public class JsonFile<T> : IDisposable, IAsyncDisposable | |
| { | |
| private static readonly DataContractJsonSerializer Serializer = new(typeof(T), new DataContractJsonSerializerSettings | |
| { | |
| UseSimpleDictionaryFormat = true, |
| // https://gist.github.com/kezzyhko/37260ad2a5c2a470ad41243df73ccbc1 | |
| const request = require("request"); | |
| const queryString = require("querystring"); | |
| const Promise = require("native-or-bluebird"); | |
| const jwt = require("jsonwebtoken"); | |
| const axios = require("axios"); | |
| exports.onExecutePostLogin = async (event, api) => { | |
| var LOG_TAG = '[ACTION_ACCOUNT_LINK] '; |