Score of 0
2 answers
74 views
Confusion about the naming of binascii.hexlify
Does anyone know what the 'l' in the name of Python's binascii.hexlify is for? Why isn't it "hexify" instead of "hexlify"? Googling it gave me nothing. ChatGPT predictably gave me ...
- reputation score 112
Score of 0
3 answers
246 views
How to identify a specific ASCII character in Excel?
I received a file to process that had some extra spaces causing issues such as: "DATE " I first tried TRIM, but it did not help. I did find the solution by using SUBSTITUTE(A1, CHAR(160),...
- reputation score 847
Score of 1
1 answer
103 views
How to turn numbers to their relevant letters?
I'm creating a Microsoft Access program and I have a calculated column that looks like this: Round([chance]/20) I've tried adding in the ascii tab Ascii(Round([chance]/20)) and its making a set of ...
- reputation score 13
Score of 0
4 answers
168 views
How to search through Unicode text with ASCII input in Python
I have a corpus of text which includes some accented words, such as épée, and I would like people to be able to easily search through it using ASCII input. Ideally, they would simply type protege or ...
- reputation score 2180
Score of 1
1 answer
127 views
Why are Grep highlight sequences not read with `pty`?
I was experimenting with creack/pty while learning about pseudo terminals. I spawned grep and hooked it up with a pseudo terminal device as follows: package main import ( "fmt" &...
- reputation score 163
Score of 2
0 answers
175 views
Bypassing C64's PETSCII to screen code mapping
In upper-case mode, the C64 PRINT ASC("A") prints 65 - the ASCII/PETSCII code. But POKE 1024,65 prints the shifted A character. PRINT CHR$(65), however, prints the proper 'A' character. With ...
- reputation score 948
Score of 3
1 answer
359 views
Delphi tstringlist encoding default
I have noticed recently (maybe a change in recent Delphi) that if I load an ASCII format txt file into a tstringlist, edit a line with file.lines[10]:='blah', and then save it again the file is now ...
- reputation score 849
Score of 0
1 answer
210 views
How to use character arrays with Win32 APIs in C++ Builder 12
I am experimenting with C++Builder 12, trying to port some old code from C++Builder 2009. In that old code, all character strings are defined, for example, like this: char testString[256]="This ...
- reputation score 183
Score of 1
0 answers
92 views
printer italic font ascii (no html tags os font styles)
We are using citizen/HP printer to print receipt. to print Bold characters uses following code string Bold = Escape + (char) 33; // u001b! string BoldStart = Bold + (char)8;// u001b!\b string BoldEnd =...
- reputation score 11