When using php's smarty you sometimes want to use { and } (curly braces) in .tpl files.
For such things you can use the {literal}{what you want to do}<!-- {} -->{/literal} statement.
Detailed explanation at the
When using php's smarty you sometimes want to use { and } (curly braces) in .tpl files.
For such things you can use the {literal}{what you want to do}<!-- {} -->{/literal} statement.
Detailed explanation at the
Spieleschuppen.de started as very informative page about games, mainly about GTA:T.
But Spieleschuppen.de is/was german only, so the English/Polish/French-Content didn't fit in that context then.
Thatswhy I decided to move spieleschuppen.de's content to a new domain called dev.dracoblue.net. But thats not all, the german content will be detected and opens german interface at spiele.dracoblue.net instead. So german users have it way more easier to access german content and all other fellows can use dev.dracoblue.net or games.dracoblue.net now!
Like ssh.com says, you need to do the following things to successfully forward an X-Server to your client. [ol]
AllowX11Forwarding yes
ForwardX11 yes
ssh -X [email protected]
declare -X DISPLAY="99.99.99.99:0.0"
(with your IP)
Elyks reported a problem #384 with current version of the pawn-highlighter for geshi. The issue was a duplicated entry for 'sizeof'.
II uploaded the
When making your urls looking better, you may want to convert a title to a url-slug.
An url-slug is in common a string containing only alphanumeric letters and '-'. Following php and lua function converts it to that format.
php:
function toSlug($str) {
return str_replace(" ","-",ereg_replace("[ ]+"," ",ereg_replace("[^ A-Za-z0-9]","",$str)));
}
lua:
function toSlug(str)
return string.gsub(string.gsub(str,"[^ A-Za-z]",""),"[ ]+","-")
end
The
toSlug function also replaces multiple spaces with one ' -' only.
You can find this Lua-How-To at luanet.net, too.