Python becomes more and more popular. It has lots of libraries one can use. But if you need to do complex calculations it’s not very effective. Better approach would be create CPU consuming part in[…]
Category: Unix Programming
Visual Studio Code for C++ on Linux
To be a productive developer good editor/IDE is essential. On Windows nothing could beat Microsoft Visual Studio (in my opinion). On Linux I don’t have enough experience to make decision yet. For small projects Microsoft[…]
Qt + CMake = Easy Life
Do you want to be able build GUI application once and run it on Window and Linux? Qt might be the answer.Also in this lesson we will be using cross platform build tool named CMake.[…]
.NET Core (or “No Hands” programming part 2)
Today we are going to create Hello World application without writing single line of code. And we are going to create Hello World application on Windows but we will test in on Linux. Java again[…]
Python
Python is very similar to Perl so to save myself some time I would do copy/paste/replace… 🙂 Python is scripting language; that means you don’t compile it to executable, like C/C++, nor compile it to[…]
Perl
Perl is scripting language; that means you don’t compile it to executable, like C/C++, nor compile it to binary file which executed by special environment, like Java of .Net Core. Instead you write a script[…]
Ant
If, after reading Java post, someone is curious if it’s possible to use makefile to compile Java applications – the answer would be yes. But there are better ways to do it. One of them[…]
Java, Hello World
Compiling Java sources won’t produce executable which could be run independently. It produces binary code which is executed by Java. So in order to run Java program you need Java to be installed. Just to[…]
Hello, World on C/C++ on Linux, part II
Last time we wrote C application, this time let’s do a C++. Our Hello, World could look like this: #include <iostream> int main() { []{ std::cout
Hello, World on C/C++ on Linux
So you came home from your first 101 computer science class and you have homework to do – write a program on C. Where do you start? I’ll try to answer that. The easiest way[…]