Replace your Windows Movie Maker with VideoSpin

Written on February 11, 2008 – 1:35 pm | by Ali Sabki |

Videospin

VideoSpin is a brand new tool that allows you to create your own movie clips in minutes using your own videos and pictures.

With this fully functional video editing software you can:

* Mix videos, photos and music together
* Add titles and transitions
* NEW! Upload to the web in a snap!
* NEW! Direct upload to YouTube and Flash support*
* And it’s FREE!

[read more- VideoSpin]

Popularity: 4% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Apple Adds New iPhone & iPod touch Models

Written on February 6, 2008 – 3:16 pm | by Ali Sabki |

new iphone

Customers who’d like to carry more music, photos, and videos with them now have new models of iPhone and iPod touch with double the memory from which to choose. The revolutionary iPhone now comes in a new 16GB model for $499. It joins the 8GB model for $399. And the iPod touch now comes in a new 32GB model for $499. It joins the 16GB and 8GB models for $399 and $299, respectively.

iPhone is a revolutionary new mobile phone that allows you to make a call by simply tapping a name or number in your address book, a favorites list, or a call log. It also automatically syncs all your contacts from a Windows PC, Mac, or Internet service. And it lets you select and listen to voicemail messages in whatever order you want — just like email. iPhone is available in an 8GB model for $399 and a new 16GB model for $499.


Read the rest of this entry »

Popularity: 13% [?]

Miro : Time to watch international tv on your computer.

Written on February 5, 2008 – 7:03 pm | by Ali Sabki |

Miro is searching on youtube....

Quite simply, Miro is a free application for channels of internet video (also known as ‘video podcasts and video rss). Miro is designed to be easy to use and to give you an elegant fullscreen viewing experience.

There are thousands of free internet video channels that you can watch. You’ll be able to download all the videos that each channel offers and when new ones are released, Miro will grab them automatically.

Unlike tiny videos on websites like YouTube, Miro videos are usually very high quality and look great when watched full screen. Since Miro downloads videos completely before you watch, your videos will never skip or stutter while they are playing.


Read the rest of this entry »

Popularity: 5% [?]

Control C make your ‘copy’ & ‘paste’ habits changes to different ways

Written on February 5, 2008 – 6:42 pm | by Ali Sabki |

 

 

Control C

What is ControlC? It’s pretty simple actually. Have you ever copied something on a webpage or in an email that you later needed to look at again but couldn’t remember where you saw it?

 

Have you ever copied a link to a webpage and couldn’t for the life of you remember the link later on?

 

ControlC fixes that. Anytime you copy textual content, ControlC will upload that text to our server to store under your account. When the text is uploaded, it is encrypted using your password as the key (which we will never have access to). When you need to retrieve the text, or would like to share it with other users, you can login to your account and make the items public, or simply review them for your own needs.

 

You can search other user’s copied links and text to find other people that share the same interests as you. You can make friendship relationships with other users, and star items of interest to make finding them again easy. You are encouraged to social interact with other users on our site - you will be surprised what you can find when you do!
History
ControlC is still young. Launched in early 2008, we have a ton of ideas to add to the site. For now enjoy what we have to offer, and please use our forums to provide feedback about the site and let us know what you want to see added!

Popularity: 3% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Cairo: An Upcoming Windows Shell Alternative

Written on February 5, 2008 – 6:24 pm | by Ali Sabki |

Cairo: An Upcoming Windows Shell Alternative
was originally created by Michael Ciarlo as a simple Samurize project containing a floating taskbar and hovering ’start’ menu. After a few weeks of work Michael abandoned the project; it had no future as a Samurize shell replacement and was limited by the program’s abilities.

A few weeks after development ended on the Samurize shell, Joseph LaFountain contacted Michael and offered to help develop the project in a different format: Desktop X. Accepting the offer, the two began working on concepts for the new Cairo shell. Once the project shifted away from the original floating taskbar and start menu concepts, both developers knew that Desktop X would not be an appropriate development platform. Days later, concept work began for a shell written in C#. Cairo was on its way to revolutionizing the Windows desktop.

Today, Cairo is being developed by a wonderful team of designers and programmers who all share a common goal: to redefine the desktop experience. Guided by fundamental design principles and attention to every detail, the following individuals distinguish Cairo as a leading shell replacement with their determination, wisdom, and selflessness.

Popularity: 11% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Guide on configuring Nokia phone as GPRS / 3G / EDGE / HSDPA modem

Written on February 1, 2008 – 7:44 pm | by Ali Sabki |

NOTE: Some parts of this tutorial is probably outdated.

