|
Apart from signing executables, Sign PE also patches the version string, so just enter the version number you wish your executable to have and it should work. Please check http://sign.pe for the most recent version.
- Michael Haephrati מיכאל האפרתי
|
|
|
|
|
This looks quite handy:
A free .NET performance profiler and execution analyzer
Free for for personal and commercial use.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Thanks for the tool. Have you had a chance to use it?
How did it go?
|
|
|
|
|
I haven't had a chance to use it yet.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Should there be any issues, please let me know (email/contact is on www.getcodetrack.com)
I'm working very hard to make it better and fixing any issues that pop up !
|
|
|
|
|
Does anybody know of a good, free duplicate file finder?
Yes, I googled first Looking for an informed opinion from people who have actually used it
TIA
Happiness will never come to those who fail to appreciate what they already have. -Anon
|
|
|
|
|
ChandraRam wrote: Yes, I googled first Did you also read the preamble at the top of this page?
And what exactly do you mean by "duplicate file finder"?
|
|
|
|
|
Richard MacCutchan wrote: Did you also read the preamble at the top of this page? Yes, I did.
Richard MacCutchan wrote: And what exactly do you mean by "duplicate file finder"? Specifically, I am looking for an app that will go through a hard drive and list out (and delete, maybe) duplicate copies of a file.
Happiness will never come to those who fail to appreciate what they already have. -Anon
|
|
|
|
|
It all depends how you define duplicates and how much time you have to leave such an application running. Most likely you need to get coding.
|
|
|
|
|
OK. Thanks.
Happiness will never come to those who fail to appreciate what they already have. -Anon
|
|
|
|
|
i used a similar tool a while ago but cannot recall the name right now, will inform as soon as i remind it
|
|
|
|
|
Thank you.
Happiness will never come to those who fail to appreciate what they already have. -Anon
|
|
|
|
|
I know it's been close to a year since you asked, but I use Auslogics Duplicate File Finder
For some reason it needs admin rights to run
Cheers,
विक्रम
"We have already been through this, I am not going to repeat myself." - fat_boy, in a global warming thread
|
|
|
|
|
Thanks, Vikram
Happiness will never come to those who fail to appreciate what they already have. -Anon
|
|
|
|
|
Hello,
I am using eclipse to program in java.
But, it is full of bugs.
I want to know the available alternatives used to program in java.
|
|
|
|
|
A lot of people like NetBeans:
Welcome to NetBeans[^]
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli
|
|
|
|
|
Eclipse is not full of bugs, it is an excellent IDE for Java. I have been using it for years with no problems.
|
|
|
|
|
I'm also using Eclipse IDE
|
|
|
|
|
You can use NetBeans, it support's all java application type.
|
|
|
|
|
I don't do Java but many Java devs rave over IntelliJ.
Kevin
|
|
|
|
|
Message Closed
modified 25-Aug-16 9:03am.
|
|
|
|
|
|
Introduction
xmake is a make-like build utility based on lua.
The project focuses on making development and building easier and provides many features (.e.g package, install, plugin, macro, action, option, task ...),
so that any developer can quickly pick it up and enjoy the productivity boost when developing and building project.
Features
- Create projects and supports many project templates
- Support c/c++, objc/c++, swift and assembly language
- Automatically probe the host environment and configure project
- Provide some built-in actions (config, build, package, clean, install, uninstall and run)
- Provide some built-in plugins (doxygen, macro, project)
- Provide some built-in macros (batch packaging)
- Describe the project file using lua script, more flexible and simple
- Custom packages, platforms, plugins, templates, tasks, macros, options and actions
- Do not generate makefile and build project directly
- Support multitasking with argument: -j
Actions
- config: Configure project before building.
- global: Configure the global options for xmake.
- build: Build project.
- clean: Remove all binary and temporary files.
- create: Create a new project using template.
- package: Package the given target
- install: Install the project binary files.
- uninstall: Uninstall the project binary files.
- run: Run the project target.
Plugins
- The doxygen plugin: Make doxygen document from source codes
- The macro plugin: Record and playback commands
- The hello plugin: A simple plugin demo to show 'hello xmake!'
- The project plugin: Create the project file for IDE (.e.g makefile and vs, xcode in the feature ...)
Languages
- C/C++
- Objc/Objc++
- Swift
- Assembly
Platforms
- Windows (x86, x64, amd64, x86_amd64)
- Macosx (i386, x86_64)
- Linux (i386, x86_64, cross-toolchains ...)
- Android (armv5te, armv6, armv7-a, armv8-a, arm64-v8a)
- iPhoneos (armv7, armv7s, arm64, i386, x86_64)
- Watchos (armv7k, i386)
- Mingw (i386, x86_64)
In the plans
- Manage package and dependence
- Download package automaticlly
- Create package repository for porting other third-party source codes, it's goal is that one people port it and many people shared.
- Implement more plugins
- Create more project file for IDE (.e.g vs, xcode ..)
Examples
Create a c++ console project:
xmake create -l c++ -t 1 console
or xmake create --language=c++ --template=1 console
Project xmakefile: xmake.lua
target("console")
set_kind("binary")
add_files("src
Configure project:
This is optional, if you compile the targets only for linux, macosx and windows and the default compilation mode is release.
xmake f -p iphoneos -m debug
or xmake f --plat=macosx --arch=x86_64
or xmake f -p windows
or xmake config --plat=iphoneos --mode=debug
or xmake config --plat=android --arch=armv7-a --ndk=xxxxx
or xmake config -p linux -a i386
or xmake config -p mingw --cross=i386-mingw32- --toolchains=/xxx/bin
or xmake config -p mingw --sdk=/mingwsdk
or xmake config --help
Compile project:
xmake
or xmake -r
or xmake --rebuild
Run target:
xmake r console
or xmake run console
Package all:
xmake p
or xmake package
or xmake package console
or xmake package -o /tmp
or xmake package --output=/tmp
Package all archs using macro:
xmake m package
or xmake m package -p iphoneos
or xmake m package -p macosx -f "-m debug" -o /tmp/
or xmake m package --help
Install targets:
xmake i
or xmake install
or xmake install console
or xmake install -o /tmp
or xmake install --output=/tmp
If you need known more detailed usage,please refer to documents
or run:
xmake -h
or xmake --help
or xmake config --help
or xmake package --help
or xmake macro --help
...
The simple xmake.lua file:
-- the debug mode
if is_mode("debug") then
-- enable the debug symbols
set_symbols("debug")
-- disable optimization
set_optimize("none")
end
-- the release mode
if is_mode("release") then
-- set the symbols visibility: hidden
set_symbols("hidden")
-- enable fastest optimization
set_optimize("fastest")
-- strip all symbols
set_strip("all")
end
-- add target
target("test")
-- set kind
set_kind("static")
-- add files
add_files("src
Projects
Some projects using xmake:
|
|
|
|
|
Hi,
I need a free tool to design user interface for Android application.
Regards,
|
|
|
|