1
vote
2answers
24 views
Invalid PHP JSON encoding
I'm working on a project in PHP (5.3.1) where I need to send a JSON string to a webservice (in python), but the result I get from json_encode does not pass as a valid JSON (i'm usi …
3
votes
2answers
572 views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTem …
1
vote
2answers
158 views
How do I encode UTF-8 using the XStream framework?
Per XStream's FAQ its default parser does not preserve UTF-8 document encoding, and one must provide their own encoder. How does one do this?
Thanks!
0
votes
1answer
40 views
String encoding of primitive types preserving lexicographic order
Does anyone know of a library for encoding a number of primitive types (like integers, floats, strings, etc) into a string but preserving the lexicographical order of the types?
I …
3
votes
2answers
61 views
How can I call a standard .NET assembly within SQL
Hi,
I am having an issue whereby a column within a table of mine has data which is encoded using the System.Xml.XmlConvert.Encode method.
Now I need to manipulate this data within …
0
votes
5answers
91 views
Why does reddit use base36 for article id?
For example, "a2xki"
2
votes
6answers
734 views
How do I convert an audio stream to MP3 using Java?
Is it possible using Java to convert a real time audio stream from the mixer to MP3?
It has to be converted chunk by chunk otherwise the memory will be exhausted.
I already kno …
1
vote
2answers
71 views
Sending variables to php from Cocoa Touch on iPhone sdk
Hi am trying to pass variables to php from inside an app.
<?php
// get email address
$email = $_GET['email'];
// get character name
$character = $_GET['character'];
// get pass …
4
votes
7answers
906 views
Is it necessary to “escape” character “<” and “>” for javascript string?
Sometimes, server side will generate strings to be embedded in inline JavaScript code. For example, if "UserName" should be generated by ASP.NET. Then it looks like.
<script> …
0
votes
4answers
87 views
convert encoding
hi all just wrote this:
<?php
function unicodeConvert($str)
{
header('Content-Type:text/html; charset=UTF-8');
$entityRef = array('"' => """, "&" => …
1
vote
6answers
105 views
converting from base 10 to base 31 (working only with select characters)
I'd like to convert base 10 numbers to base 31
I would like to use only these characters: 23456789abcdefghjkmnpqrstuvwxyz
As you can see, 5 characters are excluded (i don't need …
0
votes
3answers
186 views
Encrypt in C# decrypt in JavaScript
I am looking for way to encrypt string in C# and to decrypt it using JavaScript. JavaScript in this case is a scripting language for internal system, so I should not worry about pe …
0
votes
2answers
108 views
jQuery parsing RSS and namespaced element like <content:encoded>
I am using jQuery to parse an RSS feed. Within each <item> is a namespaced element like <content:encoded> I want to select. How do I select it in jQuery?
$(xml).find(' …
1
vote
2answers
142 views
Convert from hex string to unicode
How can i convert the 'dead' string to an unicode string u'\xde\xad'?
Doing this:
from binascii import unhexlify
out = ''.join(x for x in [unhexlify('de'), unhexlify('ad')])
cr …
0
votes
2answers
53 views
PHP URL Encoding Method
Hi guys I would like to know how I can have PHP display this URL correctly.
Is there a working encoding method I can use that converts all this:
253A%252F%252F
to
://
https% …
