-
as seen on Super User
- Search for 'Super User'
Is there a terminal command in Mac OS X which will base64 encode a file or stdin?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have this link:
<a href="data:application/pdf;base64,JVBERi0x...KJSVFT0YK">PDF</a>
In Safari on MacOsX, clicking the link instantly opens the PDF. In Firefox 3.6.2, it doesn't. When I choose Download, it saves it as "u7WYuJME.pdf(2).part", which is a valid PDF file. When I choose…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is it possible to detect changes in the base64 encoding of an object to detect the degree of changes in the object.
Suppose I send a document attachment to several users and each makes changes to it and emails back to me, can I use the string distance between original base64 and the received base64s…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm currently implementing a client application that POST's a file over HTTP and have implemented base64 encoding on the file's data parameter.
However, it appears that when inspecting the traffic between a simple HTML page with a file upload form and the server that no Content-Transfer-Encoding…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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. Then I found that there is a concept of a "modified Base64 for URL" from wikipedia:
A modified Base64…
>>> More