notes
in the context of WoW, at least:
local references to individual elements is faster than localizing a global table, that is:
is faster than
table.element
is faster than table["element"]
local references to individual elements is faster than localizing a global table, that is:
local ref = _G.table.element
-- use ref
is faster than
local table = _G.table
-- use table.element
Entry tags:
I am t3h 1337 h4xx0r!
no, not really. but I do appreciate the whole modular BIOS idea a lot. especially since those asses at Gigabyte never bothered to update the third‐party stuff.
Entry tags:
peeve:
people who have their servers set up to redirect / to /index.php or some shit, instead of doing the Right Thing™ and setting a DirectoryIndex, or whatever their respective server uses.
and mod_rewrite is sweet. period. unlike this damned video card. I mean, it was a couple of years ago, but now? feh.
need to change the formatting code again. dammit.
and mod_rewrite is sweet. period. unlike this damned video card. I mean, it was a couple of years ago, but now? feh.
need to change the formatting code again. dammit.
Entry tags:
(no subject)
converting something from VB6 to C# isn’t difficult, per se, but it is niggling and time‑consuming.
although it has taught me how to use the
although it has taught me how to use the
ICollection
interface... (don’t ask. that part sucked.)Entry tags:
(no subject)
what’s the point of having a database field of type
phpBB, table
finally got the CVS repository for LJ.NET straightened out, though, which is good. note for future: experiment on local repository, not the main one.
VARCHAR(32)
, if the form field that it gets set from has a maxlength
of 14?phpBB, table
prefix_users
, field user_dateformat
. it’s really annoying, since my preferred setting is l, jS F Y, H:i:s. *sigh* it would even work if date()
had something like strftime()
’s %T
.finally got the CVS repository for LJ.NET straightened out, though, which is good. note for future: experiment on local repository, not the main one.