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
[Firefox 57.0b11->65.0b12 Developer Edition] | |
Tab Center Redux 0.5.1 zDark Modern Theme | |
/* Place the Code below inside the chrome folder in a file named userChrome.css */ | |
[%APPDATA%\Mozilla\Firefox\Profiles\[YourProfileID].dev-edition-default\chrome\userChrome.css */ | |
@namespace http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul;// userChrome.css JZersche // | |
#navigator-toolbox{margin-top:1px}#TabsToolbar{visibility:collapse!important}#main-window{--toolbar-bgcolor:#282C30!important}#urlbar{background:#1f2226;border:1px solid #33383c}#pageAction-urlbar-reload-in-urlbar_exe-boss{filter:invert(100%)}#sidebar-box[sidebarcommand="_0ad88674-2b41-4cfb-99e3-e206c74a0076_-sidebar-action"]{overflow:hidden!important;min-width:32px!important;max-width:32px!important;position:relative!important;top:89px!important;transition:all .2s ease!important;border-right:2px solid #0088eeff!important;z-index:2!important}#sidebar-box[sidebarcommand="_0ad88674-2b41-4cfb-99e3-e206c74a0076_-sidebar-action"] #sidebar{position: |
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
[Firefox 57.0b11->65.0b12 Developer Edition] | |
Tab Center Redux 0.5.1 zDark Modern Theme | |
/* Place the Code below inside the chrome folder in a file named userChrome.css */ | |
[%APPDATA%\Mozilla\Firefox\Profiles\[YourProfileID].dev-edition-default\chrome\userChrome.css */ | |
@namespace http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul;// userChrome.css JZersche // | |
#navigator-toolbox{margin-top:1px}#TabsToolbar{visibility:collapse!important}#main-window{--toolbar-bgcolor:#282C30!important}#urlbar{background:#1f2226;border:1px solid #33383c}#pageAction-urlbar-reload-in-urlbar_exe-boss{filter:invert(100%)}#sidebar-box[sidebarcommand="_0ad88674-2b41-4cfb-99e3-e206c74a0076_-sidebar-action"]{overflow:hidden!important;min-width:32px!important;max-width:32px!important;position:relative!important;top:89px!important;transition:all .2s ease!important;border-right:2px solid #0088eeff!important;z-index:2!important}#sidebar-box[sidebarcommand="_0ad88674-2b41-4cfb-99e3-e206c74a0076_-sidebar-action"] #sidebar{position: |
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
/* Skin Created by JZersche */ | |
/* Date Created: 3/21/2017 */ | |
/* Updated: 8/19/2017 */ | |
/* Version: 0.96 */ | |
/* Firefox zDark Theme */ | |
/* Recommended Addons */ | |
/* Tab Counter can be downloaded from: | |
addons.mozilla.org/en-US/firefox/addon/tab-counter */ |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<audio controls> | |
<source src="http://stream.dubbase.fm:7002/;"> | |
</audio> | |
</body> | |
</html> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.error {color: #ff0000;} | |
</style> | |
</head> | |
<body> | |
<form method="post"> | |
<input type="text" name="text" value="<?php $text?>"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.error {color: #ff0000;} | |
</style> | |
</head> | |
<body> | |
<?php |
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
for($i=0;$i<=100;$i++){ | |
echo substr(str_shuffle($string='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'),0,5). | |
'-'.substr(str_shuffle($string='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'),0,5). | |
'-'.substr(str_shuffle($string='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'),0,5).'<br />'; | |
} |
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 SRO_VT_SHARD; | |
SELECT innertable.MonsterID, | |
innertable.Monster, | |
innertable.ItemID, | |
_RefObjCommon.CodeName128 AS Item | |
FROM (SELECT _RefObjCommon.CodeName128 AS Monster, | |
_RefMonster_AssignedItemDrop.RefMonsterID AS MonsterID, | |
_RefMonster_AssignedItemDrop.RefItemID AS ItemID | |
FROM _RefMonster_AssignedItemDrop, _RefObjCommon |
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
$Rate = 1.0*10; // x10 Experience | |
for | |
( | |
$Multiplier=$Multiplier, $Level=1, $Experience=1; | |
$Level<=165; | |
$Multiplier+=1.0/$Rate, $Level+=1, $Experience+=50 | |
) | |
{ |