Skip to content

Instantly share code, notes, and snippets.

View diegorv's full-sized avatar

Diego Rossini diegorv

View GitHub Profile
@diegorv
diegorv / HKModDeps.md
Created November 5, 2025 21:03 — forked from KaanGaming/HKModDeps.md
Hollow Knight mod dependencies explained

Mod Dependencies In Scarab And What They Do

This markdown file aims to explain what each mod dependencies do and what they're useful for, then later compared in a table with features.

Table of Contents

FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

import React from 'react';
import { View, StyleSheet, ActivityIndicator } from 'react-native';
import { FlatList } from '../searchBarAnimation';
import { List, ListItem } from 'react-native-elements';
export default class Tab extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
@diegorv
diegorv / remove-twitter-likes.js
Created August 31, 2018 01:31 — forked from cacheflowe/remove-twitter-likes.js
Remove your Twitter likes
// go to your account Likes page and run this in the console:
function scrollToLoadMore() {
// keep scrolling if twitter tries to stop loading more.
// scroll up, then down to force infinite load.
window.scrollTo(0, 0);
setTimeout(function() {
window.scrollBy(0, 9999999999);
}, 200);
}
@diegorv
diegorv / javascript
Created July 18, 2018 00:24
Estoicismo Diário
var posts = document.querySelectorAll(".link.link--darken[data-action='open-post']");
for (i = 0; i < posts.length; i++) {
console.log(posts[i].getAttribute('href'));
}
https://medium.com/coffee-break-through/os-eventos-n%C3%A3o-s%C3%A3o-o-problema-suas-cren%C3%A7as-s%C3%A3o-1546ff1e1bf2
https://medium.com/coffee-break-through/a-%C3%BAnica-certeza-da-vida-tudo-vai-dar-errado-7cd9121bae3b
https://medium.com/coffee-break-through/como-ser-uma-pessoa-mais-am%C3%A1vel-4-dicas-dos-estoicos-5b6ca001ae16
https://medium.com/coffee-break-through/3-estrat%C3%A9gias-da-filosofia-para-superar-o-fim-de-um-relacionamento-c783daeeabe4
https://medium.com/coffee-break-through/marco-aur%C3%A9lio-sobre-a-motiva%C3%A7%C3%A3o-para-sair-da-cama-todas-as-manh%C3%A3s-1957f01c281f

Keybase proof

I hereby claim:

  • I am diegorv on github.
  • I am diegorv (https://keybase.io/diegorv) on keybase.
  • I have a public key whose fingerprint is 0D84 2B4B 23F1 DE3A C4E6 ADE1 ACF5 FD21 E214 28F2

To claim this, I am signing this object:

{
"afterglow_folder_icons": true,
"always_show_minimap_viewport": false,
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/1337 (SL).tmTheme",
"draw_indent_guides": true,
"draw_minimap_border": false,
"ensure_newline_at_eof_on_save": true,
"font_face": "Hack",
// Programa: Web Server com modulo ESP8266
// Alteracoes e adaptacoes: FILIPEFLOP
#include "ESP8266.h"
#include "SoftwareSerial.h"
// Cria uma serial nas portas 2 (RX) e 3 (TX)
SoftwareSerial esp8266(2 , 3);
// Define que o modulo ira utilizar a serial minhaSerial
bind "F10" "amx_on; amx_say random [ Desbugando ];amx_rcon sv_timeout 1;wait;wait;wait;wait;wait;amx_rcon sv_timeout 99999; amx_rcon sv_timeout 65;amx_execall speak buttons/button1;speak buttons/button1"
bind "F7" "amx_rcon sv_restart 1"
bind "F6" "amx_say [Cpl Off]; amx_rcon mp_friendlyfire 0; amx_rcon mp_startmoney 16000; amx_rcon mp_roundtime 2.50; amx_rcon mp_c4timer 35; amx_rcon mp_freezetime 0; amx_rcon mp_buytime 2.50; amx_rcon mp_timeleft 0; amx_rcon mp_timelimit 0; amx_rcon mp_maxrounds 0; amx_rcon sv_alltalk 0; amx_rcon mp_forcechasecam 0; amx_rcon mp_forcecamera 0; amx_rcon mp_autoteambalance 0; amx_rcon mp_limitteams 0; mp_autokick 1"
bind "F5" "amx_say [Cpl On]; amx_rcon mp_freezetime 15;amx_rcon mp_c4timer 35;amx_rcon mp_maxrounds 0;amx_rcon mp_tkpunish 0;amx_rcon mp_startmoney 800;amx_rcon mp_friendlyfire 1;amx_rcon mp_roundtime 1.75;amx_rcon mp_limitteams 0;amx_rcon mp_autoteambalance 0;amx_rcon mp_friendlyfire 1;amx_rcon allow_spectators 1;amx_rcon sv_alltalk 0;amx_rcon mp_forcecamera 2;amx_r
@diegorv
diegorv / rfid_decimal.pde
Created September 6, 2012 13:06 — forked from maniacbug/rfid_decimal.pde
Complete example for reading the 125Khz RFID module RDM630
#include <SoftwareSerial.h>
// Pin definitions
const int rfid_irq = 0;
const int rfid_tx_pin = 6;
const int rfid_rx_pin = 7;
// For communication with RFID module
SoftwareSerial rfid(rfid_tx_pin, rfid_rx_pin);