The last project named "Sintel" is better than expected .
I watched all projects and this is one of the best.
Sintel official page
tutorials, tips, tricks, commands, programming, linux, windows, database, sql, python, programming language, Fedora, drawing, painting, tutorial, tutorials
Saturday, October 2, 2010
Thursday, September 30, 2010
A new update for "SEO Starter Guide".
Google say us:
"About two years ago we published our first SEO Starter Guide, which we have since translated into 40 languages..." The new version is more explicit and useful to have it.
Unfortunately, it is not translated in all languages.
I wonder why Google does not use the open source community to translate them.
Now we can download the new update from here.
"About two years ago we published our first SEO Starter Guide, which we have since translated into 40 languages..." The new version is more explicit and useful to have it.
Unfortunately, it is not translated in all languages.
I wonder why Google does not use the open source community to translate them.
Now we can download the new update from here.
Wednesday, September 22, 2010
Python, pyuno and OpenOffice
Some time ago, I discovered Python. Then I saw that he can work with the OpenOffice.
Today I will briefly introduce how to do this. I do this in Windows XP, and Windows users could benefit.
In the folder : C:\Program Files\OpenOffice.org 3\program there was a file called python.exe.
Go there and type the following script to start OpenOffice:
We can use now python scripts to create any type of file used by OpenOffice.
Let show one image create with few lines :
Today I will briefly introduce how to do this. I do this in Windows XP, and Windows users could benefit.
In the folder : C:\Program Files\OpenOffice.org 3\program there was a file called python.exe.
Go there and type the following script to start OpenOffice:
import os
import subprocess
import sys
import time
import uno
NoConnectionException = uno.getClass("com.sun.star.connection.NoConnectException")
ooffice = 'soffice "-accept=socket,host=localhost,port=8100;urp;"'
def start_OOo():
'''Starts OpenOffice.org with a listening socket.'''
# Start OpenOffice.org and report any errors that
# occur.
try:
retcode = subprocess.call(ooffice, shell=True)
if retcode < 0:
print >>sys.stderr, \
"OOo was terminated by signal", \
-retcode
elif retcode > 0:
print >>sys.stderr, \
"OOo returned", \
retcode
except OSError, e:
print >>sys.stderr, "Execution failed:", e
# Terminate this process when OOo has closed.
raise SystemExit()
started_OOo = False
if not started_OOo:
print "Starting OOo"
started_OOo = True
start_OOo()
time.sleep(3)
print "OOo started"
This will start OpenOffice 3.We can use now python scripts to create any type of file used by OpenOffice.
Let show one image create with few lines :
Thursday, September 2, 2010
My linux counter machine
The Linux Counter website is a good site to share your machine's info.
We can use a script to registers or updates a machine's info in the counter.
The script allows here.
We can use add, update and send mail with info about your Linux machine.
We can add a crontab job with -c arg.
The user ID must only be able to send mail and write to its own home directory.
At Sep 02 2010 16:22:56 GMT, there are 125104 users registered 133701 machines registered My guess at the number of Linux users: Twenty-nine million
My number machine is :
We can use a script to registers or updates a machine's info in the counter.
The script allows here.
We can use add, update and send mail with info about your Linux machine.
We can add a crontab job with -c arg.
The user ID must only be able to send mail and write to its own home directory.
Sunday, August 22, 2010
Create html file with bash script using awk
We will present a more special method of using the Linux command line.
This method comes in helping those who need to text or HTML content.
In fact, a combination of Linux commands to get an output.
Suppose we have a list of jpeg files in folder image.
They should exist into HTML to be displayed.
As we know an image has the form:
First, I will display files:
In these variables put the beginning of each line:
First, remove the space before the file name.
The second will add the rest to complete the link.
The xargs command is used with echo and print the first part of the link.
Finally we use <<< aaaa.html to output the HTML file.
The full script is here .
This method comes in helping those who need to text or HTML content.
In fact, a combination of Linux commands to get an output.
Suppose we have a list of jpeg files in folder image.
They should exist into HTML to be displayed.
As we know an image has the form:
<img src="image/name_of_jpeg.jpg" alt="" />
The list of file is :11.jpg,12.jpg,13.jpg,14.jpg,15.jpg
My method uses two commands: ll and awk.First, I will display files:
$ ll | awk '/jpg/ {print $9}'
11.jpg
12.jpg
13.jpg
14.jpg
15.jpg
I created one variable f1.In these variables put the beginning of each line:
f1=‘<img src="image‘;
We add two sed commands.First, remove the space before the file name.
The second will add the rest to complete the link.
The xargs command is used with echo and print the first part of the link.
Finally we use <<< aaaa.html to output the HTML file.
The full script is here .
Friday, August 13, 2010
OpenGL - OpenGL Utility Toolkit (GLUT) on Fedora 13
The freeglut allows the user to create and manage windows containing OpenGL contexts.
This library allows the user to use mouse, keyboard and joystick functions.
This library allows the user to use mouse, keyboard and joystick functions.
#yum install freeglut-devel
...
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
freeglut-devel i686 2.6.0-5.fc13 updates 112 k
Installing for dependencies:
libX11-devel i686 1.3.1-3.fc13 fedora 1.0 M
libXau-devel i686 1.0.5-1.fc12 fedora 13 k
libXdamage-devel i686 1.1.2-2.fc13 fedora 8.8 k
libXext-devel i686 1.1.2-2.fc13 updates 77 k
libXfixes-devel i686 4.0.4-2.fc13 fedora 11 k
libXxf86vm-devel i686 1.1.0-1.fc13 fedora 17 k
libdrm-devel i686 2.4.21-2.fc13 updates 64 k
libxcb-devel i686 1.5-1.fc13 fedora 139 k
mesa-libGL-devel i686 7.8.1-8.fc13 updates 486 k
mesa-libGLU-devel i686 7.8.1-8.fc13 updates 111 k
xorg-x11-proto-devel noarch 7.4-36.fc13 fedora 250 k
Transaction Summary
================================================================================
Install 12 Package(s)
Some tutorials about glut on C programming language: Glut and C tutorial
Sunday, August 1, 2010
Frogatto new game crossplatform...
A new game is very nice and interesting. Named "Frogatto", this game should replace some older games from gnome.
Frogatto is freely available for Mac, Windows, and Linux.
Download it.
Frogatto is freely available for Mac, Windows, and Linux.
Download it.
Monday, July 19, 2010
Sunflow rendering on Fedora 13
How to install Sunflow ?
It's pretty simple. Download the zip archive from here.
Unzip and edit the sh script sunflow.sh
from the sunflow folder.
By default the script is :
It's pretty simple. Download the zip archive from here.
Unzip and edit the sh script sunflow.sh
from the sunflow folder.
By default the script is :
#/bin/sh
mem=1G
java -Xmx$mem -server -jar sunflow.jar $*
If we run this script will have this error :
$ sh sunflow.sh
Invalid maximum heap size: -Xmx1G
Could not create the Java virtual machine.
The solution is:
$ whereis java
java: /usr/bin/java ...
Now change the script :
#!/bin/bash
/usr/bin/java -Xmx1024M -server -jar sunflow.jar $*
And run it ...
$ sh sunflow.sh
The result is :Makehuman 3D on Fedora
Makehuman software installation is simple. You must be superuser, and then use yum:
A negative aspect of Fedora 13 is the lack of 3D software: Moonlight, Sunflow, Blender 2.5 or Loki Render
It looks like 3D graphics programs are not a priority.
$su
#yum search mhgui
#yum install mhgui.i686
#yum search makehuman
#yum install makehuman.i686
It will automatically install animorph-0.3-6.fc12.i686.A negative aspect of Fedora 13 is the lack of 3D software: Moonlight, Sunflow, Blender 2.5 or Loki Render
It looks like 3D graphics programs are not a priority.
Sunday, July 18, 2010
Fedora 13, FX 5200 and Yo Frankie!
Today I tried to run game "Yo Frankie."
The computer used in this case is older.
It has an FX 5200 video card with 1Gb RAM and processor ASUS motherboard.
I was not expecting a success but he did seem somewhat.
Here are some pictures:
In the "Options" I set no shaders
I must say that without activating the button "Maximize" will not be able to get to the "Back" from "Option".
The operating system is undoubtedly Fedora 13 with default graphics drivers.
The computer used in this case is older.
It has an FX 5200 video card with 1Gb RAM and processor ASUS motherboard.
I was not expecting a success but he did seem somewhat.
Here are some pictures:
In the "Options" I set no shaders
I must say that without activating the button "Maximize" will not be able to get to the "Back" from "Option".
The operating system is undoubtedly Fedora 13 with default graphics drivers.
client glx vendor string: Mesa Project and SGI
OpenGL vendor string: Mesa Project
OpenGL version string: 2.1 Mesa 7.8.1
Sunday, June 27, 2010
New tutorial about Eclipse.
I just finished a new tutorial.
The title of this tutorial is:
"Installing and configuring the Eclipse IDE - Eclipse Plugin for Google"
This tutorial can be found in the tutorials section on this site.
The title of this tutorial is:
"Installing and configuring the Eclipse IDE - Eclipse Plugin for Google"
This tutorial can be found in the tutorials section on this site.
Saturday, June 26, 2010
About my name ...
My name often poses difficulties for Americans.
CĂTĂLIN = Romanian masculine form of KATHERINE.
Pronunciation of CĂTĂLIN:
The surname is of Dacian origin.
My nickname is a combination.
And mean sum of myth from mythical and cat from Catalin or cat.
About KATHERINE
Pronounced: KATH-ə-rin, KATH-rin
From the Greek name Αικατερινη (Aikaterine). The etymology is debated: it could derive from the earlier Greek name ‘Εκατερινη (Hekaterine), which came from ‘εκατερος (hekateros) "each of the two"; it could derive from the name of the goddess HECATE; it could be related to Greek αικια (aikia) "torture"; or it could be from a Coptic name meaning "my consecration of your name". In the early Christian era it became associated with Greek καθαρος (katharos) "pure", and the Latin spelling was changed from Katerina to Katharina to reflect this.
The name was borne a semi-legendary 4th-century saint and martyr from Alexandria who was tortured on a spiked wheel. The saint was initially venerated in Syria, and the name was introduced to Western Europe by returning crusaders. It has been common in England since the 12th century in many different spellings, with Katherine and Catherine becoming standard in the later Middle Ages.
Famous bearers of the name include Catherine of Siena, a 14th-century mystic, and Catherine de' Medici, a 16th-century French queen. It was also borne by three of Henry VIII's wives, including Katherine of Aragon, and by two empresses of Russia, including Catherine the Great.
CĂTĂLIN = Romanian masculine form of KATHERINE.
Pronunciation of CĂTĂLIN:
The surname is of Dacian origin.
My nickname is a combination.
And mean sum of myth from mythical and cat from Catalin or cat.
About KATHERINE
Pronounced: KATH-ə-rin, KATH-rin
From the Greek name Αικατερινη (Aikaterine). The etymology is debated: it could derive from the earlier Greek name ‘Εκατερινη (Hekaterine), which came from ‘εκατερος (hekateros) "each of the two"; it could derive from the name of the goddess HECATE; it could be related to Greek αικια (aikia) "torture"; or it could be from a Coptic name meaning "my consecration of your name". In the early Christian era it became associated with Greek καθαρος (katharos) "pure", and the Latin spelling was changed from Katerina to Katharina to reflect this.
The name was borne a semi-legendary 4th-century saint and martyr from Alexandria who was tortured on a spiked wheel. The saint was initially venerated in Syria, and the name was introduced to Western Europe by returning crusaders. It has been common in England since the 12th century in many different spellings, with Katherine and Catherine becoming standard in the later Middle Ages.
Famous bearers of the name include Catherine of Siena, a 14th-century mystic, and Catherine de' Medici, a 16th-century French queen. It was also borne by three of Henry VIII's wives, including Katherine of Aragon, and by two empresses of Russia, including Catherine the Great.
Friday, June 25, 2010
Fedora 14 - next wallpaper concept
The new concept of wallpaper on which I worked.
I used Blender 3D. Rendering time was short, less than 2 min.
This is because I used some tricks.
It seems more appropriate for a wallpaper.
See bellow:
Find more about my work are here:
Activities_within_Fedora
I used Blender 3D. Rendering time was short, less than 2 min.
This is because I used some tricks.
It seems more appropriate for a wallpaper.
See bellow:
Find more about my work are here:
Activities_within_Fedora
Subscribe to:
Posts (Atom)