Home

Login Form



  


Forgot your password?
Forgot your username?
Create an account

Who's Online

We have 3 guests online
If you find our free stuff useful, you can donate a little something with PayPal




thanks for your support!

(c) 2008 Centinaro.Com

NASA Image Of The Day

Astronauts: Past and Present
NASA Image Of The Day
An all-star gathering of legendary American astronauts appeared in Cleveland Aug. 29, 2008 to celebrate NASA's 50th anniversary. John Glenn, the first......
03 Sep 2008
800x6001024x768Large

SQLite and more PDF Print E-mail
Written by Carlos Ravelo   
Sunday, 31 August 2008 18:55

First sorry for the long time since my last post, I've been busy.

While playing around with SQLite I downloaded about 5 different free “explorers” and a couple different admin tools, then I found SQLite Administrator which completely rocks but, :( its only available for windows... yeah I know... for Linux you can try http://phpsqliteadmin.sourceforge.net/ which I haven't tried but seems to be a good choice. Its still in beta but it works fine, you can work with tables, write SQL, import/export, and much more. Definitely the best I've found.

(More on SQLite soon)

Also coming soon a first version of our Web-Based playlist creator and music streaming solution. It is a simple web based interface that uses a SQLite database to manage you music and the most simple streaming technique, so far it works with winamp in windows, with Totem on Gnome and with Amarok on KDE, I am sure it works with everybody else but I haven't tried it.

I am also going to post something on working with AD from PHP and using PHP as a script to automate several processes.

Last Updated ( Sunday, 31 August 2008 19:12 )
 
GNOME Panels icon groups PDF Print E-mail
Written by Carlos Ravelo   
Wednesday, 04 June 2008 22:18

GNOME panels are a great tool (much better than the windows task bar that's for sure). But.... BUT!!!

Aren't you sick of the launcher icons getting all over the place when you change resolution or some fullscreen game crashes? Or having to move them all one by one? 

Well suffer no more, install this gnome panel applet:  quick-lounge-applet

It acts kid of like the quickluch toolbar in windows, you can put launchers and if the applet runs out of space it will create a menu with them and the best thing:  You can move them ALL TOGETHER.

Hope this helps you as much as it helped me.

Last Updated ( Wednesday, 04 June 2008 22:19 )
 
A very interesting exhibition at the MoMA in NYC PDF Print E-mail
Written by Carlos Ravelo   
Friday, 23 May 2008 15:55

Design and the Elastic Mind

by Paola Antonelli

History is punctuated by uproariously wrong predictions made by savvy individuals blindsided by progress: Ferdinand Foch, Marshal of France in the early part of the twentieth century, stated in 1911 that airplanes were interesting toys of no use for the military; movie producer Darryl F. Zanuck forecast in 1946 the demise of  television; and Ken Olsen, of Digital Equipment Corporation, dismissed in 1977 the idea that anyone would  want to keep a computer at home. Revolutions are not easy on us, especially when they occur as  rapidly and as  frequently as they have in the past 150 years. A few exceptional individuals are already wired for change, and  the masses have a tendency to either admire them as visionaries or burn them at the stake as witches and  heretics. However, these individuals do not represent the majority. In order to step boldly into the future, the majority needs design.

Adaptability is an ancestral distinction of human intelligence, but today’s instant variations in rhythm call for something stronger: elasticity. he by-product of adaptability + acceleration, elasticity is the ability to negotiate  change and innovation without letting them interfere excessively with one’s own rhythms and goals. t means  being able to embrace progress, under-standing how to make it our own. One of design’s most fundamental tasks is to help people deal with change. Designers stand between revolutions and everyday life.  

Read more here:  http://www.moma.org/exhibitions/2008/elasticmind/

 

 
Intel Winmodem (Thinkpad T41) on Ubuntu 8.04 PDF Print E-mail
Written by Carlos Ravelo   
Saturday, 17 May 2008 17:25

I recently helped someone install Ubuntu 8.04 on a couple of IBM(now Lenovo) Thinkpad T41, and we couldn't get the modem to work... at first.

This is what comes up on $ lspci | grep Modem

00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 01)

In one of the laptops, we did: $ sudo modprobe snd_intel8x0m (mind the “m” at the end, there is a snd_intel8x0) and the modem came up on System --> Administration --> Hardware Drivers

In the other laptop if didn't work like this... so we had to investigate a little more. The modem in the T41 is a soft-modem or winmodem by Smartlink. There is a Linux driver available for this modems, the one we used is actually in the Ubuntu repositories, it's called sl-modem-daemon, the version at the time of this article was 2.9.10.

$ sudo apt-get sl-modem-daemon

This driver installs successfully and allowed my friend to connect to his dial-up ISP. Some of the more advanced features like voice modem and faxing are not supported in Linux yet though.

The driver creates a device at /dev/pts/0 and a symbolic link to it /dev/ttySL0. To dial we tried gnome-ppp and it works like a charm, but although this software is very good, it doesn't let you create more than one connection. So we used pppconfig (it comes installed by default in Ubuntu 8.04). Pppconfig lets you create, delete or edit connections, it asks you some questions about it:

$ sudo pppconfig

Create a connection

Provider name: this is the name of the connection, don't use spaces or special characters, keep it simple.

DNS: The best option is dynamic DNS but if your provider has different settings select the appropriated one.

Authentication protocol: PAP, Chat, CHAP. There is no best answer here, it depends on what your ISP supports. PAP is what MS Windows uses. Chat is also widely supported, CHAP is the same as PAP but encrypted. We selected Chat.

Login prompt: Leave it to the default.

Password prompt: leave it to the default.

User name and password.

Modem speed: Leave it to the default.

Method for dialing: Tone is for touch-up phones and pulses for the old phones with a dial.
Number to dial: Provided by your ISP.

Port where your modem is: The auto detect should work, if it doesn't don't worry, write it manually to:
/dev/ttySL0 (mind the uppercase/lowercase)

Now pppconfig is going to put all the settings together for you to review, but we are not done yet, select 'Advanced Options', find the option 'Add user'. Here write your username, not for the ISP, but the one you use to log-in to Ubuntu. This is going to give you permissions to use the connect and disconnect commands.
Select Previous, and then Finished.

Now to connect you will use: $ pon followed by the Provider name. e.g.: $ pon att

if pon gives you any problems or doesn't dial, try it with sudo, $ sudo pon Provider name and if that doesn't do it, check the device, it may not be /dev/ttySL0, but this is unlikely, also check if you wrote it exactly as here, with uppercase and lowercase characters. If still it doesn't work do this:

open two consoles, in one execute: $ sudo tail -f /var/log/messages
                                    in the other execute '$ pon Provider name' or '$ sudo pon Provider name'

in the console with tail you are going to see messages writen by pon, copy them and paste them here in the comments or in the forums so we can help you out.

To disconnect use '$ poff Provider name' or $ sudo poff Provider name

If you have any questions about this article use the comments.

Last Updated ( Saturday, 17 May 2008 17:34 )
 
What is Silk-Cotton Tree Computer Services? (SCTCS) PDF Print E-mail
Written by Gandazgul   
Wednesday, 14 May 2008 02:40

Logo thumb

Silk-Cotton Tree Computer Services (SCTree or SCTCS) is a computer support business focused on providing home users and small businesses with cost-effective, reliable IT solutions. Our services include software and hardware install, support, troubleshooting, networking, virus cleaning and after-recovery, backup and maintenance, and much more. If you have a problem with a gadget or your laptop/desktop just call us! With experienced technicians and a service of unparalleled quality we will find and deploy the best solution available.

In our forums page you can consult us about any tech-related problem. Ask anything, How do i do ...?, Which of this [...] is better for me? Do you think...? I want to do [...] What is the best way to do it?. If you cannot find an answer there or if you prefer, a technician from our staff can go to your place (home or office) FOR FREE* to help you with the problem. SCTCS is dedicated to make each of your computer experiences an enjoyable one.

We also develop custom software, if you need an application or solution, we can develop it for you for a very affordable price, this also includes websites, we take care of everything: buying the domain name, finding the right hosting for your budget, designing and developing the website and publishing it.If you are not satisfied with our work don't pay us a cent!

Thank you for considering our services, we operate the in-home/on-site services in Fairfield County, CT and Westchester County, NY**, USA. Our phone number is 203-610-4853 (CT Local Phone). You can contact us by email using the "Contact us" form in this website.

*The home visit and consultation is free, after seeing the problem our technician will agree on a solution and price with you, we guarantee the best price in town, so give us a try today!
**For a fee we will go farther.
Last Updated ( Thursday, 15 May 2008 18:10 )
 
« StartPrev12NextEnd »

Page 1 of 2

Polls

What do you think of the new website?
 

Archive

Leave your message

!Warning! JavaScript must be enabled for proper operation.
guiot says:
2008-07-10 07:58:48
Polls and '
I have a problem with the template Siteground with polls and '. Can you help-me ? Thanck you. denis.guiot@free.fr
2008-07-06 02:43:37
Scroll Bars
No but I can try, it shouldn't be hard to do.
Guest Tony says:
2008-06-30 05:38:44
Scroll bars
Have you been able to add scroll bars to this shout box?
Carlos Ravelo says:
2008-05-18 01:03:33
Website
Login form fixed, forum's up already.
Guest Gandazgul says:
2008-05-16 07:03:06
Re: Website under construction
Search and Polls are now working. Login form has a small glitch. Forum coming very soon.

Joomla! is Free Software released under the GNU/GPL License.