9,248 reputation
1028
bio website youtube.com/user/patashu
location Sydney, Australia
age 22
visits member for 2 years, 6 months
seen 11 mins ago
stats profile views 550

Hi! I'm into programming, composing 8-bit music in Famitracker, playing and creating charts for rhythm games like Stepmania and Dance Dance Revolution, watching speedruns and TASes (not good enough to make them!), shmups, roguelikes, tower defenses, maths, science, logic puzzles and more. I upload all my music to my youtube channel if you're interested.


26m
comment Health for each enemy
Make sure that thealth is an instance variable (-> each instantiation has its own copy), not a static or global variable.
48m
comment I try to query a mysql column which has the name “5”. This outputs the wrong column which has the name “22”
Having column names that start with a number is asking for trouble.
50m
comment php - split by unknown regular expression
You have it backwards, you need to escape . when it's outside of a character class and not when it is.
1h
revised php - split by unknown regular expression
added 163 characters in body
1h
answered php - split by unknown regular expression
13h
comment graph representation with minimum cost (time and space)
Does it have to be an array? Can it be an ArrayList?
1d
comment how to decrypt data with postgresql - dukpt
Postgresql supports writing functions in a variety of languages: postgresql.org/docs/9.3/static/xplang.html
1d
comment Understanding a Java Regular Expression for an Email Document
Read starting here: regular-expressions.info/reference.html It's a combination of two advanced features.
1d
comment How to get best match using java.util.regex.Pattern
Imagine a directed graph of patterns, where more specific patterns are children of less specific patterns. (If you can't, the question is meaningless). Apply patterns from most specific to least specific, such that you never apply a pattern unless all its children are applied.
1d
comment PHP String Encrypt and Decrypt?
@夏期劇場 The result of encryption is binary data. If you need it to be human readable, use base64 or hex encoding on it. 'Can't I change the length of key value?' Different symmetrical encryption algorithms have different requirements for key value. 'and the LENGTH of output...' The length of the encrypted text has to be at least as long as the original text, or else there is not enough information to recreate the original text. (This is an application of the Pigeonhole principle.) BTW, you should use AES instead of DES. DES is easily breakable and not secure anymore.
1d
comment PHP String Encrypt and Decrypt?
base64 is not encryption, it is an encoding.
1d
comment PHP String Encrypt and Decrypt?
Eww, DES. Where's AES?
1d
comment PHP String Encrypt and Decrypt?
@夏期劇場, You do not 'salt' symmetrical encryption, you use a key. A key must be kept secret. A salt can be public without harming security (as long as everyone's salt is different), and it is a term used in hashing passwords.
1d
comment replacing word with another word from the string in python
regular-expressions.info/reference.html The \b meta character matches on word boundaries, as in, between a word and space or word and symbol. e.g. \by\b will match ONLY the word y on its own.
1d
comment Can a website be made without JS or others in Python instead of JS
Javascript is the only client-side programming language that 'runs natively in the browser', but you can write server-side in almost everything.
1d
comment PHP String Encrypt and Decrypt?
@Rogue He doesn't want a hash, he wants symmetric encryption (like AES), he just doesn't know what it's called. (And now he does :) )
2d
comment How to query “latest questions” effectively?
If you have an index on timestamp, selecting the top whatever ordered by timestamp will be very fast.
2d
revised Storm ClassNotFoundException
added 22 characters in body; edited title
2d
comment Update all values at a time in HashMap
Why can you not use a for loop?
2d
comment Maps (hashtables) in the real world
The only reason why you'd use a Map over e.g. an array list of the key value pairs is because of the fast lookup, which is why you're having trouble explaining it (it doesn't do a physically distinct task, it's just an optimization). Discussing map is pointless unless you discuss WHY map exists at all.