I hereby claim:
- I am vctls on github.
- I am vctls (https://keybase.io/vctls) on keybase.
- I have a public key ASAK4EAZSny4yzL8kgeCdHsEF9aNAijAWf6E1M-BJ0vx4Ao
To claim this, I am signing this object:
| /*===========================*/ | |
| /* Individual column filters */ | |
| /*===========================*/ | |
| var $t = $('#datatable'); | |
| var $dt = $t.DataTable(); | |
| var $thead = $t.find('thead'); | |
| var $tr = $("<tr role='row'></tr>").appendTo($thead); | |
| var $visiCols = $dt.columns(':visible'); | |
| // Add headers. |
| var $t = $('#datatable'); | |
| var $dt = $t.DataTable(); | |
| /*===================*/ | |
| /* Show/hide buttons */ | |
| /*===================*/ | |
| var $toolbar = $("<div class='toolbar'></div>"); | |
| $dt.columns().every(function () { | |
| var that = this; | |
| console.log(that.header().innerHTML); |
| // ==UserScript== | |
| // @name Wide Jenkins | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Display pipeline options in wide screen. | |
| // @author Victor Toulouse | |
| // @match http://jenkins-ci.org | |
| // @grant none | |
| // ==/UserScript== |
| /* ==UserStyle== | |
| @name Alcatel-Lucent Rainbow, wide and dark | |
| @namespace github.com/openstyles/stylus | |
| @version 0.1.5 | |
| @description Make Alcatel-Lucent's Rainbow web app use the full width and dark colors. | |
| @author vctls | |
| ==/UserStyle== */ | |
| @-moz-document domain("web.openrainbow.com") { | |
| /* Make the main container use the window full width. */ | |
| .mainArea { |
| /* ==UserStyle== | |
| @name symfony.com - 25/05/2020 à 15:29:45 | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description A new userstyle | |
| @author Me | |
| ==/UserStyle== */ | |
| @-moz-document url-prefix("https://symfony.com/doc/") { | |
| .container { | |
| max-width: 100% !important; |
I hereby claim:
To claim this, I am signing this object:
| <body> | |
| <html lang="en"> | |
| <style type="text/css"> | |
| .container { | |
| height: 300px; | |
| background: darkgrey; | |
| resize: both; | |
| overflow: auto; | |
| display: flex; | |
| flex-wrap: wrap-reverse; /* Wraps from bottom right to top left. */ |
| // ==UserScript== | |
| // @name Element Voice Messages | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Adds a button to record voice messages. Click the button to start recording, click again to stop. | |
| // @author vctls | |
| // @match https://app.element.io/ | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name URL Scam Detection | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Warns if the text of a clicked link looks like a domain that does not match the href attribute. | |
| // @author vctls | |
| // @match * | |
| // @grant none | |
| // ==/UserScript== |
| <?php | |
| $phpString = '$values = ["test"];'; | |
| $code = <<<PHP | |
| <?php | |
| \$values = []; | |
| \$string = <<<'STRING' | |
| $phpString | |
| STRING; | |
| eval(\$string); | |
| echo serialize([\$values]); |