Any links on creating presentation in windbg [closed] - windbg

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.

Related

Is there any website for programmer to review other code? [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 4 years ago.
Improve this question
The title is what I want, I'm in school and doing my own project myself, so I really want to have a website that I can post my code there for anyone review it, can I? Thanks.
Assuming the code works, Code Review # Stack Exchange is an option. Please read A guide to Code Review for Stack Overflow users and their help center before posting though.
If you have a working piece of code from your project and are looking for open-ended feedback in the following areas:
Best practices and design pattern usage
Security issues
Performance
Correctness in unanticipated cases
… then you are in the right place!

Defining custom syntax highlighting for Atlassian Fisheye/Crucible: MATLAB [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 4 years ago.
Improve this question
I am using Atlassian Fisheye/Crucible ("fecru") for MATLAB code review and fecru is obviously missing a syntax scheme support for matlab code. Apparently there is a mechanism to support a user-defined scheme, one just has to place it into folder syntax/.. and register in filename.map (also see here).
Maybe some one has already implemented matlab.def file? Would appreciate if you can share it.
For now my best starting point is java.def.
I was able to produce a somewhat modified python.def to highlight MATLAB syntax on jsp-side of fecru:
Put this into matlab.def
syntaxdef matlab {
...
}
and link it in filename.map
"**/*.m" matlab.def "MATLAB"
make sure it does not conflict with
# "**/*.m" objc.def "Objective C"
You will have to restart fecru for changes to take place.

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.

Link to Microsoft Open XML SDK tutorials [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 any link to a good Microsoft Open XML tutorials?
This is the official place to learn about Open XML: http://msdn.microsoft.com/en-us/office/bb265236.aspx.
You can just skim through all results in msdn.microsoft.com for Open XML SDK
Here are some other links to get your started:
http://openxmldeveloper.org/default.aspx
Not too active, but does get a decent amount of tutorials.
http://blogs.msdn.com/b/brian_jones/archive/2010/04/06/zeyad-rajabi-s-open-xml-sdk-blog-map.aspx
Microsoft program manager's blog for code snippets and tutorials.
http://msdn.microsoft.com/en-us/library/bb491088.aspx
More code snippets on how to perform certain tasks.
Here is an Open XML content list that has > 300 entries in it. You can filter by a variety of keywords.
http://openxmldeveloper.org/wiki/w/wiki/open-xml-content-by-keyword.aspx
also
http://blogs.msdn.com/b/ericwhite/archive/2008/10/20/eric-white-s-blog-s-table-of-contents.aspx#Open_XML

Rich text editor library for iOS [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
Does somebody know a rich text editor (like NSTextView for Mac OS X) library for the iOS platform?
The Omni Group also released some code that could be the start of a rich-text editor.
http://github.com/omnigroup/OmniGroup/tree/master/Frameworks/OmniUI/iPad/Examples/TextEditor/
Based on Core Text.
I am following 3 rich text editors for iOS, available in GitHub. Below is the list:
iOS-Rich-Text-Editor
RichEditorView
ZSSRichTextEditor
ZSSRichTextEditor is best library among these.
Here's an attempt at a fully implemented one: http://www.cocoanetics.com/parts/dtrichtexteditor/
One doesn't exist, you'll have to craft one yourself. There are examples of using Core Text out there, if you just know where to look. For instance, the I7CoreTextExample is one such example.