This tutorial will cover steps that needs to be done to enabled your shiny new Nokia (almost any recent brand that have data connectivity, including N80, N81, N95, N93, 6680, 6630, etc.) to work as modem under Linux. I am using Ubuntu "Dapper Drake" for this guide. But it should be easily adapted to whatever Linux distribution your are using. Basically, your Nokia phone will be automatically detected using the cdc-acm driver. But this driver have some drawback for me. Up until kernel 2.6.15, I am experiencing problems with cdc-acm such as:

  • I cannot get full data transfer speed using cdc-acm driver. My 3G download rate stuck at around 144 kbps. This problem only manifest itself when you use the USB sync cable to connect to your Linux box. Using Bluetooth, you get full 384 kbps speed. Go figure…

  • It oops (crash) just to often. Unplug the USB cable, bang it crash. Battery flat, bang it crash again. After a while, it becomes rather tiring.

So, not willing to give up my Ubuntu, I started digging. Eventually I realized I can use the usbserial driver for my Nokia. And turns out, the usbserial is at least much better when used with my Nokia 6630 and 6680 when connected to USB sync cable compared to cdc-acm.

  • I get full 384 kbps on my Celcom 3G connection. Way to go!

  • More stable, and not prone to oops compared to cdc-acm. I can plug and unplug the USB cable for all that I care, the driver just gracefully recover.

Enough background, lets start working.

1. I am using kernel 2.6.15 provided in the stock Dapper. It should work with other 2.6 kernel. No idea whether it will work on 2.4 kernel though.

2. Make sure you have ppp package installed. Execute the following if you do not have ppp installed.

sudo apt-get install ppp

3. "Blacklist" your cdc-acm driver. Under Ubuntu, this can be easily achieved by this command:

sudo echo "blacklist cdc-acm" >> /etc/modprobe.d/blacklist
4. Tell Ubuntu to automatically load the usbserial module.
sudo echo "usbserial" >> /etc/modules
5. Now trickiest part, setting your phone device ID as the 
usbserial parameter.Issue the command lsusb.
bitubique@bitubique:~/$ lsusb

Bus 005 Device 006: ID 04cf:8818 Myson Century, Inc. Fast 3.5" External Storage

Bus 005 Device 001: ID 0000:0000

Bus 006 Device 001: ID 0000:0000

Bus 003 Device 001: ID 0000:0000

Bus 004 Device 001: ID 0000:0000

Bus 001 Device 005: ID 0a81:0101 Chesen Electronics Corp. Keyboard

Bus 001 Device 004: ID 1241:1177 Belkin F8E842-DL Mouse

Bus 001 Device 001: ID 0000:0000 Bus 002 Device 002: ID 0421:041e Nokia Mobile Phones

Bus 002 Device 001: ID 0000:0000

If you have your phone plugged with the USB sync cable, it should appear here with description "Nokia Mobile Phones". Notice the vendor ID and the product ID, 0421:041e. Vendor ID is 0421, product ID is 041e for Nokia 6680. We need to put these IDs into out modprobe options. This can be done with this command:

sudo echo "options usbserial vendor=0×0421 product=0×041e" >> /etc/modprobe.d/options

Notice you need to prefix the IDs with "0x" qualifier, since the ID is specified in hex.

6. Now load the module. Ensure we have unloaded the cdc-acm driver first. As root, execute the following.

rmmod cdc-acm

modprobe usbserial

7. Copy the following text and save it with name /etc/ppp/peers/provider. Especially, you need to change the line user "celcom3g" to the user name that your mobile operator assigned to use their GPRS / 3G Internet access. You probably need to become root user in order to write to /etc directory.

/dev/ttyUSB0    # Serial device to which the GPRS phone is connected
debug        # Comment this off, if you don’t need more info
# scripts to initialize the 3G / EDGE / GPRS modem 

connect /etc/ppp/peers/connect-chat
# AT commands used to ‘hangup’ the connection
disconnect /etc/ppp/peers/disconnect-chat
460800      # Serial port line speed
crtscts    # hardware flow control for cable
local        # Ignore carrier detect signal from the modem:
lcp-echo-failure 0
lcp-echo-interval 0
# IP addresses: 

# - accept peers idea of our local address and set address peer as 10.6.6.6
# (any address would do, since IPCP gives 0.0.0.0 to it)
# - if you use the 10. network at home or something and pppd rejects it,
# change the address to something else
:10.6.6.6
noipdefault        # pppd must not propose any IP address to the peer!
ipcp-accept-local    # Accept peers idea of our local address
defaultroute        # Add the ppp interface as default route to the IP routing table
replacedefaultroute    # New route should be our default route to Internet 

