Skip to content

Instantly share code, notes, and snippets.

hhub

Github CI

This repository provides the source code of the new HHub API, which powers Homebrew Hub, the largest digital collection of Game Boy and Game Boy Color homebrews, playable natively in your browser.

Table of contents:

@avivace
avivace / processo_uva.md
Last active November 12, 2020 14:46
Processo Uva
@avivace
avivace / deplacement_autofiller.js
Created October 30, 2020 09:54
Attestation de déplacement dérogatoire autofiller https://media.interieur.gouv.fr/deplacement-covid-19/
/*
Instructions here
*/
javascript: {
// Set date now
var date = new Date();
var today = String(date.toISOString().slice(0, 10));
@avivace
avivace / telegramRestore.md
Last active May 3, 2024 15:15
Restore deleted Telegram messages from groups

Restore deleted Telegram messages, medias and files from groups

There's not telegram API method for this, we need to call MTProto methods to retrieve messages from the "Recent Actions" (Admin Log) since deleted messages (and medias) gets moved there for 48 hours before the permanent deletion.

from telethon import TelegramClient, events, sync
from telethon.tl.types import InputChannel, PeerChannel
@avivace
avivace / keybase.md
Last active May 21, 2018 08:10
Keybase Proof

Keybase proof

I hereby claim:

  • I am avivace on github.
  • I am avivace (https://keybase.io/avivace) on keybase.
  • I have a public key whose fingerprint is D486 4425 806B BCE5 3350 54B0 1983 72FB 27A9 ED4F

To claim this, I am signing this object:

From 88a5973aeac2d53ba855cf2d3a9ce75ca65b4dba Mon Sep 17 00:00:00 2001
From: Antonio Vivace <puma95.95@gmail.com>
Date: Fri, 12 Jan 2018 13:29:13 +0100
Subject: [PATCH] Fix wrong font width
---
src/display.rs | 2 +-
src/renderer/mod.rs | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
@avivace
avivace / dennistartup
Last active January 19, 2016 10:17
Denni Startup
#!/bin/bash
#
# teamspeak3 Start/Stop/Restart Teamspeak service
#
# chkconfig: 2345 98 8
# description: Start/Stop/Restart the Teamspeak voice server
# install: chkconfig --add teamspeak3
# uninstall: chkconfig --del teamspeak3
# avivace/2016
@avivace
avivace / av_panickill.ahk
Last active January 2, 2016 15:07
Kills active process on CTRL+ALT+F4
;; https://autohotkey.com/download/ahk-install.exe
^!F4::
WinGet, active_id, PID, A
run, taskkill /PID %active_id% /F,,Hide
return