An amazing youtube music videos mashup!

An amazing youtube music videos mashup!

YouTube - 01.

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


How to add a swapfile to a linux machine

hd1

Sometimes we just need to add some swapspace to a linux machine to accomplish a job.

For such “one shot” needings we can add temporarily a swapfile that we can remove once the job is done.

To do this, these are the steps:

  1. We have to create the swapfile by using the command:  dd if=/dev/zero of=/swapfile bs=1024 count=1024000
    This example creates a 1GB swapfile (the “count” parameter is calculated multiplying the block size for the size in MBytes of the file we want to create)
  2. We have to make the created file a swapfile with: mkswap /swapfile
  3. We have to activate it with: swapon /swapfile

We can check the active swapfiles with: cat /proc/swaps or with: free
After the job is done, we can remove the swapfile in this way:

  1. swapoff /swapfile
  2. rm /swapfile
Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


Quick Reference Cards

Here is a real time saver!

A bunch of reference cards on O.S., programming languages, programs, etc.  etc.

Really useful!

Quick Reference Cards.

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


Dynamic Periodic Table

An interactive periodic table of elements.

It’s worth a visit!

Dynamic Periodic Table.

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


homepage fractals13

Have you ever been lost while watching a kaleidoscope? It’ amazing how complex patterns can arise from such simple device. Technology comes in help here giving you an online kaleidoscope to stare at.

homepage fractals13.

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


Builders’ Failures | Demonicious.com

This link explains why evil genius should be working all the time on plans to conquest and rule the world and not bothering with normal things!

Builders’ Failures | Demonicious.com.

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


A Python and Tkinter skeleton app.

This is just a simple window with a button to close it:

from Tkinter import *
root=Tk()
def wclose():
  root.destroy()
btn=Button(root,text="close",command=wclose)
btn.grid()
root.mainloop() 


Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


Command line PHP

Did you know you could use PHP from command line? Than you can create shell scripts with it?

Well… You can!

The only thing to do is to write down your piece of code and run it with:

php -f your_script.php

You can also insert as the first line:

#!/usr/bin/php

And by giving execution permissions to your script, you can launch it directly as this:

./your_script.php

If you want more details about using PHP for shell scripting you can go here, or here, or here.

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


Come vedere che distribuzione di linux è installata su un server

Per verificare la versione di linux installata in un server basta controllare il contenuto del file /etc/issue.

Es.:

root@report:~# cat /etc/issue
Ubuntu 6.06.2 LTS \n \l

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Ma.gnolia
  • Reddit
  • StumbleUpon
  • Technorati
  • BarraPunto
  • De.lirio.us
  • Live
  • MySpace
  • Segnalo

 


Google

Recent Searches