Skip to content

Instantly share code, notes, and snippets.

@DnyaneshwarWagh
DnyaneshwarWagh / README.md
Created October 11, 2023 18:48 — forked from h4ckerman69/README.md
UPDD escape

Tested with UPDD_07_01_59.dmg, but should work with newer versions as well.

Download latest version: touch-base.com (please use temporary email) 100% working download: youtube.com/watch?v=odqYsHNl6qM Please download with github.com/KristianAskk/Infinite-Storage-Glitch.

Instructions

  1. install and start UDPP (with all the steps needed for setup). Use a temporary email address while allowing internet connections until the software works in test mode.
@fedebabrauskas
fedebabrauskas / encomiendas.json
Created March 19, 2023 05:11
JSON con las empresas de encomiendas de Tres Cruces
[
{ "id": 1, "name": "Agencia Central" },
{ "id": 2, "name": "BRUNO" },
{ "id": 3, "name": "Chadre" },
{ "id": 4, "name": "CITA" },
{ "id": 5, "name": "Copay" },
{ "id": 6, "name": "COT" },
{ "id": 7, "name": "COTMI" },
{ "id": 8, "name": "CROMIN" },
{ "id": 9, "name": "Cynsa" },
@fedebabrauskas
fedebabrauskas / barrios.json
Created March 19, 2023 04:56
JSON con los barrios de Montevideo (según Wikipedia)
[
{ "id": 1, "name": "Aguada" },
{ "id": 2, "name": "Aires Puros" },
{ "id": 3, "name": "Atahualpa" },
{ "id": 4, "name": "Bañados de Carrasco" },
{ "id": 5, "name": "Barrio Sur" },
{ "id": 6, "name": "Belvedere, Paso Molino" },
{ "id": 7, "name": "Brazo Oriental" },
{ "id": 8, "name": "Buceo" },
{ "id": 9, "name": "Capurro, Bella Vista, Arroyo Seco" },
@844196
844196 / horagai
Created May 16, 2015 12:59
去ってください、そして、上手に言語を使用してください; I ngua.Useは言語です、そして、そして、見るために、それは激しく動きます; a.。シェルシェル
ぬあのようにあのようにア紫やおおお
chi枯れしぼむ・.・(小さな声)
MUR大変だった向こう脛ーこんにちは
重い。... これ ... ああ、とてもすでに今日、
それがそのようなキツいんすでも、私は好きでしょう、そして辞職するために既に来るために、なんで。何かがぶっとぅです。-
どのようにする起こるか〜ナ・トグや〜
彼は移動します -- それは迅速です...
ワイシャツすでに…ずぶぬれになります
洗面所のケースは、元気を回復します
2つのケース
@cristiroma
cristiroma / htaccess
Created March 27, 2017 08:10
.htaccess file for production
FileETag MTime Size
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access 1 month"
ExpiresByType text/html "access 1 month"
# CSS
ExpiresByType text/css "access 1 year"
ExpiresByType application/javascript "access 1 year"
@devfraga
devfraga / modelo.md
Created May 6, 2024 21:58
Modelo contato freela

Modelo e-mail

Modelo 1


Assunto: Alcance mais clientes para sua empresa de forma eficaz.

Olá [Nome do Proprietário] ou [Empresa],

@mdonkers
mdonkers / server.py
Last active May 6, 2024 23:32
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
License: MIT License
Copyright (c) 2023 Miel Donkers
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
@liam-russell
liam-russell / Readme.md
Last active May 6, 2024 23:30
TP-Link Kasa Smart Plug - get energy consumption statistics as a CSV file

TP-Link Kasa Smart Plug - get energy consumption statistics as a CSV file

Background

The TP Link Kasa smart switches log energy consumption data over time, however the app is very limited and won't let you get out data, graph it or see historical usage. This script extracts and saves to a CSV file.

The python-kasa library is used to communicate with the Kasa switch.

Requirements

  • Python must be installed
  • You must be on the same wifi network as the Kasa switch
@russellmcc
russellmcc / fish.el
Last active May 6, 2024 23:29
How to use fish shell paths from emacs
(let*
((fish-path (shell-command-to-string "/opt/homebrew/bin/fish -i -c \"echo -n \\$PATH[1]; for val in \\$PATH[2..-1];echo -n \\\":\\$val\\\";end\""))
(full-path (append exec-path (split-string fish-path ":"))))
(setenv "PATH" fish-path)
(setq exec-path full-path))