0
votes
2answers
17 views
How to remove extended ascii using python?
In trying to fix up a PML (Palm Markup Language) file, it appears as if my test file has extended ASCII characters which is causing MakeBook to complain. The solution would be to s …
1
vote
1answer
38 views
Tcl for getting ASCII code for every character in a string
I need to get the ASCII character for every character in a string. Actually its every character in a (small) file. The following first 3 lines successfully pull all a file's cont …
1
vote
4answers
62 views
Convert from English Digits to Arabic ones in html page
I need to convert all English numbers that appear in a given HTML page to Arabic ones (to be independent from the user browser encoding). I prefer to use javascript or it will be g …
1
vote
3answers
88 views
Displaying the ≥ and ≤ ASCII characters in a C Application
I am currently writing a C application and I need to display the following symbols in the terminal : ≥ and ≤
Their ASCII character codes are 242 and 243 but I can't get them to be …
1
vote
3answers
35 views
Why do I get this error when I try to print something in Putty?
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 38: ordinal not in range(128)
I am downloading a website and then printing its contents...simple.
D …
0
votes
2answers
46 views
PHP input filtering - checking ascii vs checking utf8
I need to insure that all my strings are utf8. Would it be better to check that input coming from a user is ascii-like or that it is utf8-like?
//KohanaPHP
function is_ascii($str) …
12
votes
11answers
418 views
ASCII strings and endianness
An intern who works with me showed me an exam he had taken in computer science about endianness issues. There was a question that showed an ASCII string "My-Pizza", and the studen …
2
votes
5answers
128 views
How to convert an ASCII value into a character in .NET
There are a million posts on here on how to convert a character to its ASCII value.
Well I want the complete opposite.
I have an ASCII value stored as an int and I want to display …
1
vote
2answers
76 views
ASCII Library for Creating “Pretty” Directory Trees?
Is there some *nix tool or perl/php library that will let you easily create directory tree visualizations that look like the following?
www
|-- private
| |-- app
| | |-- …
0
votes
4answers
165 views
Human-readable binary data using Python
My work requires that I perform a mathematical simulation whose parameters come from a binary file. The simulator can read such binary file without a problem.
However, I need to p …
0
votes
2answers
24 views
Convert non-ascii domain to SMTP compatible
When customers enter email addresses with non-ascii chars like äüö our SMTP rejects to process them.
So I think might be there is a solution to handle those domains myself and co …
7
votes
4answers
201 views
ASCII “graphics” library?
Is there a platform-independent C/C++ library that can draw simple "graphics" in pure ASCII in a console program? For example (VERY roughly) I could call a function in the library …
1
vote
3answers
43 views
Corrupt image file after uploading it using ftp command from linux, with type ASCII
I have try to transfer a image file using ftp command in linux, from linux platform to windows platform, doing like this:
ftp cs.unitbv.ro
ascii
get test.jpg
After this, when I …
5
votes
7answers
177 views
What’s the proper technical term for “high ascii” characters?
What is the technically correct way of referring to "high ascii" or "extended ascii" characters? I don't just mean the range of 128-255, but any character beyond the 0-127 scope.
…
0
votes
1answer
54 views
HAML & RoR: Auto-convert apostrophes, etc., to ASCII HTML entities?
Is there anyway to have HAML automatically convert all my apostrophe's ' to the HTML character entity equivalents ’ (’)?
Ditto with all the other characters that …
