TECHiE TALKS

Just another techie stuff

Posts Tagged ‘Programming’

Assembly Language Tutorial

Here is another Assembly Language Tutorial Sample Program. This program is creating a fixed password to a certain application. This One of the basic examples unlike some of the other programs that passwords can be changed without accessing the source code. But here we created a program that has a fixed password abcdef. It is [...]

3 Comments

PHP Compare Date

I was creating a program for a library and that is to have a system that will manage the borrowing of books. I was searching the net about comparing date in PHP. One good application for this PHP snippet about comparing a date is that when the date filled is an invalid date range(e.g. the [...]

No Comments

Code Igniter Installation and First Run

Code Igniter is an PHP Application Development Framework – a toolkit for PHP developers. The main goal of Code Igniter is to enable developers to develop projects much faster than they could have done ( if they have started from scratch) by providing a rich set of libraries for commonly needed tasks, as well as [...]

2 Comments

Hello World in C++

//Printing Hellow World! #include <iostream> int main() { std::cout << “Hello World! \n”; system(“pause”); return 0; } Line begins with //, indicating that the remainder of the line is a comment. Programmers insert comments to document programs and also help people read and understand them. Comments do not cause the computer to perform any action [...]

No Comments

Learning C++

Since C++ is the first Language I’ve learned and time passed by and I forgot how create one now. So i’ll be learning once again the language and go deeper.  I’ll be posting new things that i’ll discover starting from the basic. The software that i will be using is an open source software recommended [...]

No Comments

Manage Programming Projects

Subversion is a free/open-source version control system. That is, Subversion manages files and directories, and the changes made to them, over time. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort [...]

No Comments

Easiest HTML Conceptualized

HTML files consist of ordinary text with the addition of what are called tags. Tags, which represent the markup of the text, are special codes surrounded by pointy brackets. Most of the tags come in pairs and specify what is to be done with what is in between the starting and the ending tag. For [...]

No Comments
Rss Feeds