Showing posts with label free software. Show all posts
Showing posts with label free software. Show all posts
Wednesday, 15 May 2013
Introduction to blender - Your free 3D designing software
Hey guys this is an introduction to blender with the sites forums to get you going with blender.
This is the official site of Blender, the 3D related software. click here.
Downloading the software
In there you can find the download page where you can download the Blender software according to your need.The software supports 32 or 64 bit Win Xp,Vista,Windows 7. For Linux x86 users, the OS must be new in order to be compatible and there are installers for 32 and 64 bit.Also there are installers for Mac OS and the Free BSD users.click here
Features & Gallery
In this page you can get an idea what blender can do.Also there are Photos and Videos created using the Blender software. click here
Education & Help
The Blender community support the user by giving us a number of tutorials in the form of docs and videos.Also there is forum where you can ask the community questions. click here.
Community
Blender is a open source project and it is developed by a community of developers.click here to know about it from the Blender home site.They have a blog too click here to see it.
Blender E-Shop
There is a E-Shop by the blender community where you can find thing they sell related to the software and also you can find cool stuff there. click here.
Other Sources
cg cookie
blender guru
blender nerd
These are some other resources(blogs) where you can find tutorials.
See a 3D film made by the use of Blender....
Tuesday, 7 May 2013
Setup and Using Cygwin to compile C programs
Get that Linux feeling - in Windows!
Cygwin is...
- a collection of tools which provide a Linux look and feel environment for Windows.
- a DLL (cygwin1.dll) which acts as a Linux API layer providing substantial Linux API functionality.
Cygwin isn't...
- a way to run native Linux apps on Windows. You must rebuild your application from source if you want it to run on Windows.
- a way to magically make native Windows apps aware of UNIX® functionality like signals, ptys, etc. Again, you need to build your appsfrom source if you want to take advantage of Cygwin functionality.
The Cygwin DLL currently works with all recent, commercially released x86 32 bit and 64 bit versions of Windows, with the exception of Windows CE and Windows NT4.
- For more information see the FAQ.
Installation
- Go to http://cygwin.com/install.html and download the setup.exe
- Then run it,you'll get this window,press run.
- Then continue with the installation ,use standard settings.
- When you get to the Cygwin Setup - Select Packages window,from which you can select components you want to install.
The default components and the "gcc-core: C Compiler" will be all we want.
To select this component, click the plus sign (+) next to the Devel category and scroll down until you find the gcc-core:C Compiler component.Click the word "skip" to select the component for installation.
- Then you can continue your installation without any difficulty in the normal way.
- Depending on your specific installation (Cygwin version) and configuration (components selected) of Cygwin, you may need to have Cygwin’s bin directory, referenced next, added to your system’s PATH environment variable.
One trick is to launch a Microsoft-based command shell (DOS window) by typing the keyword "cmd" from the Run dialog box accessed via the Start menu.From the c:\ prompt (in the command
shell), type:
PATH %PATH%;c:\cygwin\bin
This should do the trick.If necessary, consult your system’s documentation for more information on environment variables and specifically updating the PATH system variable.
________________________________________________________________
Writing & Compiling a C program...
- To create a new C program invoke a text editor such as nano or VIM by the command shown below.
nano hello.c or vim hello.c
- Once you've created a C program using an editor,you are ready to compile your C program using gcc. To do that type the following from the Cygwin UNIX shell:
- if your program compiles successfully, gcc will create a new executable file called "a.exe".(maybe "a.out").
- There is a specified syntax to create a executable file with a unique name
gcc programName -o executableName
so according to our example:
gcc hello.c -o hello.exe
- To execute your program from Cygwin UNIX prompt,type in the following:
./hello
Now you can easily use Cygwin to write , compile and run a C program.So if you find this useful, please don't forget to like and share it with others...
Thanks.
Saturday, 4 May 2013
Open Source - Get free software!!
- get Open Source software -
OK this is not a very unpopular topic for you I guess.But it's certainly worth mentioning.
Open source is a philosophy that promotes free distribution and access to an end products' design and implementation.
Open Source Software (OSS) is a software which is available in source code form. The source code and certain other rights normally reserved for copyright holders are provided under an open source license that permits users to study, change, improve and sometimes also redistribute the software itself commercially or non-commercially.
The power of this movement is expressed by a report by the Standish Group stating that adaptation of open-source software models has resulted in savings of about $60 billion per year to consumers.
So for the ones who don't use open source, why don't you?? well, I've used open source for about a year now and some of the software are VLC player & a firewall(very simple one) the only thing that make you fell these are not good is some times they crash ( VLC in the other hand never crash) . But for a programmer these are playgrounds to sharpen your skills.
This is a web site containing thousands of open source projects - source forge
And this is the official site - home
Open Source Software (OSS) is a software which is available in source code form. The source code and certain other rights normally reserved for copyright holders are provided under an open source license that permits users to study, change, improve and sometimes also redistribute the software itself commercially or non-commercially.
The power of this movement is expressed by a report by the Standish Group stating that adaptation of open-source software models has resulted in savings of about $60 billion per year to consumers.
So for the ones who don't use open source, why don't you?? well, I've used open source for about a year now and some of the software are VLC player & a firewall(very simple one) the only thing that make you fell these are not good is some times they crash ( VLC in the other hand never crash) . But for a programmer these are playgrounds to sharpen your skills.
This is a web site containing thousands of open source projects - source forge
And this is the official site - home
Subscribe to:
Posts (Atom)