Fabio's profileFabio Cerullo's BlogPhotosBlogLists Tools Help

Blog


    31/05/2006

    Microsoft Bitlocker

    Microsoft is making it much more difficult to access and steal a business's vital data from one of its PCs.
    The giant software will deliver Bitlocker, a hard drive encryption tool, as part of its forthcoming Windows Vista operating system, which is now in its second beta and is due to large businesses in November. Bitlocker, which will come with Windows Vista Enterprise and Ultimate editions, can be used to encrypt an entire hard drive, making it more difficult for someone to access the computer's data if it is lost or stolen.

    Howto: Get Command Prompt inside Symantec LiveState Recovery 6.0 Recovery Disk

    You booted to the Symantec Recovery Disk that is included with Symantec LiveState Recovery 6.0 and need to know how to get to a command prompt.

    Here is the solution for that:

    To access the command prompt, click the uppercase "S" in the main menu title, Symantec LiveState™ Recovery and the command prompt will pop-up in your window.

    LSR Manager 6: Problems deploying agent to Windows 2000

    There are sometimes when you try to deploy an agent to a Windows 2000 and you receive an error. This is related to a communication problem between the LSRM Server and the client.

    In Windows 2000 you have the possibility to disable NetBIOS over TCP/IP. You do this by right-clicking on My Network Places and selecting Properties. Then right-click on the appropriate Local Area Connection icon, and select Properties. Next, click on Internet Protocol (TCP/IP) and Properties. Now click Advanced, and select the WINS tab. There you can enable or disable NetBIOS over TCP/IP. The changes take effect immediately without rebooting the system
    25/05/2006

    World Cup 2006 for Pocket PC

    A friend of mine developed this software to use with Pocket PC's that allows you to follow the World Cup 2006.
     
     
    Features of the software:
    -List of Teams
    -Flag of the team
    -Score of the team
    -Schedule of the games to play
    -Stadiums
    -Information about stadiums
    -Pictures
    -Group Management
    -Game Schedule with date,time, stadium
    -Teams points with goals
    -Games to play
    -Result of the games
    -If you select a game you can insert the information about it.
    -Automatic calculation of the points
    -Statistics
    -You can see all the groups with all the information about how many games they win,lose,deal, goals and points.
    - You can also insert the information

    Try it for free, you can insert the information about Group A and B.
     
    Please let me know your feedback as he is starting-up a mobile software company and would like to hear comments from anyone.
     
    Thank you very much
     
    Fabio
    23/05/2006

    The Ultra-Mobile PC market is starting a fight...

    As an alternative to Microsoft Ultra-PC solution called Origami, Sony has pre-released a version of their own called VAIO UX Micro PC  and it looks really tempting to buy...more information about both of them could be found in the following links:
     
     
    This for sure will be an emerging market to take into account for the near future...
     

    Recovering from Symantec Ghost Virtual Boot Partition

    Sometimes it happens that you get stuck in the Ghost Virtual Boot Partition, and can’t boot back into Windows.
     
    The good news is that getting back to Windows is really easy once you know how to do it.

    Here is how it is done:

    • Stop Ghost and go to a DOS prompt:
    • If running the Ghost DOS client, NGctdos.exe, type Ctrl+X
    • If running the Ghost executable, Ghost.exe, type Ctrl+C
    • Change to the Ghost directory.
    • Type cd Ghost
    • Type ngctdos -hide

    This last command hides the Ghost Boot Partition, makes the Windows partition active, and restarts the computer.

    Joining Samba Domains with Symantec Ghost

    Are you wondering how to join a Samba domain with Symantec Ghost?
     
    Here you have the answer from a enthusiast who managed to do it without hassle...
     
     
    Great stuff Alan!!
     
     
    20/05/2006

    Get ready for Windows Vista!

    Are you wondering if your PC will be compatible with the new Operating System from Microsoft?
     
    If so, please check the following website that will determine if your current PC is ready for an upgrade to Windows Vista. It will also help you to choose the edition of Windows Vista that's right for you. Download the Upgrade Advisor beta and run an analysis of your current PC and use the detailed feedback to ensure that your PC is ready for the edition of Windows Vista that you want.
     
     
     
    14/05/2006

    Gustavo Cerati is coming to the UK!!

    Great news for Cerati fans in the UK!! He will be performing his new album "Ahi Vamos" next 12th October in "The Forum" - Kentish Town - London - NW5 1JY.
     
    The tickets could be purchased online at www.ticketweb.co.uk
     
    If you are wondering who is Cerati have a look at the biography below but in few terms I should say he is an artist that represents the best of Argentine Rock & Pop music...  in other words.. you shouldn't miss this concert.
     
    As the guitarist/vocalist of popular rock band Soda Stereo during the 1980s, Gustavo Cerati has continued to impress listeners as a soloist. His debut solo single, "Amor Amarillo," was released in 1983 and remains a classic blend of acoustic instrumentation and electronic enhancement. His debut solo album Whiff, released in 1999, was marked by subtle, Abbey Road-like melodies. His second solo album, 11 Episodios Sinfonicos, released in 2001, featured his earlier hits reinterpreted by a 48-piece classical orchestra directed by Alexander Teran and was recorded during a concert at Theater Reconciled. Propelled by Cerati's guitar playing and singing, Soda Stereo reached the heights of Argentinean rock success. Performing to sold-out audiences in Paraguay, Mexico, and Argentina, the group attracted a fanatical following. While on tour, they were forced to remain in their hotels. Their 1986 album Signos was celebrated for its rich mixture of rock, reggae, and ska, while their 1988 recording Doble Vida (Double Life) was produced by Carlos Alomar, whose past credits include work with David Bowie, John Lennon, Paul McCartney, and Mick Jagger. The group disbanded in 1997.
     

    Why Gmail is so incredibly fast? The answer is Ajax...

    You've probably noticed that Gmail's interface is extremely fast when compared to other web-based email systems like Yahoo! Mail and Hotmail. This is a result of Gmail's placement of the UI engine on the client-side as a JavaScript module. Whenever you log in to Gmail, a copy of the UI engine is loaded into one of the HTML page frames and remains there for the duration of your session.
     
    So.. what is Ajax?
     

    Ajax isn’t a technology. It’s really several technologies, each flourishing in its own right, coming together in powerful new ways. Ajax incorporates:

     

    Every user action that normally would generate an HTTP request takes the form of a JavaScript call to the Ajax engine instead. Any response to a user action that doesn’t require a trip back to the server — such as simple data validation, editing data in memory, and even some navigation — the engine handles on its own. If the engine needs something from the server in order to respond — if it’s submitting data for processing, loading additional interface code, or retrieving new data — the engine makes those requests asynchronously, usually using XML, without stalling a user’s interaction with the application.

     

    An Ajax application eliminates the start-stop-start-stop nature of interaction on the Web by introducing an intermediary — an Ajax engine — between the user and the server. It seems like adding a layer to the application would make it less responsive, but the opposite is true.

     

    Instead of loading a webpage, at the start of the session, the browser loads an Ajax engine — written in JavaScript and usually tucked away in a hidden frame. This engine is responsible for both rendering the interface the user sees and communicating with the server on the user’s behalf. The Ajax engine allows the user’s interaction with the application to happen asynchronously — independent of communication with the server. So the user is never staring at a blank browser window and an hourglass icon, waiting around for the server to do something.

    5/05/2006

    Gumball 3000.. just for fanatics..

    If you like super expensive sport cars you must have heard about Gumball 3000... and if you hadn't you REALLY need to know about it...
     
    Last night I was watching the TV when I came across a programme called The Ultimate Gumballer.. at first I thought it was some kind of sports programme with balls.. but after a couple of minutes I realized that I'd discovered a new heaven for adrenaline lovers.
     
    The idea of the programme is a  rally around America and Europe where there are no rules but just speeding and avoid the police.. and everything is broadcast in TV.. so plenty of chases, escapes and crashes are part of the show... if you want to know more check the website: www.gumball3000.com