Skip to content

Instantly share code, notes, and snippets.

@alexbcberio
alexbcberio / style.user.css
Last active September 10, 2020 09:01
Userstyle to hide replies of Tweets
/* ==UserStyle==
@name Hide Twitter replies
@namespace https://github.com/alexbcberio
@version 1.0.1
@homepageURL https://github.com/alexbcberio
@updateURL https://gist.githubusercontent.com/alexbcberio/3fdbcb1458399383c774d8f9c0767e6d/raw/style.user.css
@description Hides Tweet replies
@license MIT
@author alexbcberio
==/UserStyle== */

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 / .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()