Source:
++++[>+++++<-]>-[>++++++>+++++>++<<<-]>-----.>++.<+++++++..+++.>.<----.>>+.<++++.<-.>.
Output:
mattwas'ere
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] '; |
// https://www.programiz.com/csharp-programming/online-compiler/ | |
// Online C# Editor for free | |
// Write, Edit and Run your C# code using C# Online Compiler | |
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using Pure = System.Diagnostics.Contracts.PureAttribute; | |
public class Test { |