Web: PHP
Windows, i.e. EXEs: Try C++, Delphi or something.
With all, it's personal preference.
----
Ryan McCue. Blog.
So all that Airbus-delay trouble over here in Europe is because of YOU! Simeon.
"If you're not part of the solution, you're part of the precipitate."
personally, I'd reccomend NSIS as its simple & free.
try modifying one of the launcher's code to make your own portable app. thats always a good way to learn.
But there’s no sense crying over every mistake,
You just keep on trying till you run out of cake.
I'm definitely against learning NSIS as the first programming language.
Why?
It's not a programming language. It can be used to create programs, but it lacks features that were standard 40 years ago.
- structures
- loops
More modern things:
- objects!!! It's a standard now, object programming is way more natural than unstructured one - the only possible with NSIS.
- terrible WINAPI support
Being a language for creation of installers caused another drawback for programmers - it's interpreted...but can't be interpreted directly, you always have to wrap it to executable stub. It combines disadvantages of scripts and compiled languages, but doesn't give anything positive. It's interpreted => programs are slow. It has to be compiled => you have to spend several additional seconds every time you want to test changes you made to your code. Furthermore, it's "compiler" is really slow...
It also does not teach good habits - advice new programmers to learn NSIS and soon we'll have a bloat of spaghetti code.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
The language is designed for installers, and works quite well for them. For general apps, though, it's horrible.
Being a language for creation of installers caused another drawback for programmers - it's interpreted...but can't be interpreted directly, you always have to wrap it to executable stub.
NSIS executables aren't interpreted. That's the whole point of compilation. NSIS is not required to run the apps. In fact, Java is the only language I know of that uses interpreted binaries.
Actually Java is compiled..bud compiled for JVM instead of x86 or so. Similarly C# and .NET.
NSIS *is not* compiled. Neither are AutoHotkey and AutoIt. There are also "compilers" for batches that work this way.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
Java classes are compiled, but still interpreted.
NSIS *is not* compiled.
Yes it is. NSIS executables can be executed just like executables written in C, C++, x86, etc. once compiled.
I'll write it for the 3rd time. It is not compiled, you can call it pseudo-compilation. This process generates a valid PE 32 executable. But the executable is not the compiled program - it's an INSTALLER and in it's code there's nothing about the script. The script is attached to it just like files to be installed are - in the installer's overlay data. The installer decompresses the script and then interprets it.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
The process that starts when you ask makensis(w) to compile the "program" is not a compilation.
The words below may not be fully correct, possibly there's something more than I say. But nothing major.
The interpreter is not created then - it sits in your stubs directory. Makensis(w) just checks it the script is correct, then and compresses and attaches it ( together with files mentioned there to be installed ) to the correct stub.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
Ill post this hear since id get moaned at for not using search if i make a new thread
I was thinking of attempting (heavy emphasis on attempting) to learn a programming language. Im completely new to programming all I have done is a very basic Quiz program, in 4th year of school, in Visual Basic. I need one which is widely used, easy to learn and cross platform since I mainly use Linux but i should learn a Windows one for my college course as well.
Help would be much appreciated.
Web: PHP
Windows, i.e. EXEs: Try C++, Delphi or something.
With all, it's personal preference.
----
Ryan McCue.
Blog.
So all that Airbus-delay trouble over here in Europe is because of YOU!
Simeon.
"If you're not part of the solution, you're part of the precipitate."
personally, I'd reccomend NSIS as its simple & free.
try modifying one of the launcher's code to make your own portable app. thats always a good way to learn.
But there’s no sense crying over every mistake,
You just keep on trying till you run out of cake.
I'm definitely against learning NSIS as the first programming language.
Why?
It's not a programming language. It can be used to create programs, but it lacks features that were standard 40 years ago.
- structures
- loops
More modern things:
- objects!!! It's a standard now, object programming is way more natural than unstructured one - the only possible with NSIS.
- terrible WINAPI support
Being a language for creation of installers caused another drawback for programmers - it's interpreted...but can't be interpreted directly, you always have to wrap it to executable stub. It combines disadvantages of scripts and compiled languages, but doesn't give anything positive. It's interpreted => programs are slow. It has to be compiled => you have to spend several additional seconds every time you want to test changes you made to your code. Furthermore, it's "compiler" is really slow...
It also does not teach good habits - advice new programmers to learn NSIS and soon we'll have a bloat of spaghetti code.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
The language is designed for installers, and works quite well for them. For general apps, though, it's horrible.
Being a language for creation of installers caused another drawback for programmers - it's interpreted...but can't be interpreted directly, you always have to wrap it to executable stub.
NSIS executables aren't interpreted. That's the whole point of compilation. NSIS is not required to run the apps. In fact, Java is the only language I know of that uses interpreted binaries.
Vintage!
Actually Java is compiled..bud compiled for JVM instead of x86 or so. Similarly C# and .NET.
NSIS *is not* compiled. Neither are AutoHotkey and AutoIt. There are also "compilers" for batches that work this way.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
Java classes are compiled, but still interpreted.
NSIS *is not* compiled.
Yes it is. NSIS executables can be executed just like executables written in C, C++, x86, etc. once compiled.
Vintage!
I'll write it for the 3rd time. It is not compiled, you can call it pseudo-compilation. This process generates a valid PE 32 executable. But the executable is not the compiled program - it's an INSTALLER and in it's code there's nothing about the script. The script is attached to it just like files to be installed are - in the installer's overlay data. The installer decompresses the script and then interprets it.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
So it compiles itself an interpreter?
My head is spinning...
Rick Smith // Paladin225
Rick Smith // Paladin225
The process that starts when you ask makensis(w) to compile the "program" is not a compilation.
The words below may not be fully correct, possibly there's something more than I say. But nothing major.
The interpreter is not created then - it sits in your stubs directory. Makensis(w) just checks it the script is correct, then and compresses and attaches it ( together with files mentioned there to be installed ) to the correct stub.
"Those people who think they know everything are a great annoyance to those of us who do." Asimov
Ill post this hear since id get moaned at for not using search if i make a new thread
I was thinking of attempting (heavy emphasis on attempting) to learn a programming language. Im completely new to programming all I have done is a very basic Quiz program, in 4th year of school, in Visual Basic. I need one which is widely used, easy to learn and cross platform since I mainly use Linux but i should learn a Windows one for my college course as well.
Help would be much appreciated.