Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
3answers
33k views

JSON stringify missing from jQuery 1.4.1?

Apparently jQuery has the ability to decode a given object or string into a JSON object. However, I have a JS object that I need to POST back to the server and I find no utility in jQuery that wraps ...
29
votes
13answers
33k views

QR code (2D barcode) coding and decoding algorithms?

Looking for free/opensource code or description of algorithms to code (simple) and decode (hard) the 2D barcode QR code. It doesn't seem like a trivial problem, but it's so popular in Japan that ...
27
votes
2answers
11k 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 UriTemplate matching. ...
22
votes
3answers
29k views

Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?

Basically I would like to decode a given Html document, and replace all special chars, such as "&nbsp" -> " ", ">" -> ">". In .NET we can make use of HttpUtility.HtmlDecode. What's ...
19
votes
3answers
5k views

MP3 Decoding on Android

We're implementing a program for Android phones that plays audio streamed from the internet. Here's approximately what we do: Download a custom encrypted format. Decrypt to get chunks of regular ...
11
votes
3answers
11k views

AJAX POST and Plus Sign ( + ) — How to Encode?

I'm POSTing the contents of a form field via AJAX to a PHP script and using Javascript encode(field_contents). The problem is that any plus signs are being stripped out and replaced by spaces. How ...
10
votes
1answer
4k views

Decode HTML entities in android

I need to decode HTML entities, e.g. from ö to ö, and & to &. URLEncoder.decode(str) does not do the job (convert from % notations). TextUtils has a HTMLencode, but not a ...
10
votes
3answers
5k views

Using an Alias in a WHERE clause

I have a query which is meant to show me any rows in table A which have not been updated recently enough. (Each row should be updated within 2 months after "month_no".): SELECT A.identifier , ...
8
votes
4answers
3k views

PHP decode starting with $OOO000000=urldecode('%66%67%36%73%62%65%68%70%72%61%34%63

I bought a software from classifiedscript.org, unfortunately, there is an encoded php file which I suspect contains some dodgey functions. Just to clarify - they were suppose to provide full source ...
8
votes
4answers
1k views

How do I pass session variables from one domain to another in PHP

I have encountered a situation where I need to pass $_SESSION variables from one domain to an iFrame page from another domain. I have spent the last 16 days trying various methods to no avail. I think ...
7
votes
1answer
187 views

Partial decoding of ByteStrings to Text

I need to decode ByteStrings from various encodings into Text, but the ByteStrings might be incomplete fragments. Ideally, I would need a function with signature of something like: decodeFragment :: ...
7
votes
5answers
3k views

how to base64 url decode in python

for facebook fbml apps facebook is sending in a signed_request parameter explained here http://developers.facebook.com/docs/authentication/canvas they have given the php version of decoding this ...
7
votes
3answers
1k views

ORDER BY DECODE(BLAH, [COLUMN NUMBER]) on a single column query. How does it work?

Hi I need help to understand the decode part of a query that goes something like the following. SELECT ax.animal_code FROM raw_animal_xref ax, animal_xref_type axt WHERE ax.animal_mnemonic ...
6
votes
2answers
230 views

Erlang pattern matching bitstrings

I'm writing code to decode messages from a binary protocol. Each message type is assigned a 1 byte type identifier and each message carries this type id. Messages all start with a common header ...
6
votes
2answers
427 views

How you encode strings like \u00d6?

This is encoded: \u00d6 This is decoded: Ö What function I have to use to decode that string into something readable? \u00d6asdf -> Öasdf
6
votes
4answers
3k views

ASP.NET MVC URL decode

I have an action like this: <%=Html.ActionLink("My_link", "About", "Home", new RouteValueDictionary { { "id", "Österreich" } }, null)%> This produces the following link: ...
6
votes
5answers
3k views

How to decode huffman code quickly?

I have implementated a simple compressor using pure huffman code under Windows.But I do not know much about how to decode the compressed file quickly,my bad algorithm is: Enumerate all the huffman ...
6
votes
2answers
6k views

How to decode H.264 video frame in Java environment

Does anyone know how to decode H.264 video frame in Java environment? My network camera products support the RTP/RTSP Streaming. The service standard RTP/RTSP from my network camera is served and it ...
5
votes
3answers
2k views

eval base64_decode php virus

my site (very large community website) was recently infected with a virus. Every index.php file was changed so that the opening php tag of these files it was changed to the following line: <?php ...
5
votes
1answer
445 views

How do i escape html unicode in .net?

In a webpage i got the text \u30ca\u30bf\u30ea\u30a2. It should translate to ナタリア. I just dont know how to do it in .NET. I tried HttpUtility.HtmlDecode and when that failed i tried ...
5
votes
1answer
1k views

Cross platform (php to C# .NET) encryption/decryption with Rijndael

I'm currently having a bit of problem with decrypting a message encrypted by php mcrypt. The php code is as following: <?php //$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, ...
5
votes
2answers
2k views

Decode &amp; back to & in javascript

I have strings like var str = 'One &amp; two &amp; three'; rendered into HTML by the web server. I need to transform those strings into 'One & two & three' Currently, that's ...
5
votes
5answers
758 views

InputStreamReader buffering issue

I am reading data from a file that has, unfortunately, two types of character encoding. There is a header and a body. The header is always in ASCII and defines the character set that the body is ...
5
votes
5answers
2k views

Decoding mysql_real_escape_string() for outputting HTML

I'm trying to protect myself from sql injection and am using: mysql_real_escape_string($string); When posting HTML it looks something like this: <span ...
5
votes
3answers
335 views

Resizing JPEG image during decoding

I'm working on a program that creates thumbnails of JPEG images on the fly. Now I was thinking: since a JPEG image is built from 8x8-pixel blocks (Wikipedia has a great explanation), would it be ...
5
votes
3answers
3k views

Decoding double encoded utf8 in Python

I've got a problem with strings that I get from one of my clients over xmlrpc. He sends me utf8 strings that are encoded twice :( so when I get them in python I have an unicode object that has to be ...
5
votes
3answers
1k views

Is it possible to decode EventValidation and ViewState in ASP.NET?

How to decode the ASP.NET EventValidation and ViewState?
5
votes
5answers
12k views

Decode base64 String Java 5

Is there a straight forward way to decode a base64 string using ONLY THE JAVA 1.5 LIBRARIES? I have to use Java 1.5 due to cross platform compatibility issues between Windows and Mac OS X (only Mac ...
5
votes
4answers
838 views

What's a good way to determine what's in my viewstate?

I have a page that has a really huge viewstate (>300KB). ...Yeah, I know. I've narrowed this anomaly down to one user control, but am having trouble determining what exactly that control is putting ...
4
votes
2answers
30 views

PHP string comparison between two different types of encoding

I am attempting to match a string I know to a web page title in php. I have the following string: ℛobinhood I have a page title that looks like this: ℛobinhood but is actually encoded like this ...
4
votes
4answers
540 views

oracle: decode and subquery select result

I have a oracle query and part of it is calculating some value using DECODE. For example: SELECT ..., (SELECT DECODE((SELECT 23 FROM DUAL), 0, null, ...
4
votes
3answers
1k views

Can someone decode this javascript?

I found this javascript in a Facebook viral page here. I think the code is malicious so I would like to know what it does. Here is the code: javascript: var ...
4
votes
3answers
930 views

Best way to handle email parsing/decoding in PHP?

Currently I'm using the PEAR library's mimeDecode.php for parsing incoming emails. It seems to have a lot of issues and fails to decode a lot of messages, so I'd like to replace it with something ...
4
votes
1answer
2k views

What is the equivalent of JavaScript's decodeURIcomponent in PHP?

I have some string with unicode characters and was endcoded with javascript decodeURIcomponent.But i dont find any equivalent in php to decode it.Is there any solution for this?
4
votes
5answers
4k views

Comparing dates in Oracle using the decode function

I need to compare two dates using the Oracle decode function to see if one is less than or equal to the other. I found this article - http://www.techonthenet.com/oracle/functions/decode.php Which ...
4
votes
2answers
692 views

Lookup table for oracle decodes?

It might be a newbie question, but still.. We are all familiar with Oracle's decodes and cases, e.g. select decode (state, 0, 'initial', 1, 'current', 2, 'finnal', ...
4
votes
3answers
359 views

Read the information my computer is sending on an ssl connection

I would like to read the information a java application in firefox is sending to a website over an ssl connection. I am using WireShark, and I believe that if I can somehow tell tell wireshark what ...
4
votes
6answers
5k views

wav <> mp3 for flash(as3)

Dear All, I'm wondering about MP3 decoding/encoding, and I was hoping to pull this off in Flash using AS3 I'm sure it'll be a right pain... I have no idea where to start, can anyone offer any ...
3
votes
4answers
284 views

PHP: Help decoding malicious code

eval(gzuncompress(base64_decode('eF5Tcffxd3L0CY5WjzcyNDG2NDc3MLGMV4+1dSwqSqzU0LQGAJCPCMM='))); ...
3
votes
2answers
160 views

How do I decode a string with escaped unicode?

I'm not sure what this is called so I'm having trouble searching for it. How can I decode a string with unicode from http\u00253A\u00252F\u00252Fexample.com to http://example.com with JavaScript? I ...
3
votes
3answers
333 views

Decoding base64 adds extra spaces

I am working in Delphi XE2 I am converting base64 byte array to string using this TEncoding.UTF7.GetString(byte1) Then decoding string into byte array using this function function ...
3
votes
1answer
123 views

Decoding 68k instructions

I'm writing an interpreted 68k emulator as a personal/educational project. Right now I'm trying to develop a simple, general decoding mechanism. As I understand it, the first two bytes of each ...
3
votes
4answers
530 views

ruby base64 encode / decode / unpack('m') troubles

Having a strange ruby encoding encounter: ruby-1.9.2-p180 :618 > s = "a8dnsjg8aiw8jq".ljust(16,'=') => "a8dnsjg8aiw8jq==" ruby-1.9.2-p180 :619 > s.size => 16 ruby-1.9.2-p180 :620 ...
3
votes
2answers
123 views

Json_Decode not Decoding my JSON

I am using couchDB to get a UUID so that I can send a new document to the database. In order to get this UUID, I use a curl statement: function getUUID(){ $myCurlSubmit = curl_init(); ...
3
votes
3answers
63 views

Decoding/Decryption: Getting Started

I have intercepted data packets between software on my computer and software on a remote server. The idea is to reverse engineer the API between the two and integrate the API into another software ...
3
votes
4answers
324 views

Convert &apos; to an apostrophe in PHP

My data has many &apos; in it (&bull; ...etc). I just want to convert it to it's equivalent. I assumed htmlspecialchars_decode() would work, but - no luck. Thoughts? I tried this: echo ...
3
votes
4answers
93 views

Help Decoding JSON

I'm trying to get the "screenshotUrls" string from this piece of json: $request_url = 'http://itunes.apple.com/search?term=ibooks&country=us&entity=software&limit=1'; $json = ...
3
votes
2answers
121 views

Why is the load method of a datatable sometimes so slow?

The project is a web app in ASP/VB.net. The issue is that some pages are mind-boggingly slow. After trying to track down the bottleneck, it was discovered to be the load method when filling a ...
3
votes
6answers
155 views

How to read this php code?

How to decode this string in php? $x = ...
3
votes
1answer
264 views

Need this unobfuscated (decoded) [closed]

I'm trying to help a friend with a website, since the person working on it before dissapeared. We've come across an encoded php file: <?php /* ...

1 2 3 4 5 9