Posts

Showing posts with the label Tech

What Happens When Domain Names Expire?

Image
Ever wonder what happens when a domain name expires? If the domain name registration, reservation, renewal and expiration process seems a little murky to you, you are not alone. The "expiration" process is particularly misunderstood (and complicated), and it is very helpful to know how it works, particularly when watching a parked domain, or one that is pending deletion, and determining whether to try and buy it from the domain owner, or put it on "back-order" with one of the registrars, or take some other action. There is an entire industry that does nothing but try to exploit expiring domain names, and the process and nomenclature is explained in excellent detail at this site. Here is a quick summary from the reference site (at least for .com/.net/.org/.info/.biz/.us. domains): Generally speaking, once a domain expires, the owner has 1-75 days to renew it, and the costs associated with a renewal usually increase as the domain moves from Hold (Registrar-H...

Great Linux Guide.

http://ashutoshlinuxnotes.blogspot.in/p/18.html Hope you guys enjoy. good night.

Michael Dell & Bill Gates Entrevistas !

fonte: http://www.c-span.org/video/?324654-1/michael-dell-remarks-economic-club-washington MARCH 4, 2015 Michael Dell Remarks at the Economic Club of Washington Michael Dell, founder and chief executive of computer technology firm Dell Inc., delivered keynote remarks before a breakfast event hosted by the Economic Club of Washington. He talked about his experience of dropping out of college and starting his company at the age of 19, and the ongoing impact of technology and innovation on the global economy. Março 4, 2015 Michael Dell observações no Clube Económico de Washington Michael Dell , fundador e executivo-chefe da empresa de tecnologia de computadores Dell Inc., entregou observações keynote antes de um evento de pequeno-almoço organizada pelo Clube Econômico de Washington. Ele falou sobre a sua experiência de abandonar a faculdade e iniciar sua empresa com a idade de 19 anos, e o impacto contínuo da tecnologia e da inovação na economia global. Bill Gates entrevista co...

The Startup Kids - Filme Completo

The Startup Kids is a documentary about the growing number of young web dynamos such as the founders of Vimeo, Soundcloud, Kiip, InDinero, Dropbox, and Foodspotting in the U.S. and Europe. Release Date: 2012 Duration: 55 min Cast: Timothy C. Draper, Trip Adler, Ben Way, Ping Li, Hermione Way, Brian Wong, Zach Klein, Leah Culver, Morten Lund, Loïc Le Meur, Ben Tompkins, Bryce Roberts, James Lindenbaum, Drew Houston, Jessica Mah, Alexander Ljung, Alexa Andrzejewski, Kristian Segerstrale, Carter Cleveland, Sam Lessin, Daniel Levine, Mg Siegler, Mike Butcher (Show Less) Categories: Movies, Biography, Documentary The Startup Kids is a documentary about young web entrepreneurs in the U.S. and Europe. It contains interviews with founders of Vimeo, Dropbox, Soundcloud, Debito and more who talk about how they started their company and their lives as an entrepreneur. Along with that people from the tech scene speaks about the startup environment including the venture capitalist Tim D...

Advanced Meta tag Generator

Advanced META Tag Generator Title: Author: Subject: Description: Keywords: Generator: Language: Expires: Abstract: Copyright: Designer: Publisher: Revisit-After: Distribution: Select One 1. Global 2. Local 3. Intern Use Robots: Select One 1. All 2. None 3. Index 4. No Index 5. Follow 6. No Follow

Locating countries from IP Addresses

1. Converting an IP address to an IP Number 2.Retrieving the Country Name and Country Code from the IP Number 1. Converting an IP address to an IP Number IP address (IPv4 / IPv6) is divided into 4 sub-blocks. Each sub-block has a different weight number each powered by 256. IP number is being used in the database because it is efficient to search between a range of number in database. Beginning IP number and Ending IP Number are calculated based on following formula: IP Number = 16777216*w + 65536*x + 256*y + z     ( Formula 1 ) where IP Address = w.x.y.z For example, if IP address is "202.186.13.4", then its IP Number "3401190660" is based on the Formula 1 . IP Address = 202.186.13.4 So, w = 202, x = 186, y = 13 and z = 4 IP Number = 16777216*202 + 65536*186 + 256*13 + 4 = 3388997632 + 12189696 + 3328 + 4 = 3401190660 To reverse IP number to IP address, w = int ( IP Number / 16777216 ) % 256 x = int ( IP Number / 65536    ) % 25...

Linux LAMP - Virtual Hosts Configuration

Hello Linuxers this article may be helpful to set-up virtual hosts on a Linux Box. The purpose of Virtual-hosts is to use different domains or multiple websites being served/hosted from one single web-server e.g. Apache2 and also organize them by directory, this can be done via name-based or IP-based virtual hosts. In this case I use name-based website on a single ip address. For example we need one directory on the document root for all files don't mix up in the same folder, so that each host has its own directory to avoid confusion. Our goal is to make a new host called site1.com - we wish to put all files at /var/www/site1/ and access it via http://www.site1.com or http://site1.com We know the Document Root is in /var/www/ that is explicit defined in /etc/apache2/sites-enabled/default Here are the commands to make a virtual-host just repeat to create new ones. Virtual-host set-up configuration sudo mkdir -p /var/www/site1/public_html sudo chown -R $USER:$USER /va...

Linux LAMP (Linux, Apache, MySQL, PHP)

  Install Apache sudo apt-get install apache2 Testing Apache http://localhost/ Install PHP sudo apt-get install php5 libapache2-mod-php5 Step: Eventually you need to: sudo /etc/init.d/apache2 restart Test PHP Step: Let's test if PHP is working correctly. sudo nano /var/www/index.php or... sudo echo “<?php phpinfo(); ?>” > /var/www/index.php Step 3. Save and close the file. Step 4. Now open you're web browser and type the following into the web address: http://localhost/index.php (It will show you the page that has all information about your php. If you have prior experience of installing php in some other OS, you must have seen this page.) Congrats you have now installed both Apache and PHP! Install MySQL To finish this guide up we will install MySQL. Step 1. Once again open up the amazing Terminal and then copy/paste or type this line: sudo apt-get install mysql-server Step 2 (optional). In order for other computers on your network to view the server you have cre...

Clean Internet Explorer with a batch script.

This script is very useful to clean Internet Explorer Temporary files. Instructions: Copy the following code into a normal text file, but save it with .bat extension. Example: I open notepad paste this code there and save as clean.bat . When i say .bat extension i mean to turn file.txt into clean.bat . It doesn't matter choose a different name but i believe some names can't be used because the cmd interpreter reads the name of the file that is called to run and sometimes get into confusion if the script as name of windows command ( Ex: you couldn't name it dir.bat). If you can't change a file extension you will need to go to -> my computer -> (on the top bar) Tools -> Folder Options and here select View tab and here uncheck Hide extensions for known file types . @ECHO OFF ECHO Deleting current user's Temporary Files, Cookies, History, Form Data and Stored Passwords RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1 RunDll32.exe InetCpl.cpl,...

Create Linux Ubuntu Server Mini.iso Flash-Drive Installation

Hi there! Preparing and Creating Flash drive Installation. Sometimes or always is helpful to have a Flash Drive with a Linux server installation files ready, because for some reason you wish to install and with a flash drive ready at hand in a matter of minutes it's goal acquired. whatever the location, only depending on some types of microprocessor.(School/Friend's house/Office/Supermarket PC) That's up to you. Requirements: -Linux Running -Flash drive 1 GB ( First Sectors Cleaned ) -Mini.iso -Syslinux Mtools -Lilo -Qemu ( Optional but helpful ) I hope I'm not forgetting anything. Let's go, open a Console Terminal Window to issue the commands to obtain or goal: sudo apt-get install syslinux mtools Lilo qemu wget URL/mini.iso ATM, we have the required software downloaded/installed ready to start doing things because the following commands (fdisk , mount, cp and others) usually come with most Linux distributions so let's continue: Insert Flash...

Allow x-server root login

I have Kubuntu installed with live cd and i wanted to be able to use the user interface "UI" as root user! So i searched on the net for a solution, and here it is: 1. Open a console terminal and get root prompt Code: sudo -s -> Enter your password 2. Find this file Code: ls -al /etc/kde3/kdm/kdmrc 3. Open it with a console text editor Code: nano /etc/kde3/kdm/kdmrc 4. Find Code: AllowRootLogin=false 5. Change to Code: AllowRootLogin=true 6: Saving and Closing Nano => "Console Text Editor" ctrl + x ; press y ; and press execute You're done - Hope it'll be helpful.

The Evolution of Microprocessor:

The 45 nanometer (45 nm) process is the next milestone (commercially viable as of November 2007) in semiconductor fabrication. Intel started mass producing 45 nm chips in November 2007, AMD is targeting 45 nm production in 2008, while IBM, Infineon, Samsung, and Chartered Semiconductor have already completed a common 45 nm process platform. By the end of 2008, SMIC will be the first China-based semiconductor company to move to 45 nm, having licensed the bulk 45 nm process from IBM. At IEDM 2007, more technical details of Intel's 45 nm process were revealed: * 160 nm gate pitch (73% of 65 nm generation) * 35 nm gate length (same as 65 nm generation) * 1 nm equivalent oxide thickness, with 7 Å transition layer * gate-last process using dummy polysilicon * 9 layers of low-k Cu interconnect, the last being a thick "redistribution" layer * contacts shaped more like rectangles than circles for local interconnection * lead-free packaging * 1.36 mA/um nFET drive current * 1.07 ...

My Shopping Online

Image
1 BELKIN WaveRest F8E262-BLU Gel Mouse Pad (Blue) 1 TRENDnet TEW-443PI 32-bit PCI 2.2 Bus Master Wireless Adapter 1 BELKIN WaveRest F8E244-BLK Gel Wrist Pad