usepeerdns        # User DNS returned by server
noauth            # The phone is not required to authenticate
# Most phone do not support compression, so turn it off.
novj
nobsdcomp
novjccomp
nopcomp
noaccomp
# Username and password: 

# If username and password are required by the APN, put here the username
# and put the username-password combination to the secrets file:
# /etc/ppp/pap-secrets for PAP and /etc/ppp/chap-secrets for CHAP
# authentication. See pppd man pages for details.
user "celcom3g"        # Change this if you are not using Celcom 3G!
persist            # Persistent connection
maxfail 99999        # Retry and retry and retry if failed…

8. If your mobile operator requires you to give password to access the APN, then edit or create the file /etc/ppp/pap-secrets for PAP authentication or /etc/ppp/chap-secrets for CHAP authentication. The format should be as follows:

# Secrets for authentication using CHAP. Format:

# client server secret IP addresses

"celcom3g" * "celcom3g"

9. Copy the following text and save it as /etc/ppp/peers/connect-chat.

#!/bin/sh
exec chat                                               \
        TIMEOUT         5                               \
        ECHO            ON                              \
        ABORT           ‘\nBUSY\r’                      \

        ABORT           ‘\nERROR\r’                     \
        ABORT           ‘\nNO ANSWER\r’                 \
        ABORT           ‘\nNO CARRIER\r’                \
        ABORT           ‘\nNO DIALTONE\r’               \
        ABORT           ‘\nRINGING\r\n\r\nRINGING\r’    \
        ”              \rAT                            \
        TIMEOUT         12                              \
        SAY             "Press CTRL-C to close the connection at any stage!"    \

        SAY             "\ndefining PDP context…\n"   \
        OK              ATH                             \
        OK              ATE1                            \
        OK              ATD*99#                         \
        TIMEOUT         22                              \
        SAY             "\nwaiting for connect…\n"    \
        CONNECT         ""                              \
        SAY             "\nConnected." \
        SAY             "\nIf the following ppp negotiations fail,\n"   \

         SAY             "try restarting the phone.\n"

However, some network requires you to specify the APN. Thus, you need to add the following line after the "OK ATE1" line in the file /etc/ppp/peers/connect-chat.

OK              ‘AT+CGDCONT=1,"IP","your_apn_name","",0,0′   \

10. Copy the following text and save it as /etc/ppp/peers/disconnect-chat.

#!/bin/sh
# send break exec /usr/sbin/chat -V -s -S    \
ABORT           "BUSY"          \
ABORT           "ERROR"         \
ABORT           "NO DIALTONE"   \
SAY             "\nSending break to the modem\n"        \
""              "\K"            \
""              "\K"            \

""              "\K"            \
""              "\d\d+++\d\dATH"        \
SAY             "\nPDP context detached\n"

11. Both the file /etc/ppp/peers/connect-chat and /etc/ppp/peers/disconnect-chat should have executable bit set. Thus, issue this command to set it as executable;

chmod a+x /etc/ppp/peers/connect-chat

chmod a+x /etc/ppp/peers/disconnect-chat

12. Test your connection. Issue the command as root to check whether you are successful.

# pppd call provider
# ifconfig ppp0
ppp0      Link encap:Point-to-Point Protocol
         inet addr:10.176.226.135  P-t-P:10.6.6.6  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
          RX packets:38 errors:0 dropped:0 overruns:0 frame:0

          TX packets:41 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:3
          RX bytes:7700 (7.5 KiB)  TX bytes:3148 (3.0 KiB)

Voila! However, if the result of ifconfig ppp0 is blank, then you need to check /var/log/messages output to figure out why it failed.

13. Make your changes permanent. Under Ubuntu, this can be achieved easily creating an empty file ppp_on_boot in the /etc/ppp/ directory. The next time you restart your machine, connection to the Internet will be automatically established.

touch /etc/ppp/ppp_on_boot

14. Enjoy your connectivity!

 

[via- bitubique]

Popularity: 39% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

The Worst Workout Machine Ever - The Hawaii Chair

Written on February 1, 2008 – 12:47 pm | by Ali Sabki |

“If You Can Sit, You Can Get Fit, The Hawaii Chair” This might be the most absurd invention idea ever. If you own one of these, then I sincerely hope you get hit by a bus… in front of your family… on Christmas… while holding all their presents….


read more | digg story

Popularity: 4% [?]

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]
 

This site is design to perform exactly for Firefox only. Its the best browser in the planet. So, why dont you just ?

firefoxreferrals3

 Subscribe in a reader Or, subscribe via email:

Enter your email address: