Defining custom syntax highlighting for Atlassian Fisheye/Crucible: MATLAB [closed] - matlab

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.

Related

How to make a block of code highlight in one note? [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 2 months ago.
Improve this question
How to make a block of code highlight in one note ? and is there a plugin which can help me ?
This is not my original post but i taught sharing would help others :)
To add the code block in ms one note you need to add additional package (again this is not my original work I am just writing this tutorial.)
Open below link and download the relevant packages as per your OS Architect and install.
https://github.com/elvirbrk/NoteHighlight2016/releases
and install the package and restart the ms one note and you can see new tab in your ms one note.
select your type of code.
and you're done.
But please don't report bugs here i am not the owner of the project.
And the code doesn't gets posted where the curser present rather it gets posted in top the one note text box.

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.

What package to use for database migrations in Go? [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 5 years ago.
Improve this question
I am fairly new to golang, and trying to identify the best tools for the job. Currently I am evaluating the following packages:
https://github.com/mattes/migrate
https://github.com/DavidHuie/gomigrate
https://bitbucket.org/liamstask/goose/
I was wondering if anyone had any experience with these (or other packages) and could provide some comments.
We use mattes/migrate at work and are very happy with it. It works with plain SQL files, handles file naming by itself and can easily be automated via CLI. It doesn't do anything Go specific.
With gomigrate you need to create the files yourself and write code for executing the migrations.
Take a look at https://github.com/pressly/goose, a maintained fork of https://bitbucket.org/liamstask/goose/.

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.

Open source examples of well written SCM web interface in Perl [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
Can anyone point me to some good Open Source web interface for VCS (version control system) written in Perl?
Something well written, so I can examine the code and steal the best parts (or organization) for gitweb. Preferably something without tons of external dependences not available in (extended) Perl core.
I haven't looked at the source code of SVN::Web, so I can't tell you if it's well written, but I sure like to use it. Here is a list of the dependencies, and you can see it in action.
Have you has a look at CvsMonitor? Its a little old but its a perl web interface into CVS.