Any Suggestions for Log4Net Configuration Gui? [closed] - user-interface

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
Does anyone have any suggestions for a Gui for editing the log4net config files. We have people in the field who need to be able to increase, decrease, or specialize logging but don't have the background to mess in the XML.

I used this http://www.codeproject.com/KB/cs/Log4netEditor.aspx a few years ago to provide a simple GUI to log4net. I haven't used it recently so I don't know if it's still working with recent releases of log4net.

It's not that hard to make a simple .NET Winforms app that can read a .xml file and allow the user to edit it. As it will only be used by users with specific needs you can just put in the necessary drop-down menus, ticks boxes or edit boxes to allow then to change the values needed.
You can then do some basic error/range checking to make sure they can't enter invalid values.

Related

C# Documentation Generator (no comments or annotations)? [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 looking for a documentation generator that does not require using comments and/or annotations to the code. Ideally, it would just outline all classes methods, functions, etc... in a manner similar to what is available in the Object Browser.
Every .NET documentation generator that I'm aware of works fine even without any comments in code. You didn't specify the language. If it's C# or VB .NET, you can try our VSdocman (I'm one of its developers). It can generate documentation for every code element. It doesn't matter if it has a comment or not.

IM clients (or plugins) with code formatter / highlighter [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 anybody recommend an IM client (Linux / Mac preferred) that either support natively, or via a plugin the ability to format & highlight blocks of code that are pasted in chat windows? I'm constantly pasting and receiving blocks of code in my client (Adium at the moment) where I copy them out into an editor to perform the formatting to make it readable.
I know I can't be the only one that shuttles snippets of code around to others like this, so I figure someone must have done this already, but my searches are coming up with nothing. Please someone help me before I throw my hands up and just start another time-sink project myself :)
You could also take a look at http://collabedit.com/

Snippet tool that is used in WWDC2010 videos [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 anyone know the code snippet tool that was used in some of the WWDC2010 videos?
It seems that the the tool allows us to create snippets of code which can be labeled. This tool also allow us to click and drag the label to Xcode code editor window to paste the code with the formatting intact.
Any lead on this tool/utility?
I think you're looking for DemoMonkey. I can't get the cool eskimo icon they have, though.

Native interface to Ticket systems [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 years ago.
Improve this question
Does any web bug/ticket system (Jira, Google Code, github, etc) offer a native plugin to add new tickets and update existing ones?
My current tickets are usually few lines long, and the overhead of using the GUI to enter them is high. Especially when I compare them to native task management software (e.g. Things), which usually offer shortcuts to add TODO items while you are in any program.
Request Tracker has an email interface, as well as command-line and REST interfaces and a Perl API. I use it all day, every day (though 95% of the time with the UI) and heartily recommend it.

fpcmake and Makefile.fpc, where can I get some training? [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
I've never used any of these, but they are listed on the main Free Pascal site and I would really like to get my hands on:
Beginners guide, to get me started
Advanced guide, to help me grow
All this in case it's still used/standard.
Thanks
IMHO makefile.fpc is mostly FPC internal. I wouldn't use it for own projects.
The idea is that Makefile.fpc is combined with a template fpcmake.ini by running "fpcmake -Tall -w" to generate a GNU Makefile. The fpcmake.ini template is built in into the fpcmake binary.
Makefile.fpc is a file that has parameters for customizing the (fpcmake.ini) template, but can also add additional targets (in makefile format).
To my knowledge there is a paragraph about fpcmake somewhere in the documentation, nad the rest is usually learned by example, simple usage in packages/ and the more complicated examples are the toplevel makefile.fpc and the ones in compiler and rtl/

Resources