|
My pleasure
|
|
|
|
|
|
I need a free file explorer like component for vb.net
|
|
|
|
|
And which ones have you already dismissed from your research into what is available ?
|
|
|
|
|
You already posted this query in QA and I explained how to find what you are looking for.
|
|
|
|
|
can anyone give best answer
|
|
|
|
|
I suspect the "best" answer for this question in this specific forum is that...
...you should try a different forum.
|
|
|
|
|
I would suggest that password recovery is never a good idea. If you, or your software, can "recover" a password, so can someone else (or their software). If a user forgets a password, then they should have to set a new one.
|
|
|
|
|
|
I often have to work with complex Visual Studio solutions, with several projects and lots of open files in the editor. Sometimes it can get a little messy, and I was in need of a workspaces functionality, which could allow me to save and restore distinct workspaces, each with its own open files.
I then found an extension for Visual Studio which exactly does that; it is named Workspace Manager, is completely free and is made by Andrey Veselov; I owe him a huge "Thank You!".
Workspaces are saved at the solution level, in a SQLite db file located in solution's directory.
It can be found by its name in the Extension Manager, or downloaded at the following link:
Workspace Manager by Andrey Veselov[^]
"I'm neither for nor against, on the contrary." John Middle
|
|
|
|
|
I'm searching for an open source endpoint security management server solution.
I want to be able to control endpoints in a network and be able to perform all/most of the following:
* get info about users and machines in the network (with or w/out AD, focused on Desktops & Laptops, later Smartphones, Tablets, Servers, other devices)
* deploy and update my security software remotely
* collect data and notifications from endpoints to the server
* multi-platform support
* can run from common OSs like Linux and Windows
* can manage common OSs endpoints: Windows, Linux, Android & macOS
* should have a dashboard and admin pages with notifications for me and others
* easily customizable (preferably coded in PHP/Python or any easy-to-code language, extendible via plugins, etc...)
nice to have:
* integrates to other security systems (SIEM, Logs, etc...)
* permissive license (preferably not GPL)
* support installation as SaaS (to manage from cloud, containers, etc...)
thanks!
|
|
|
|
|
1. Rationale
Null references are considered to be one of the most expensive mistakes in IT design. It's not surprising that there are numerous efforts to solve it. Here are a couple of examples from the Java world:
* Kotlin fights it at the language level
* many tools try to report it as early as possible, for example, IntelliJ IDEA can be configured to warn us about a possible NPE.
Moreover, when the code below is compiled by the IDE, it automatically inserts null-checks, i.e. given the code snippet below
public void service(@NotNull String input) {
}
Resulting bytecode looks like if it's compiled from the following source:
public void service(@NotNull String input) {
if (input == null) {
throw new NullPointerException("Argument for <a href="https:
}
}
Kotlin really solves the problem but Java is still a very popular language, so, we have to deal with nullable values. It's not always convenient to use IntelliJ build system for compiling sources to get that null-checks and the code which explicitly ensures preconditions via checkNotNull() or explicit if (input == null) { throw new NullPointerException("<description>") } also looks not that appealing.
More common setup is to configure a build through Gradle/Maven/Ant. It would not harm to get IDE tips on possible null-related problems and that auto-generated runtime checks without explicitly putting them into code.
Current tool solves the second problem - it allows to add null-checks into *.class files during compilation based on source code annotations.
2. License
The project is licensed by MIT.
3. Design
The whole project is based on a Javac extension. It plugs into the compilation process and automatically inserts null-checks into the resulting bytecode. That can be used either explicitly from the command line or from Maven/Ant. Also, there is a Gradle plugin which simplifies the configuration for Gradle projects.
4. Usage
5. Settings
Even though it's possible to use the plugin with the default setup, there are a number of configuration options. They are described here
6. Project Resources
The documentation is available here.
The project is hosted on GitHub.
modified 14-Nov-17 1:43am.
|
|
|
|
|
The above post should start with a link to the actual tool.
Rest of the verbiage makes it difficult to find it and I think that the actual link doesn't even work.
|
|
|
|
|
Thank you for the feedback!
I've corrected the links.
About the post organization - not sure that it would be better to give a link without explaining what the tool is.
Regards, Denis
|
|
|
|
|
What I meant was that someone might quickly read the content or not even care and just want to look at the tool. So the link to the tool should be first followed by the existing content.
|
|
|
|
|
|
Which is the most reliable free antivirus for USB flash drives that resides and runs from the device itself and doesn't need to be installed on the computer?
|
|
|
|
|
See reddit[^]. Which is "the best" is not known, nor are there tests to see who of those is the most reliable - if they did, it would be outdated the moment it is published.
Most of the antivirus-applications catch over 95% of known virii/malware. Most bootable rescue-disks contain multiple applications to scan your computer. If you are having with creating a bootable USB-key using an ISO-file, then look here[^].
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
DOSBOX (currently v.0.74)
DOSBox, an x86 emulator with DOS[^]
Speaks for itself ... and everything works. Running Windows x64 and have legacy 16-bit programs that you never manage to find time to reprogram? This is 'yer next download.
|
|
|
|
|
A nice free editor full of possibilities: Atom[^]
Looks like it comes from the people of GitHub.
|
|
|
|
|
Just discovered that compression tool.
It works very well, it makes it easy to work with multiple file formats...
It is ugly (icons are terrible).
It is 100% free.
I can't see a reason for not using it and to replace WinZip/WinRar...
|
|
|
|
|
In case you have more than one monitor and you usually move the mouse from one monitor to the other one...
This small utility could help: Multi Monitor Mouse[^]
It looks like it allow you to set mouse buttons, keys... to switch monitors easily without having to move along all the monitors width and avoiding colliding with the invisible walls between different size monitors.
See it working here[^].
Enjoy.
modified 16-Aug-17 6:10am.
|
|
|
|
|
Quickhash GUI - Cross-platform data hashing tool for Windows, Linux and OSX[^] handy little tool to figure out MD5, SHA1, SHA256, SHA512 and xxHash hashes for downloaded files and ISO's.
ImageUSB - Write an image to multiple USB Flash Drives[^] which will not only allow you to write images to/take images from USB Drives it also allows you to Zero out the USB so you can get the full capacity back if you have a Linux image on the USB hiding the bulk of the capacity.
Michael Martin
Australia
"I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So I had to leave the place as soon as possible."
- Mr.Prakash One Fine Saturday. 24/04/2004
|
|
|
|
|
|
http://owl.phy.queensu.ca/~phil/exiftool/
|
|
|
|