Skip to content

Instantly share code, notes, and snippets.

@alexbcberio
alexbcberio / .php-cs
Last active April 12, 2018 12:30
php-cs fixer preferred rules
<?php
$finder = Symfony\Component\Finder\Finder::create()
->files()
->in(__DIR__)
->exclude("vendor")
->ignoreDotFiles(true)
->ignoreVCS(true);
return PhpCsFixer\Config::create()

Keybase proof

I hereby claim:

  • I am alexbcberio on github.
  • I am alexbcberio (https://keybase.io/alexbcberio) on keybase.
  • I have a public key ASDN1TFl5leSpY44HRxfKRkLajS6VL6q1gu5KS4u6tMa1go

To claim this, I am signing this object:

@alexbcberio
alexbcberio / style.user.css
Last active May 18, 2024 22:17
Userstyle to hide replies of Tweets
@-moz-document regexp("^https:\/\/(twitter|x).com\/\w+\/status\/[0-9]+(\?s=[0-9]+)?") {
main [data-testid="primaryColumn"] section > div > div > div {
--transition-duration: .2s;
transition: filter var(--transition-duration) ease-out;
}
main [data-testid="primaryColumn"] section > div > div > div:not(:first-child):not(:hover) {
--transition-duration: .1s;
filter: blur(1rem);