This file contains hidden or 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
<?php | |
namespace Datio\ActionLogAndLimit; | |
class Listeners | |
{ | |
public static function addonPostInstallListener( | |
\XF\AddOn\AddOn $addOn, | |
\XF\Entity\AddOn $installedAddOn, | |
array $json, |
This file contains hidden or 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
// This was a Secret Gist that described a way to bypass the paywall of JScramler, a javascript obfuscation PaaS. | |
// The developer patched the logic error soon after it was reported. | |
// At the time of this gist update, a free and open source alternative to JScrambler exists: https://github.com/javascript-obfuscator/javascript-obfuscator/ | |
// Usage: New Project -> Advanced Users -> $this -> select Standard Mode -> select desired transformations -> Submit | |
// After downloading the obfuscated project it is trivial to change the date timestamp and remove the 1-day demo limit. | |
// Note: This will not bypass the daily limits for the current user. However, the app does not throttle per IP. | |
$('input[disabled=disabled], textarea[disabled=disabled]').prop('disabled', false); |
This file contains hidden or 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
exports.dark = { | |
subpx: 'vec4(75,75,75,1)', //vec4(0,0,0,1) | |
dlgbg: hexs('505354'), //8F8F94 :top bar background | |
dlghi: hexs('4d4f50'), //9996e2 :seperator sides hover | |
sliderbase: 'vec4(230,230,230,1)', //vec4(0,0,0,0.1) | |
splitter1: hexs('333333'), //333333 :seperator sides | |
splitter2: hexs('2e2f30'), //444444 :seperator inner | |
splitter3: hexs('444748'), //777777 :seperator inner active | |
dlgtxt: hexs('F2F2F2'), //FFFFFF :color button text | |
defbg2: hexs('ffffff'), //000000 |
NewerOlder