hyuri: (Default)
2010-12-30 08:31 pm
Entry tags:

(no subject)

if boolean_value then
    some_function(false)
else
    some_function(true)
end

or
some_function(not boolean_value)

hm.
hyuri: (Default)
2010-12-02 04:20 pm
Entry tags:

notes

in the context of WoW, at least:

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
hyuri: (Pleased)
2006-02-28 10:35 pm
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.
hyuri: (Default)
2004-10-27 07:13 am
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.
hyuri: (Thoughtful)
2004-10-22 03:58 am
Entry tags:

early morning musing (in Lisp)

y’know, it’s really too bad I can’t set Windows up with something like this. )
hyuri: (Big eyes)
2004-10-15 09:50 am
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 ICollection interface... (don’t ask. that part sucked.)
hyuri: (Mood)
2004-10-14 12:46 pm
Entry tags:

(no subject)

what’s the point of having a database field of type 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.