Showing posts with label Softwere Development. Show all posts
Showing posts with label Softwere Development. Show all posts

Thursday, June 2, 2016

Port of SDL library to Android Mobile platform

Port of SDL library to Android mobile platform. There are also several games inside the repository, along with their sources and build files. Both SDL 1.2 and 1.3/2.0 versions are supported (1.3/2.0 support is experimental) Sources are at https://github.com/pelya/commandergenius

Tuesday, May 24, 2016

Tortoise SVN

TortoiseSVN is a Subversion (SVN) client, implemented as a windows shell extension. It's intuitive and easy to use, since it doesn't require the Subversion command line client to run. Simply the coolest Interface to (Sub)Version Control!


About TortoiseSVN

TortoiseSVN is a really easy to use Revision control / version control / source control software for Windows. It is based on Apache Subversion (SVN)®; TortoiseSVN provides a nice and easy user interface for Subversion.
It is developed under the GPL. Which means it is completely free for anyone to use, including in a commercial environment, without any restriction. The source code is also freely available, so you can even develop your own version if you wish to.
Since it's not an integration for a specific IDE like Visual Studio, Eclipse or others, you can use it with whatever development tools you like, and with any type of file.

Features of TortoiseSVN

  • Easy to use
    • all commands are available directly from the Windows Explorer.
    • only commands that make sense for the selected file/folder are shown. You won't see any commands that you can't use in your situation.
    • See the status of your files directly in the Windows explorer
    • descriptive dialogs, constantly improved due to user feedback
    • allows moving files by right-dragging them in the Windows explorer
  • All Subversion protocols are supported
    • http://
    • https://
    • svn://
    • svn+ssh://
    • file:///
    • svn+XXX://
  • Powerful commit dialog
  • The big picture
  • Per project settings
    • minimum log message length to avoid accidentally committing with an empty log message
    • language to use for the spell checker
  • Integration with issue tracking systemsTortoiseSVN provides a flexible mechanism to integrate any web based bug tracking system.
    • A separate input box to enter the issue number assigned to the commit, or coloring of the issue number directly in the log message itself
    • When showing all log messages, an extra column is added with the issue number. You can immediately see to which issue the commit belongs to.
    • Issue numbers are converted into links which open the webbrowser directly on the corresponding issue
    • Optional warning if a commit isn't assigned to an issue number
  • Helpful Tools
  • Available in many languages
  • TortoiseSVN is stable
    • Before every release, we create one or more "release candidates" for adventurous people to test first.
    • During development cycles, many people test intermediate builds. These are built every night automatically and made available to all our users. This helps finding bugs very early so they won't even get into an official release.
    • A big user community helps out with testing each build before we release it.
    • A custom crash report tool is included in every TortoiseSVN release which helps us fix the bugs much faster, even if you can't remember exactly what you did to trigger it.



Thursday, October 1, 2015

Apache2Triad

Deploying web servers for distributing specific content is a job tailored for advanced users and administrators. To facilitate these tasks, there are some utilities or software suites that are fully equipped for such purposes and Apache2Triad is one of them.
Image result for apache 2 triad description


Customizable installation procedure

Before getting to the core of the apps packed inside, it is necessary to spend a few minutes configuring the setup and thus avoid ending up with missing components and features.
Besides the core Apache2Triad files, the dedicated user and paths to the environment, there are many extras you can install in order to make things easier when putting the tools to work

Download Now Free

Oracle Java JDK 7 Source Files

Introduction

              When you are debugging your Java program in your favourite IDE (mine is Eclipse) you sometimes happen to debug into the Java class libraries. This is not bad per se, usually from looking at the code you learn something about the class library's implementation and why it does not do what you might have expected.
              But often you end up in Java class libraries, where there is debug information attached in the class files (at least those shipped with the JDK) but no source is present in src.zip. Official statement is that src.zip only contains publicly documented classes (i. e. the same ones that are covered by the official Javadoc). But since JDK7 is based on OpenJDK, and almost every class in JDK7 is identical to the one shipped with or generated by OpenJDK, why not take the classes from OpenJDK instead?
That's what I was doing – and it cost me approximately one week time to find all classes in the huge code base of OpenJDK, find the scripts that generated those classes that were not included and create an ant script to automatically scavenge those files from the published OpenJDK resources. For updated JDK7 versions like jdk7u1 there are no official OpenJDK source downloads available, but they are included in the JDK7 Mercurial Repository.


























            Ketika Anda debugging program Java Anda dalam IDE favorit Anda (saya adalah Eclipse) Anda kadang-kadang terjadi untuk debug ke perpustakaan kelas Java. Ini tidak buruk per se, biasanya dari melihat kode Anda belajar sesuatu tentang pelaksanaan kelas perpustakaan dan mengapa itu tidak melakukan apa yang Anda mungkin telah diharapkan.

              Tapi sering Anda berakhir di perpustakaan kelas Jawa, di mana ada debug informasi yang melekat dalam file kelas (setidaknya mereka dikirim dengan JDK) tapi ada sumber hadir dalam src.zip. Pernyataan resmi adalah bahwa src.zip hanya berisi kelas didokumentasikan publik (yaitu orang-orang yang sama yang tercakup oleh Javadoc resmi). Tapi karena JDK7 didasarkan pada OpenJDK, dan hampir setiap kelas di JDK7 identik dengan satu dikirimkan dengan atau yang dihasilkan oleh OpenJDK, mengapa tidak mengambil kelas dari OpenJDK bukan?

          Itulah apa yang saya lakukan - dan harganya sekitar satu minggu waktu untuk menemukan semua kelas di basis kode besar OpenJDK, menemukan script yang dihasilkan kelas-kelas yang tidak termasuk dan membuat skrip semut untuk secara otomatis mengais file-file dari diterbitkan sumber OpenJDK. Untuk update JDK7 versi seperti jdk7u1 tidak ada resmi download sumber OpenJDK tersedia, tetapi mereka termasuk dalam JDK7 Mercurial Repository.
  
 



Tuesday, September 29, 2015

XAMPP

XAMPP is a very easy to install Apache Distribution for Linux, Solaris, Windows and Mac OS X. The package includes the Apache web server, MySQL, PHP, Perl, a FTP server and phpMyAdmin.

Image result for xampp function
PHP is a very well known in the world of web-development & is a powerful tool for making dynamic and interactive Web pages. The real strength of PHP is provided by its functions.

In this section we are going to understand with php functions. You must installed a XAMPP server on your PC.

 
 Syntax of a PHP function

function funName()
{
    desired code;
}

We can create functions by various ways in our php scripting some of them are as under :

  1. Creation of function in PHP
  2. Creation of function in PHP : Adding arguments/parameters
  3. Creation of function in PHP : Two parameters
  4. Creation of PHP function that returns the value
Creation of a function in PHP

A function will be executed by a call to the function. Functions takes the responsibility to perform a work so its very important part any technology we use.This is the php scripting for creation a function named display(). In this function only a name "Deepak dwij " will print .When we call a function display() it will print a name Deepak dwij.

Download Free