23
votes
23answers
1k views
Why should I use a human readable file format?
Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn't the case?
EDIT:
I did have this as an explanation when initially posting the …
23
votes
7answers
7k views
How to get UTF-8 working in java webapps?
I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.
My setup is the …
11
votes
5answers
206 views
Signup or Invitation Email Verification w/o Database
I'd like to keep my database clean of stale almost-accounts, and I was thinking about making new signups and invitations put their data into the welcome email as an encrypted or hashed url. Once the …
11
votes
8answers
3k views
PHP: Detect encoding and make everything UTF-8
Hello!
I'm reading out lots of texts from various RSS feeds and inserting them into my database.
Of course, there are several different character encodings used in the feeds, e.g. UTF-8 and …
11
votes
4answers
2k views
Best practice: escape, or encodeURI / encodeURIComponent
When encoding a query string to be sent to a web server - what is the best practice to use from javascript:
Use escape:
escape("% +&=");
OR
use encodeURI() / encodeURIComponent()
…
10
votes
5answers
565 views
How can I generate a unique, small, random, and user-friendly key?
A few months back I was tasked with implementing a unique and random code for our web application. The code would have to be user friendly and as small as possible, but still be essentially random …
9
votes
6answers
219 views
Guessing the encoding of text represented as byte[] in Java
Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely encoding used (in …
9
votes
8answers
748 views
How does a file with Chinese characters know how many bytes to use per character?
I have read Joel's article "The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)" but still don't understand all the details. …
9
votes
4answers
903 views
How Can I Best Guess the Encoding when the BOM (Byte Order Mark) is Missing?
My program has to read files that use various encodings. They may be ANSI, UTF-8 or UTF-16 (big or little endian).
When the BOM (Byte Order Mark) is there, I have no problem. I know if the file is …
8
votes
5answers
490 views
Why do real-world servers prefer gzip over deflate encoding?
We already know deflate encoding is a winner over gzip with respect to speed of encoding, decoding and compression size.
So why do no large sites (that I can find) send it (when I use a browser that …
8
votes
2answers
1k views
Is this the correct way to send email with PHP?
I'm a bit worried if this function sends emails that can be recognized correctly on the majority of email and webmail clients the way it should, specifically I'm most concerned about this doubts:
…
8
votes
4answers
366 views
Obscure / encrypt an order number as another number: symmetrical, “random” appearance?
Client has an simple increasing order number (1, 2, 3...). He wants end-users to receive an 8- or 9- digit (digits only -- no characters) "random" number. Obviously, this "random" number actually has …
8
votes
3answers
3k views
How to encode a URL in Javascript?
How do you safely encode a URL using Javascript such that it can be put into a GET string?
var myUrl = "http://example.com/index.html?param=1&anotherParam=2";
var myOtherUrl = …
7
votes
5answers
263 views
enabling UTF-8 encoding for clojure source files.
Hi all,
I'm working on a project which involves maven, java and clojure. The problem I'm facing is this, I have some UTF-8 chars in my clojure source files because of which my source code is not …
7
votes
3answers
548 views
How do I sanitize user input for proper content-encoding before I save it?
I've got an application where users input text into forms.
The data is saved into a MySQL database (collation: utf8_general_ci) and then output as XML (encoding: UTF-8).
The problem is that people …
