tialaramex

550
Reputation
106 views

Registered User

Name tialaramex
Member for 1 year
Seen yesterday
Website
Location
Age
Oct
19
comment How to decode a string that has been UTF-8 encoded twice to simple UTF-8?
OK, so in this case you definitely ought to fix it in the database, for all the reasons I gave in the second paragraph. It is annoyingly easy to misconfigure PHP + MySQL and do this, I've done it myself, but fortunately I caught it pretty quickly. You can do the same decode / encode run around inside MySQL, but you need to be careful (create a backup first).
Oct
13
comment How to decode a string that has been UTF-8 encoded twice to simple UTF-8?
You never mentioned anything about PHP before. So is the data actually corrupt in the MySQL DB?
Oct
12
answered How to decode a string that has been UTF-8 encoded twice to simple UTF-8?
Sep
16
awarded  Yearling
Aug
11
comment Process ID in Java
ah, that's easy. Suppose I have several Java processes which are identical. I receive messages from them. I would like to be able to distinguish them reliably. The PID would be fine, but so would any unique identifier. Now, I could program each process to create a GUID at startup and stash it somewhere but that's a bunch of unnecessary work, isn't it?
Jul
26
comment How can I safely encode a string in Java to use as a filename ?
A problem no-one has really addressed is that there are limits on filename length and on total length of a file path, plus arbitrary limits on file names on some platforms, and even a limit on how many files can be in a particular directory. And this is a Java question, so we can't be sure the software will only run on (fill in the name of your favourite OS here). Thus I think any adequate solution would want to consider how to retry or what else to do if the name tried is rejected by the OS.
Jul
26
comment How can I safely encode a string in Java to use as a filename ?
A collision would have to be deliberate, the original question doesn't talk about these strings being chosen by an attacker.
Jul
26
comment Hex to Ascii? Java
The question says ASCII, so the questioner should probably write ASCII in as the encoding.
Jul
24
comment Limit execution time of an function or command PHP
What do you want to happen if the timer expires while function1 is still running?
Jul
24
comment Surprising software vulnerabilities or exploits?
adding 'subjective' tag since there's no objective way to answer which is "most" strange or surprising.
Jul
24
revised Surprising software vulnerabilities or exploits?
edited tags
Jul
24
comment Surprising software vulnerabilities or exploits?
Among other things: Reverse optimisation. Take those hardware designers who've spent years figuring out how to get a function with least transistors, least power, most quickly, and put them in a new frame of mind where consistency is everything. If the device consistently takes 100ms to do a transaction and eats battery at a constant 150mW when running - then the side channel attack fails, and the customer may be willing to eat the increased hardware cost and reduced battery life for that benefit.
Jul
22
comment Find most similar string
Needs a definition of the function "howSimilarIs(string, string)" for anyone to answer it. If the definition is complicated, then implementing that is probably the bulk of the work.
Jul
22
answered What is the best way to get a string that fits the provided width in pixels?
Jul
21
comment If Ascii operators are definable, why not Unicode Symbols?
I've added the f# tag, but to do so I had to get rid of the math tag. I think that's a fair trade (the core problem here is something f# people might now about, rather than something for mathematicians to ponder)
Jul
21
comment What is/was so terrific about BeOS
It's a little worse than you think. The BeOS Window class inherited from Thread. So you absolutely without question would get a separate OS thread for every window in your application. If that didn't suit your application's design (it doesn't for most large GUI applications) then you'd need to re-design the application to get it to work well in BeOS. This is all the crazier because there was a relatively low system-wide thread limit. It's a radical thought experiment (like "What if all the Strings in my program were versioned filesystem objects?") that somehow got released in a commercial OS.
Jul
21
comment What is/was so terrific about BeOS
1. BeOS didn't have a microkernel. So it wasn't a successful microkernel implementation. 2. Porting Mozilla to BeOS was a tremendous pain, in part because BeOS had fairly poor POSIX compliance. The stuff about multimedia is a retro-fit. You can easily find early Be Inc. material crowing about how it'll be a great web server, or great for hardware tinkering, or any number of other things. It was a solution looking for a problem.
Jul
21
answered Sorting SPARQL results by date
Jul
21
comment EngineYard SHA1 Contest Approaches
If SHA1 was an ideal cryptographic hash then brute force would definitely be the best way. Since we know that SHA1 is less than ideal it opens the possibility that one of the flaws will make some other approach practical. But probably not, and almost certainly not in time for this contest.
Jul
17
comment Need help on BMP to JPEG conversion
Is there a good reason why you can't use IJG's libjpeg?
Jul
17
comment Why does a 32-bit OS support 4 GB of RAM?
You can check out how many physical and virtual address bits actually work on your CPU with CPUID (on x86) or the analogous features on other families of processors. You can also see it in Linux's /proc/cpuinfo My cheap corner store PC has 40 bits of physical addresses and 48 bits of virtual. The old Xeons in our server rack have only 36 bits of physical addresses (no matter, they can only take 16GiB of DIMMs)
Jul
17
comment Why does a 32-bit OS support 4 GB of RAM?
PAE doesn't allow you to address more than 4GiB unless the you in question is running in supervisor mode and considers that rewriting the page table between accesses still constitutes "addressing" at which point you could nearly argue that you can "address" the data on disk too... PAE is a neat hack, but it's just a hack.
Jul
17
comment Why does a 32-bit OS support 4 GB of RAM?
or more, depending on what size your machines words are
Jul
17
comment strict aliasing
Looks like a typo “-fno-strict-aliasing [default] and -fno-strict-aliasing” I'm guessing the default is actually -fstrict-aliasing (at least in modern GCC) rather than -fno-strict-aliasing, but in any case one of the two GCC options listed should be -fstrict-aliasing, and right now they both say -fno-strict-aliasing.
Jul
17
awarded  Organizer
Jul
17
accepted git equivalent of svn status -u
Jul
16
comment Distribute a application to the public so they can compile, without revealing the source
Let's take an easy example. Linux and BSD have some system structures which are different sizes. When you compile from C to LLVM's intermediate representation, the header file which declares these structures on the platform where you compile (say, OpenBSD) will decide how big the compiler thinks the structure is. When you try to use that LLVM intermediate representation to build a running binary on Linux, the structure size will be wrong and your program will crash. So, no, doesn't seem good enough to me.
Jul
16
answered git equivalent of svn status -u
Jul
16
answered web page memory usage in firefox
Jul
16
comment Distribute a application to the public so they can compile, without revealing the source
The LLVM intermediate representation has already been compiled, and thus any build-time changes (e.g. different size of a structure on one persons system from another) won't be reflected in the resulting binaries. So this will usually only work in cases where distributing binaries would have been just as effective.
Jul
16
comment Distribute a application to the public so they can compile, without revealing the source
This is called "shrouded source" and it used to be pretty common for e.g. UNIX software.
Jul
16
comment In php, how do logical operators work _with non-booleans_?
I believe this is an accurate characterisation, but I have not tested it extensively so I can't promise there aren't any kinks.
Jul
16
comment In php, how do logical operators work _with non-booleans_?
not quite, as I explained in my edited answer, there are some surprising rules about how operands are coerced to boolean. If $dog is "" or "0" then it is false, but if it is "Hello" or even "False" then it is true.
Jul
16
answered In php, how do logical operators work _with non-booleans_?
Jul
16
answered Have you ever written code that uses the procfs?
Jul
14
answered UTF8 Filenames in PHP and Different Unicode Encodings
Jul
10
comment Are GUIDs good passwords?
@BCS Huh? Using MD5(password) is a terrible idea for reasons that have been covered extensively elsewhere, but it doesn't truncate anything.
Jul
8
comment How to include variable in SPARQL query using PHP
You could use pastebin.com and write the resulting URLs into a comment here. Since a manual query works, I suppose the problem must be with the PHP, but I can't see how. So maybe include a snippet of PHP that doesn't work, as well as the text of the manual query that worked. Use copy-paste to avoid transcription errors.
Jul
8
comment How to include variable in SPARQL query using PHP
Have you tried manually executing your desired query to check that it actually works?
Jul
8
comment How to include variable in SPARQL query using PHP
I think to get more helpful answers you will need to provide us a sample of the RDF you are querying, and the value of $abc1 you are using to test. You might also want to specify (if you know) which RDF storage engine and/or SPARQL query engine you are using.
Jul
8
comment How to include variable in SPARQL query using PHP
@Prefix is a Turtle feature. This is SPARQL. It's just PREFIX in SPARQL, not @Prefix.
Jul
8
answered How to include variable in SPARQL query using PHP
Jun
30
answered SHA-1 Hashes Mixed with Strings
Jun
30
answered customizing default values for HTTP request headers in Internet Explorer
Jun
30
comment Is USB power always enabled ? And if not, how to write a driver.
"Writing software won't help ... "best be done with the driver" A driver is just software. So Mr Grieves can help himself by writing software. It shouldn't even be necessary to write a potentially scary low-level kernel driver. Albinofrenchy's post points to how to put a USB device into the mode where the controller sends it 500mA (the max specified) from userspace in Linux.
Jun
29
accepted Why does this Prolog predicate works?
Jun
29
answered Why does this Prolog predicate works?
Jun
29
awarded  Scholar
Jun
29
answered Browser fails to recognise Content Type header correctly
Jun
29
answered What is the Maximum Java Heap Space for SuSE Linux