Archive

Archive for the ‘screencast’ Category

[VIDEO GUIDE] Clean hard on your Windows PC with CCleaner

March 13th, 2011 No comments

CCleaner is a good solution if you want to keep your system clean and fast, to release the unnecessary and without giving up a friendly interface that simplifies every operation.

CCleaner is a tool aimed at maintaining overall system. Its use allows you to clean your PC from clutter, improving the overall performance and at the same time freeing up disk space.

With CCleaner you how to delete temporary files and log files on your computer and reputable third-party software. You can also clear your history, your cache and cookies from Internet Explorer, Firefox and Chrome, remove invalid registry keys, uninstall any application directly from the main and clean your trash. CCleaner is in Italian and is compatible with Windows 7.

Read on to see the Video Guide

Read more…

[Video] Learn to program in Java: 3 Lesson - JFrame Window

January 25th, 2011 2 comments

We continue our course in Java by posting the video / screencast of 3 lesson of the course learning to program in Java. In this lesson you will achieve a Windows box using the swing chart framework and the class JFrame. Click to watch the video of the lesson, I recommend making it easier to see the video full screen by clicking on the button with the 4 arrows, After the jump you will find the lesson.

Read more…

Clean up your PC from Malware by Malwarebytes’ Anti-Malware

January 22nd, 2011 No comments

After the article Installation and configuration of the free Avira Antivir Avira continue the cycle of articles on security and optimize PC with Windows systems talking about the removal of Malware especially for all those malicious code that can not eliminate the traditional anti-virus like Avira. To see the video guide and click on Continue Reading to see it better I suggest you view it in full screen by clicking on the button with the 4 arrows.

Read more…

[Video] Learn to program in Java: 2 Lesson – Hello World

January 14th, 2011 6 comments

Today ,like every weekend, public the video / screencast of the new class of the course learning to program in Java. In this lesson we will make a small program to learn to become familiar with Java. For a better enjoyment I recommend you watch the video full screen by clicking on the button with the 4 arrows, After the jump you will find the lesson.

Read more…

Python: how to transform the Thunderbird address book into a simple list of email addresses

January 2nd, 2010 No comments

Python is a high-level programming language interpreted, object oriented, suitable, Other uses, to develop distributed applications, scripting, and numerical computation.

Python programming language, consider a very powerful and versatile and that is why I used it to transform the address book of e-mail Mozilla Thunderbird in a list in a usable newsletter.

Here is my first screencast my blog so you can better understand what I mean, Click on the button-shaped square in the lower right of the video to the left of the volume to view full screen…Good vision and tell me what you think.

Get the Flash Player to see this content.

Code:


from string import *

def findrev(stro,strf,pos):
    i = pos
    while stro[i]!=strf:
        i = i - 1
    return i

fn = open("rubrica.csv")
fm = open("NewsLetter.txt","w")

while 1:
    line = fn.readline()
    if not line:
            break
    else:
            posc = find(line,"@",0)
            posv1 = find(line,",",posc)
            posv = findrev(line,",",posc)

            fm.writelines(line[posv+1:posv1]+','+'\n')

pass # do something

fm.writelines("bruni.marco@gmail.com")
fm.close()
fn.close()

print "Finito, ho creato la NewsLetter"