Skip to content

Instantly share code, notes, and snippets.

View Shujito's full-sized avatar
🗿
yes the whole earth

Alberto Ramos Shujito

🗿
yes the whole earth
View GitHub Profile
@Shujito
Shujito / TextWatcherAdapter.java
Created October 9, 2019 23:19
Utilidad para usar TextWatcher como lambda en TextView::addTextChangedListener
public interface TextWatcherAdapter extends TextWatcher {
enum Action {
beforeTextChanged,
onTextChanged,
afterTextChanged
}
default void beforeTextChanged(CharSequence s, int start, int count, int after) {
this.action(Action.beforeTextChanged, s, start, count, after);
}
@Shujito
Shujito / toh264.sh
Created March 4, 2020 19:47
convert videos to h264 baseline profile level 3.0
#/bin/sh
if ! [ "$1" ];
then
echo "where file"
exit
fi
filename="${1%.*}"
extension="${1##*.}"
@Shujito
Shujito / canvas.html
Last active July 15, 2023 04:50
Ejemplo Canvas HTML5
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
html {
height: 100%;
display: flex;
align-items: center;
@Shujito
Shujito / restore-hosts.sh
Created August 28, 2023 05:57
Update/Restore unified hosts file.
if [ -s /etc/hosts.bak ]; then
echo '[ Restoring your original hosts file ]'
sudo mv /etc/hosts.bak /etc/hosts
echo '[ Done! ]'
else
echo '[ There is nothing to do... ]'
fi
@Shujito
Shujito / spotihosts
Last active November 29, 2023 06:56
The hosts file entries to block Spotify audio ad servers.
# taken from here:
# https://www.reddit.com/r/Piracy/comments/4kn6rq/comprehensive_guide_to_blocking_ads_on_spotify/
0.0.0.0 adclick.g.doublecklick.net
0.0.0.0 adeventtracker.spotify.com
0.0.0.0 ads-fa.spotify.com
0.0.0.0 analytics.spotify.com
0.0.0.0 audio2.spotify.com
0.0.0.0 b.scorecardresearch.com
0.0.0.0 bounceexchange.com
0.0.0.0 bs.serving-sys.com
@Shujito
Shujito / bookmarklets.md
Last active February 9, 2024 21:37
Useful bookmarklets

Useful Bookmarklets

How to use:

Create a bookmark and replace URL with either of the listed codes

Easier: (google chrome)

  • Triple click to the whole thing
  • COPY!
  • Now hit [CTRL] + [D]