Books about charset and encoding? [closed] - encoding

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 months ago.
Improve this question
I want to learn complete and authoritative knowledge about charset and encoding.
That's better that it can provide:
the orgin,
the history,
the standards of charset/encoding,
and also include some specific application/support fields,
such as
languages(java, c/c++, javascript, flash..),
web(html, http..),
database(db encoding, collation, IBM codepage...),
mainframe(EBCDIC..)
Who can give a book list about that.
so long to find this book.

The best one which I found on the subject is- The Unicode Standard : Worldwide Character Encoding. By, Unicode foundation itself, currently in its version 5 is an exhaustive research on subject.
Link: http://www.amazon.com/Unicode-Standard-Worldwide-Character-Encoding/dp/0201567881
Though, you may want to check other previous versions as well.
Other books on Unicode:
Unicode Demystified -by Richard Gillam
Unicode Explained -by Jukka Korpeta
Fonts and Encoding
CJKV Information Processing.
Most of them can be found HERE.

Related

Looking for a hex editor with highlighting/annotation tools to make reverse engineering easier to document [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 days ago.
Improve this question
I just want to highlight Hex code for documentation purposes. I mostly use WinHex for binary analysis, but pasting hex into word and reformatting before I can annotate code is a pain.
VS code has several highlighting extensions, but they don't work in tandem with hex editor plugins.
Has anyone found a good hex viewer with highlighting functionality? I don't need any additional edit/decoding functionality as WinHex serves all of my other needs nicely.
I'm looking for programs on any OS.
Ideally the UI shows memory address, hex code, and ASCII decoding.
Any Suggestions?

Any links on creating presentation in windbg [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
The one and only Sasha's tweet below shows that presentations can be created using windbg.
https://twitter.com/goldshtn/status/672494178769719300
Anyone knows how to do that?
PS: I know Sasha is on stackoverflow, so may be he can answer this question :)
"Presentation" is somewhat of an exaggeration. What you meant to ask is "how to format output in WinDbg?"
To this the answer is "using DML".
Whether you use .printf or send output to the debugger using OutputDebugString, you can use Debugger Markup Language (DML) to output use colors, links etc.
The tag reference is located in the page Customizing Debugger Output Using DML.
"Drawing" using monospace text is your business, however. WinDbg has no facilities to help you with that as far as I know.

Introduction to Category Theory without Haskel, Scala or F# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I wan't to get introduced to the fundamental concepts of Category Theory, from a developer's perspective (not a math student), but every single resource I see uses Haskel, Scala, F# or other highly-focused languages that I don't use.
Are there any resources for the rest of us?
MIT has an some course material online for Category Theory for Scientists. There is also a textbook you can download as well.
Pierce's Basic Category Theory for Computer Scientists fits your description. It is in no way tied to any particular programming language.
When learning category theory It's good to have examples to work from. If you don't have examples from mathematics, and you don't have examples from specific programming languages, it might be hard to motivate the subject.

Notepad++ Rtf Editing plugin [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed last month.
Improve this question
Is there a plug-in for Notepad++ that does rtf highlighting? To clarify, I mean when one opens an rtf file as plain text, is there a plugin that highlights rtf statements (like "{\rtf...}", "{\colortbl...}", and etc.) like it does with c++, c#, html, and etc. along with the ability to collapse blocks of rtf statements like an xml file? Thanks in advance.
Good news every-one! I found a UDL for RTF here.
Found it via this link.
[Edited 2 Aug 2016] The list of User-Defined Languages is now available at this address: https://github.com/notepad-plus-plus/userDefinedLanguages/blob/master/udl-list.md
Short answer: I don't know, and probably not.
Long answer: this is sort of a duplicate question; a related answer is yonder:
http://sourceforge.net/projects/notepad-plus/forums/forum/331753/topic/3445473
Re:
Plugin for NotePad++ for rich text?

EBNF presentation examples? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Anyone know of good examples for the presentation of Extended Backus-Naur Form for electronic media (i.e. HTML)?
I am looking for suggestions about form, not content -- I'm looking to make it as readable as possible, so that rules, terminals, and EBNF symbols are easily distinguished from each other.
Not sure if this is what you mean (or whether it's way too late), but I've been playing with this visualisation tool:
http://www-cgi.uni-regensburg.de/~brf09510/syntax.html
At the moment it appears to only support png output, and it's not that pretty. Otherwise I have had recommended to me (untried, YMMV) Graphviz.