$ ./atualizar.py
& env max_jobs=10 ./atualizar.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove ads from google search | |
// @namespace https://userscripts-mirror.org/users/529924 | |
// @include *://*google.com*/search?* | |
// @include *://*google.com*/#fp=* | |
// @include *://*google.com*/webhp?tab=* | |
// @include *://*google.com*/?gws_rd* | |
// @include *://*google.com*/#newwindow* | |
// @grant none | |
// @author Thales M. G. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:- use_module(library(clpfd)). | |
length_(L, Ls) :- length(Ls, L). | |
alldif([]). | |
alldif([X|Xs]) :- | |
maplist(dif(X), Xs), | |
alldif(Xs). | |
is_permutation(Xs, Ys) :- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DEFAULT_GOAL := main | |
PATSHOMEQ="$(PATSHOME)" | |
PATSCC=$(PATSHOMEQ)/bin/patscc | |
PATSOPT=$(PATSHOMEQ)/bin/patsopt | |
PATSCCFLAGS=-O2 -flto -DATS_MEMALLOC_LIBC -latslib | |
# Looks like only -latslib is necessary | |
# LDFLAGS=-L$(PATSHOME)/ccomp/atslib/lib -latslib | |
# Also, the variable MUST be called `LDFLAGS` | |
# Setting `-latslib` in `PATSCCFLAGS` does not work... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# https://unix.stackexchange.com/a/434882/164273 | |
# mozlz4.py -d < $(find ~/.mozilla/firefox/8xav21dr.default/bookmarkbackups/ | sort | tail -n1) \ | |
# | jq '.children[] | select(.root == "unfiledBookmarksFolder") | .children | sort_by(.index)' | |
from sys import * | |
import os | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mute () { | |
amixer -c 0 sset Speaker mute | |
amixer -c 0 sset Mic mute | |
amixer -c 1 sset Master mute | |
amixer -c 1 sset Headphone mute | |
} | |
unmute () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTION=="add", ATTRS{product}=="Microsoft LifeChat LX-3000" RUN+="/home/thales/bin/tmg-snd-event-handler.sh unmute" | |
ACTION=="remove", ATTRS{product}=="Microsoft LifeChat LX-3000" RUN+="/home/thales/bin/tmg-snd-event-handler.sh mute" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env stack | |
{- | |
stack --resolver lts-14.15 script | |
--package bytestring | |
--package tagsoup | |
--package wreq | |
--package lens | |
--package async | |
--package optparse-applicative | |
--package directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background:#3c3c3c; | |
color:#dbdbdb; | |
} | |
a { | |
color: #f8dd84 !important; | |
} | |
h1, h2, h3, h4, h5, h6 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- https://yairchu.github.io/posts/dtalc-with-defaultsigs.html | |
{-# LANGUAGE DeriveFunctor #-} | |
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE DeriveAnyClass #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE DefaultSignatures #-} | |
{-# LANGUAGE StandaloneDeriving #-} | |
{-# LANGUAGE DerivingStrategies #-} | |
{-# LANGUAGE GeneralizedNewtypeDeriving #-} |