DonsDeals Blog

Hi my name is Don Bishop and this is my “Deal” Today... Basically, anything that interest me. Music, Computers, Software, Apps, Linux OS's - Distros, Space, Science, Auto's, Trucks, 4x4's, Motorcycles and other slightly interesting info that I find on the Web. There may, or may not be, any correlation between my Posts. Just whatever interests me at the time. I hope someone out there finds some of this interesting too!:)

Search My Blog

Wednesday, February 29, 2012

How to download recursively from an FTP site in the Command Line

This Article Discusses Mget and Wget. Wget is the one that interests me. There's more on the page though. See the link below...

Don


Linuxaria – Everything about GNU/Linux and Open source How to download recursively from an FTP site (in the Command Line)

Skipping on Down...

Wget

GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc.
So this seem the perfect tool to be used on a server, also as plus wget is available for sure in any Linux distribution repository and this make installing it trivial.

The basic syntax for wget is

wget ftp://myusername:mypassword@ftp.yoursite.com/yourfile 

With a command like this one you use the FTP protocol with account myusername and the password mypassword to donwload from ftp.yoursite.com the file yourfile.
But we need some extra options to get a recursive download from that FTP site.

Extra Options

-r –recursive Turn on recursive retrieving.

-l depth –level=depth Specify recursion maximum depth level depth. The default maximum depth is 5.

So our command becomes:

wget -r --level=99 ftp://myusername:mypassword@ftp.yoursite.com/ 

In this way starting from the root directory wget download recursively down to 99 levels (or you can use inf for infinite)


Or you can use the -m option (that stands for mirror)
The -m option turns on mirroring i.e. it turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory listings:

wget -m ftp://myusername:mypassword@ftp.yoursite.com/ 

If like me you have a really big site i suggest to run it with a nohup in front of the command and run it in background.

A final tip for wget, if you have to re-run it with the same site, you can also use the option -nc, in this way the files will not be downloaded 2 times.

-nc –no-clobber
If a file is downloaded more than once in the same directory, Wget’s behavior depends on a few options, including -nc. In certain cases, the local file will be clobbered, or overwritten, upon repeated download. In other cases it will be preserved.

When running Wget with -r or -p, but without -N, -nd, or -nc, re-downloading a file will result in the new copy simply overwriting the old. Adding -nc will prevent this behavior, instead causing the original version to be preserved and any newer copies on the server to be ignored.

Read More...
http://linuxaria.com/howto/how-to-download-recursively-from-an-ftp-site?lang=en

Popular Posts:

  • The Best Filesystem for an external hard disk of 1TB with cross platform support.
  • Synergy! as many PCs as you like with just one keyboard and one mouse!
  • 4 Linux programs to open a Remote Desktop on Windows
  • Do you want to turn your old PC into a digital Jukebox? Here’s a step by step guide
  • Miro Internet TV: Internet TV for Ubuntu Desktop

Related posts:

  1. Wget for fun
  2. PAC Manager: All your Connection are belong to us
  3. Synergy! as many PCs as you like with just one keyboard and one mouse!


Posted by Don's Deals Blog at 1:00 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Tuesday, February 28, 2012

Mozilla Boot to Gecko Project and Open Web Devices (OWD)

These are some very interesting New Projects. The Mozilla Boot to Gecko Project and Open Web Devices (OWD) Projects should add some great Open Resources to Our Web, Mobile and Computing Lives!:) Check it out....

Don

Bringing the Open Web to Mobile Devices

Welcome to a new, open and powerful mobile world!

We launched the Boot to Gecko project to enable the Open Web as a platform for mobile devices. We’re making innovation possible by driving the development of new Web standards.

Read More...
http://www.mozilla.org/en-US/b2g/

More Information

  • About the project
  • FAQ
  • Brendan Eich on the Mobile Web API Evolution

Mozilla : Open Web Applications


Video Link...
http://www.youtube.com/watch?v=ErqCqwkwIDE

The Boot to Gecko Project


Video Link...
http://www.youtube.com/watch?v=1pPuWEgKerY


Boot to Gecko (B2G) - MozillaWiki

B2G

Home » B2G

This page is edited by brendan, cjones, gal. Please don't change without permission.

Contents

  • 1 Booting to the web
  • 2 Is B2G based on Android?
  • 3 FAQ
  • 4 Roadmap
  • 5 Meetings
    • 5.1 Past meeting notes
  • 6 Contributing
  • 7 B2G low-level work
  • 8 User Interface
  • 9 Subpages of B2G

Booting to the web

Mozilla believes that the web can displace proprietary, single-vendor stacks for application development. To make open web technologies a better basis for future applications on mobile and desktop alike, we need to keep pushing the envelope of the web to include --- and in places exceed --- the capabilities of the competing stacks in question.

We also need a hill to take, in order to scope and focus our efforts. Recently we saw the pdf.js project expose small gaps that needed filling in order for "HTML5" to be a superset of PDF. We want to take a bigger step now, and find the gaps that keep web developers from being able to build apps that are --- in every way --- the equals of native apps built for the iPhone, Android, and WP7.

To that end, we started a project we’re calling Boot to Gecko (B2G) to pursue the goal of building a complete, standalone operating system for the open web. It’s requires work in a number of areas.

  • New web APIs: build prototype APIs for exposing device and OS capabilities to content (Telephony, SMS, Camera, USB, Bluetooth, NFC, etc.)
  • Privilege model: making sure that these new capabilities are safely exposed to pages and applications
  • Booting: prototype a low-level substrate for mobile devices (phones and tablets)
  • Applications: choose and port or build apps to prove out and prioritize the power of the system.

We will do this work in the open, we will release the source in real-time, we will take all successful additions to an appropriate standards group, and we will track changes that come out of that process. We aren't trying to have these native-grade apps just run on Firefox, we're trying to have them run on the web.

This project is in its early stages; some pieces of it are only captured in our heads today, others aren’t fully explored. We’re talking about it now because we want expertise from all over Mozilla -- and from people who aren’t yet part of Mozilla -- to inform and build the project we’re outlining here.

Is B2G based on Android?

No. B2G uses some of the same low-level building blocks used in Android (Linux kernel, libusb, etc) in order to reduce the burden on ODMs/OEMs to bring up B2G on new hardware. However, B2G is not based on Android, and will not be compatible with the Android stack (in particular B2G will not run Android applications).

FAQ

We're maintaining a FAQ to help people find and share answers to common questions.

Roadmap

We have a roadmap.

Meetings

Read More...
https://wiki.mozilla.org/B2G

Mozilla Foundation

Build and distribute cross-platform HTML5 apps

Getting Started

The Mozilla Web Apps platform lets you build apps powered by Web standards like HTML5, CSS3, JavaScript and related APIs.

Learn more

Submit Your Apps

The Mozilla Marketplace is open. Submit your apps now.

Submit now

Sign up for the newsletter

Mozilla unlocks the power of the Web as the world's largest marketplace. Learn more about the Web Apps platform.

Sign up now

Resources for App Developers

  • HTML5

    Web technologies for building build cross-browser, cross-device app experiences.

  • For mobile apps developers

    If you already develop apps for mobile devices, here's how to develop Open Web apps.

  • For web developers

    If you already develop websites, here's how to make them into installable apps.

  • Using apps offline

    How to design apps so they can be cached and used without an Internet connection.

Go there...
https://developer.mozilla.org/en-US/apps


Coming Soon: Mozilla Marketplace

Your apps on all your devices

Mozilla is unlocking the power of the Web as the world’s largest marketplace, creating an open ecosystem of developers and content owners with limitless possibilities for consumer interaction.

With open Web standards like HTML5, CSS and JavaScript — together with Mozilla-designed APIs — app experiences can be delivered anywhere, to any device, on any operating system. The Mozilla Marketplace will roll out to millions of Firefox users later this year.

Read More and see Video...
https://www.mozilla.org/en-US/apps/

Video... http://videos.mozilla.org/serv/webfwd/webfwd_promotion.webm

What is WebFWD?

WebFWD ("Web Forward") is Mozilla's Open Innovation program. We support Open Source projects which extend the Web; providing participants with mentorship from industry experts, access to the Mozilla global network, infrastructure and other world-class resources.

Read More and see Video...
https://webfwd.org/

Mozilla Boot to Gecko Project and Open Web Devices (OWD)
Get Ready for the Mozilla Firefox Phone - Datamation
Mozilla's Boot to Gecko. A Golden Opportunity for Linux? - InternetNews.
Open Web Devices (OWD) - Google Search
Open Web Devices - Google Search
The Boot to Gecko Project - YouTube
ZURB Foundation: Rapid Prototyping Across Devices | i < 3 the open web | promoting an open web and a more distributed social web
Mozilla Labs | The Mozilla Blog
Mozilla Marketplace
Apps | Mozilla Developer Network
HTML5 & Friends | Mozilla Developer Network
App development for Web developers - MDN
Mozilla Opens Apps Marketplace for Developer Submissions at Mobile World Congress | Business Wire
Mozilla Open Web Devices - Google Search
Boot to Gecko demo - YouTube
Mozilla : Open Web Applications - YouTube
Mozilla Boot to Gecko Project - Google Search
Mozilla's Boot to Gecko hands-on demo - YouTube
Mozilla Boot to Gecko Project - Google Search
Mozilla Projects
WebFWD - Mozilla's Open Innovation program
Boot to Gecko - Google Custom Search
B2G - MozillaWiki
The Boot to Gecko Project
About the Boot to Gecko Project
Boot to Gecko FAQ
Project:Copyrights - MDN

Posted by Don's Deals Blog at 10:05 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Monday, February 27, 2012

Video - FBI Needs To Track Social Media To Do Their Job Well, According to Quid CTO

FBI Needs To Track Social Media To Do Their Job Well, According to Quid CTO (8:40)
You may also be interested in:


More WebProNews Videos

Posted on February 17, 2012 by Abby Johnson | (2 votes, average: 5.00 out of 5)

The FBI recently sent out a request to tech companies asking for proposals in the development of a social media application. The bureau is seeking input for a system that would alert it of matters dealing with terrorism, crime, and anything else pertaining to national security.

Show Full Description

Posted in: News, Privacy, Social Media
Tagged: Apps, Data, FBI, Intelligence, privacy, Quid, Sean Gourley, Social Media Monitoring, Tools, Tracking.

Go there...
http://videos.webpronews.com/2012/02/fbi-needs-to-track-social-media-to-do-their-job-well-according-to-quid-cto/

Interesting... I noticed that they didn't mention The ECHELON Watch. Although they did allude to some Phone and Satellite Surveillance. I first heard of ECHELON in the late 80's or early 90's. The US Government and several others have been doing this kind of Surveillance for many years now. So, why should we think, that they really are that far behind Online Marketing, with Surveillance Tech???

Don

Here's some info on ECHELON...


Answers to Frequently Asked Questions (FAQ) about Echelon

Q - What is Project ECHELON?

ECHELON is the term popularly used for an automated global interception and relay system operated by the intelligence agencies in five nations: the United States, the United Kingdom, Canada, Australia and New Zealand (it is believed that ECHELON is the code name for the portion of the system that intercepts satellite-based communications). While the United States National Security Agency (NSA) takes the lead, ECHELON works in conjunction with other intelligence agencies, including the Australian Defence Signals Directorate (DSD). It is believed that ECHELON also works with Britain's Government Communications Headquarters (GCHQ) and the agencies of other allies of the United States, pursuant to various treaties. (1)

These countries coordinate their activities pursuant to the UKUSA agreement, which dates back to 1947. The original ECHELON dates back to 1971. However, its capabilities and priorities have expanded greatly since its formation. According to reports, it is capable of intercepting and processing many types of transmissions, throughout the globe. In fact, it has been suggested that ECHELON may intercept as many as 3 billion communications everyday, including phone calls, e-mail messages, Internet downloads, satellite transmissions, and so on. (2) The ECHELON system gathers all of these transmissions indiscriminately, then distills the information that is most heavily desired through artificial intelligence programs. Some sources have claimed that ECHELON sifts through an estimated 90 percent of all traffic that flows through the Internet. (3)

However, the exact capabilities and goals of ECHELON remain unclear. For example, it is unknown whether ECHELON actually targets domestic communications. Also, it is apparently very difficult for ECHELON to intercept certain types of transmissions, particularly fiber communications.

Q - How does ECHELON work?

Read More...
http://www.nsawatch.org/echelonfaq.html


Echelon Watch
Video - FBI Needs To Track Social Media To Do Their Job Well, According to Quid CTO
Echelon Watch - Google Search
Eshelon (TV Series 2005) - IMDb
Cyber-Rights & Cyber-Liberties (UK) Echelon Watch pages
NSA Watch | Echelon FAQ

More Videos from WebProNews...

  • U.S. Coast Guard Uses Social Media to Protect Citizens (4:39)

  • Could the "Do Not Track" Bill Do More Harm Than Good? 

Author Archives: Abby Johnson

Recent Videos

  • Verizon-Cable Spectrum Deal: Why Mobile Carriers, Consumer Groups Oppose It (10:06)
    Watch Video

  • Dr. Clark – How We Applied Google’s PageRank to Chemistry (8:37)
    Watch Video

  • Skimlinks CEO: We Have a “Happy Relationship” with Pinterest (7:33)
    Watch Video

  • New Startup Nicira Takes Cloud Computing to New Level (7:24)
    Watch Video

  • FBI Needs To Track Social Media To Do Their Job Well, According to Quid CTO (8:40)
    Watch Video

  • Danny Sullivan on Google’s New Privacy Policy Saga (10:25)
    Watch Video

  • Should the FCC Allow Cable Encryption? Hear Why Boxee Thinks It Shouldn’t (9:39)
    Watch Video

  • YouTube Channel Initiative Drawing More Viewers, Says Young Hollywood Network (8:26)
    Watch Video

  • Complete Overhaul of FCC Lifeline Program Is Not Enough (9:15)
    Watch Video

  • Spectrum Auctions Should Be Open and Competitive – Bruce Mehlman (15:05)
    Watch Video

  • Statistics In: The Most and Least Effective Super Bowl Ads of 2012 (10:13)
    Watch Video

  • Netflix Must Focus on Content to Compete with Redbox & Verizon, Says Bryan Gonzalez (3:57)
    Watch Video

  • Facebook’s $100 Billion Valuation Is Too High, According to Francis Gaskins (8:59)
    Watch Video

  • What Facebook IPO Means for Users and Marketers – Chris Treadaway Chimes In (11:52)
    Watch Video

  • Desk.com VP Explains Salesforce’s New Portable Customer Service App for SMBs (7:48)
    Watch Video
Page: 1 of 5912345Next ›Last »

News 02-26-12
Time runs out for timezone lawsuit | ITworld
Ten Things I Wish I Knew When Becoming A Linux Admin | Pinehead.tv
Anodize titanium at home - Hack a Day
Adding footwell and glove box lights to your ride - Hack a Day
DIY intervalometer uses a great looking enclosure - Hack a Day
Facebook denies accessing users' text messages | Security - CNET News
How to Manage Super-Hidden Windows System Files | Gizmo's Freeware Reviews
LG, HTC unveil faster quad-core phones – USATODAY.com
LG Optimus 4X HD - Google Search
Introducing Descent|OS: Ubuntu With GNOME 2 - Softpedia
Welcome to DescentOS.org!
LG Optimus 4X HD hands-on | Android Community
Video - FBI Needs To Track Social Media To Do Their Job Well, According to Quid CTO

News 02-25-12
Fedora Scientific, an interview with Amit Saha
Giving old appliances a second life with simple tweaks - Hack a Day
Hacking Hack a Day with Greasemonkey - Hack a Day
Validas: Don't Blame Heavy Users of AT&T's Unlimited Data Plan for Network Congestion | News & Opinion | PCMag.com
How to Use Body Language to Keep a Guy Wanting More: 8 steps - wikiHow
U.S. Seeks Deal for Americans Facing Charges in Egypt - NYTimes.com
Pakistan Razing House Where Bin Laden Lived - NYTimes.com
Professional vs Open Source Video Editing - YouTube

Posted by Don's Deals Blog at 12:07 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Sunday, February 26, 2012

Anodizing and dyeing Aluminum and Titanium, at Home

Anodizing and dying aluminum without battery acid - Observations

Anodizing and dying aluminum without battery acid 10/16/2011
20 Comments
 
Video and writeup below
The anodizing and dying of aluminum parts at home has long been a popular project for many people. But the use of battery acid, typically (29% to 32% sulfuric acid) causes concern and reluctance, and prohibits others from even trying to anodize aluminum at home. It can be difficult to store, dangerous to skin and clothing, and in general, not fun to work with. OSHA lists it as corrosive. This project provides an alternative to the use of liquid sulfuric acid and uses instead, a granular pool chemical that is easy to find, mix, store, and work with. OSHA lists this chemical as only an irritant with no shipping restrictions. Disposal is straightforward using baking soda to neutralize and the results are comparable to those obtained with the use of the sulfuric acid method. The alternative chemical is sodium bisulfate (NaHSO4) the sodium salt of sulfuric acid but in weaker form.  It is also known as sodium hydrogen sulfate and is used to lower the ph in home swimming pools. As in the use of any chemicals, care and caution are in order. The following video is a project overview followed by a step- by- step write-up:

Read More and See Video...
http://www.observationsblog.com/4/post/2011/10/anodizing-and-dying-aluminum-without-battery-acid.html

Anodize Titanium with household items

Positive terminal to titanium object, Negative to sponge. I used Coke Zero for dipping the sponge.

You can use something as simple as CocaCola (sugar free = less sticky) to dip. Comet cleaner mix also supposedly works. The voltage you supply determines the color of your anodized titanium. In my case, my power supply only went up to ~40 volts, which ends up being around the blue spectrum. The higher you go, the further you travel through the rainbow. There is some wavelength cancellation, so the colors don't correspond perfectly. It goes: Bronze, Blue, Light blue, Yellowish, Purple-ish, Cyan, Green. This is a range of 20v-100v supplied. If you do not have a variable voltage power supply, you can daisy chain 9v batteries by snapping them together. They only snap together in series, which adds 9v each time. Note: You can always ADD voltage to change color, but you can't go back to a "lower voltage color" once you have changed it.

Second method: Dip your objects in Coke, + to Titanium, - to coke. Use sugar free! Less sticky.

It will bubble as it works.

Read More...
http://imgur.com/a/H1yhi


I use to work in an Air Craft Manufacturing Plant. And they had a large Anodizing Area, in the Warehouse. With Big Acid Vats, Chem Etching, Anodizing Vats and I don't even know what else. I was a "Hand Finisher" and would go down there, some times to grind cracks out of Aluminum and Titanium Parts. So that they could be welded and then ground and polished by me, before Anodizing. Otherwise, they would have to be scrapped. Because, the High Speed Vibration that happens when a Fighter Jet is Flying. Would cause the Cracked Parts to completely fracture, at some point. I thought the Anodizing was very interesting. But, I never thought of trying it at Home. It seemed very complicated and the fumes from all of those Chemicals. Gave me a Soar Throat, every time I worked down there for just a few days. So, I think that it is great that, there are less Toxic ways to "Do this at Home"...

Don


Anodizing and dyeing Aluminum and Titanium
Anodize titanium at home - Hack a Day
Anodize Titanium with houshold items - Imgur
Anodizing and dyeing aluminum without battery acid - Hack a Day
Anodizing and dying aluminum without battery acid - Observations
Electrochemistry Encyclopedia -- Anodizing

Posted by Don's Deals Blog at 6:33 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

Saturday, February 25, 2012

Fedora at-spi-registry - Features/AtSpiTwo - FedoraProject


Features/AtSpiTwo

< Features

Contents

[hide]
  • 1 At-Spi 2
    • 1.1 Summary
    • 1.2 Owner
    • 1.3 Current status
    • 1.4 Detailed Description
    • 1.5 Benefit to Fedora
    • 1.6 Scope
    • 1.7 How To Test
    • 1.8 User Experience
    • 1.9 Dependencies
    • 1.10 Contingency Plan
    • 1.11 Documentation
    • 1.12 Release Notes
    • 1.13 Comments and Discussion

At-Spi 2

Summary

The at-spi accessibility framework gets ported to D-Bus

Owner

  • Name: Matthias Clasen
  • Email: mclasen@redhat.com

Current status

  • Targeted release:
  • Last updated: 2010-02-03
  • Percentage of completion: 50%

Initial packaging has been done for at-spi2-core, at-spi2-atk and pyatspi. The packages have been updated to the 0.1.4 releases, and can now coexist with the old accessibility stack, with runtime switching between the two.

at-spi2-core, at-spi2-atk and pyatspi2 have been built for F13.

caribou is under review.


This feature is being subsumed by the larger GNOME3 feature, and will not be tracked as a standalone feature any longer.

Detailed Description

The current at-spi accessibility framework is based on CORBA and ORBit; technologies which are being deprecated and phased out in the GNOME stack. Some features of CORBA (such as remote reference counting, reentrancy) make the current accessibility support fragile. The Linux Foundation is leading an effort to port the accessibility framework to D-Bus. The new stack is planned to debut in GNOME 2.30.

The current at-spi package is being replaced by three components:

  • at-spi2-core - protocol definitions and registry daemon
  • at-spi2-atk - the atk-bridge GTK+ module
  • pyatspi - Python bindings for at-spi

There is no replacement for the cspi 'C bindings' at the moment. The current users of cspi are being ported to use D-Bus directly (mousetweaks) or replaced (gok being replaced by Caribou). Other components that use cspi and whose status is unknown (to me): dasher.

To make the transition phase less painful, there are some efforts to allow the old and new stacks to coexist. The CORBA-based at-spi stuff will install its atk-bridge module and Python bindings somewhere else, and there will be a desktop file that sets the GTK_PATH environment variable and a pyatspi.pth Python module that sets some Python path. These path-tweaks will be triggered by a GConf key, allowing both stacks to be installed at the same time and allowing users and testers to switch back and forth between the stacks. bug 606251 has more details.

Benefit to Fedora

Fedora stays close to upstream in the area of accessibility. Some long-standing problems with the CORBA-based accessibility stack will hopefully be solved as a side-effect of the move to D-Bus. By making the new stack available in parallel to the old one early on in rawhide, we help to provide the necessary testing and feedback to the upstream accessibility developers.

Scope

Read More...
http://fedoraproject.org/wiki/Features/AtSpiTwo#Summary

Fedora at-spi-registry
fedora 14 at-spi-registry - Google Search
Fedora Package Database
Fedora Package Database -- At Spi Registry
Features/AtSpiTwo - FedoraProject

Posted by Don's Deals Blog at 11:26 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Don Snow Blazer

Don Snow Blazer
Me and my 76 Chevy Blazer in the Christmas Snow 2009

Don's Pages and my Music

  • Psalms 68 Ministries

My Sites

  • BishopCo.com
  • Don's YouTube Channel Dweb98
  • DonSongs.com
  • Psalms68.org

Subscribe

Posts
Atom
Posts
All Comments
Atom
All Comments

Followers

Popular Posts

  • GNU GRUB Boot loader both grub v1 and v2
    Here is some good info on Grub Boot Loader v1 and v2, from the Debain Wiki and From Wikipedia. Commands and how to's... ...
  • NvidiaGraphicsDrivers - Debian Wiki
    NvidiaGraphicsDrivers Translation(s) : English - Español - Français - Italiano I installed the nVidia...96 Video Drivers from t...
  • Snow-Azle-TX-Don-front-back-yard-02-11-10
    I added 3 Panoramas to my Gallery of the Snow-Azle-TX-Don-front-back-yard-02-11-10 and attached a zip of the 3 Panorama Pics too... http:/...
  • ZigBee - a specification for a suite of high level communication protocols used to create personal area networks built from small low-power digital radios
    ZigBee From Wikipedia, the free encyclopedia Jump to: navigation , search ZigBee ...
  • Finding and Replacing Paragraph Returns and Tabs
    OpenOffice.org Training, Tips, and Ideas OpenOffice training, tutorials, and discussions. It's the free Micr...
  • Asus M2N-SLI Motherboard CPU RAM Bundle - NVIDIA nForce 560 SLI MCP, AMD Phenom 9500 Processor 2.20GHz Retail, Corsair Dual Channel TWINX 4096MB PC6400 DDR2 800MHz Memory (2 x 2048MB) at TigerDirect.com
    Asus M2N-SLI Motherboard CPU RAM Bundle - NVIDIA nForce 560 SLI MCP, AMD...
  • Video YouTube - Fedora 13 Sound issues/Low volume - H...
    Video on YouTube - Fedora 13 Sound issues/Low volume - How to Fix Comment I sent on his Video Page... (well I had to shorten it to 499 cha...
  • Gateway GT5408 Computer's Motherboard info Support - 4006160R Intel (Council Bluffs) 945G Viiv Motherboard
    Gateway GT5408 Computer's Motherboard info Intel (Council Bluffs) 945G Viiv Motherboard What type of information would you like? Driv...
  • PS: Gateway GT5408 Computer's Motherboard info Support - 4006160R Intel (Council Bluffs) 945G Viiv Motherboard
    Well the Pics in the previous e-mail I sent ya didn't work... here's the link to the Pic's I wanted you to see of the BIOS Jumpe...
  • AWStats - Free log file analyzer for advanced statistics (GNU GPL)
    I install this on my Server, lets see how it works... AWStats AWStats is a free powerful and featureful tool that generates advanced w...

Blog Archive

  • ►  2021 (3)
    • ►  February (3)
  • ►  2020 (5)
    • ►  December (3)
    • ►  November (1)
    • ►  June (1)
  • ►  2019 (4)
    • ►  October (1)
    • ►  June (1)
    • ►  May (2)
  • ►  2018 (30)
    • ►  December (4)
    • ►  November (4)
    • ►  July (3)
    • ►  May (9)
    • ►  April (1)
    • ►  February (8)
    • ►  January (1)
  • ►  2017 (88)
    • ►  December (2)
    • ►  November (2)
    • ►  October (3)
    • ►  September (2)
    • ►  August (2)
    • ►  July (1)
    • ►  June (5)
    • ►  May (5)
    • ►  April (18)
    • ►  March (11)
    • ►  February (27)
    • ►  January (10)
  • ►  2016 (225)
    • ►  December (12)
    • ►  November (17)
    • ►  October (56)
    • ►  September (4)
    • ►  August (26)
    • ►  July (15)
    • ►  June (17)
    • ►  May (15)
    • ►  April (17)
    • ►  March (7)
    • ►  February (21)
    • ►  January (18)
  • ►  2015 (158)
    • ►  December (14)
    • ►  November (17)
    • ►  October (3)
    • ►  September (1)
    • ►  August (4)
    • ►  July (6)
    • ►  June (16)
    • ►  May (26)
    • ►  April (18)
    • ►  March (31)
    • ►  February (8)
    • ►  January (14)
  • ►  2014 (88)
    • ►  December (5)
    • ►  November (9)
    • ►  October (11)
    • ►  September (3)
    • ►  August (2)
    • ►  July (4)
    • ►  June (8)
    • ►  May (4)
    • ►  April (12)
    • ►  March (19)
    • ►  February (2)
    • ►  January (9)
  • ►  2013 (375)
    • ►  December (32)
    • ►  November (33)
    • ►  October (23)
    • ►  September (46)
    • ►  August (52)
    • ►  July (36)
    • ►  June (45)
    • ►  May (17)
    • ►  April (38)
    • ►  March (19)
    • ►  February (22)
    • ►  January (12)
  • ▼  2012 (411)
    • ►  December (27)
    • ►  November (31)
    • ►  October (14)
    • ►  September (15)
    • ►  August (48)
    • ►  July (48)
    • ►  June (49)
    • ►  May (20)
    • ►  April (16)
    • ►  March (37)
    • ▼  February (55)
      • How to download recursively from an FTP site in th...
      • Mozilla Boot to Gecko Project and Open Web Devices...
      • Video - FBI Needs To Track Social Media To Do Thei...
      • Anodizing and dyeing Aluminum and Titanium, at Home
      • Fedora at-spi-registry - Features/AtSpiTwo - Fedor...
      • DVD95 - simple DVD9 to DVD5 converter
      • VLC 2.0 "Twoflower" is a major new version of our ...
      • GNU GTick is a metronome application written for G...
      • PNMixer system tray sound mixer - GitHub
      • Do Not Track - Universal Web Tracking Opt Out
      • PIC-based TV-B-Gone (with design)
      • RMPrepUSB - Boot ISO files from a USB flash pen dr...
      • Adobe Flash For Linux Will Only Be Available For C...
      • Raspberry Pi - Seneca Fedora Remix 14 Release
      • BleachBit - a Powerful Web Browser and OS Junk Fil...
      • Raspberry Pi Releases first SD Card Image - Downlo...
      • NASA salutes John Glenn, Mercury astronauts – USAT...
      • Google Stops Indexing Blogger Blogs On Custom Doma...
      • Open ReVolt - EcoModder - Help with Building EV - ...
      • Build Your Own Electric Motorcycle, Car, Bike, Tri...
      • Electronics, Kits and More Cools Stuff
      • Cool Rides - Boats, Motors, Quads, 4x4s, Planes an...
      • Magic Lantern announces free HDR video firmware fo...
      • Orange PC gets world record attempt outing
      • F.C.C. Bars the Use of Airwaves for a Broadband Pl...
      • Sorry Gnome. But, I just Don't Love you any More:(...
      • MITx prototype course opens for enrollment - MIT N...
      • Video Challenge: Custom Build WiFi Satellite Anten...
      • BandwidthD tracks usage of TCP/IP network subnets ...
      • Tendonitis and Tendinosis
      • The Signal Path - Tutorial on Passive Filters, Dat...
      • What ever happened to OpenSolaris? - OpenIndiana T...
      • Fedora 14 Audio Apps, PulseAudio, Real-time Sound ...
      • Printed Circuit Board (PCB) Sprayer Machine
      • Free Cloud Storage
      • Online MSP430 Editor and Compiler
      • AE EP#26 The Ultimate Breadboard | The Amateur Eng...
      • A flashlight immortal - Using super-capacitors or ...
      • Designing an RF Transceiver (MRF49XA) - Alternet
      • HowStuffWorks Videos "Gibson Guitar Factory Videos"
      • TLWIR 32: Open Sparks Fly, FOSS Players Give Open ...
      • Build your own self-driving car - Learn How Online...
      • 1940 through 1956 GMC Futurliner Buses
      • Microsoft (IIS) Says You are not authorized to vie...
      • Is TPP Worse Than SOPA, PIPA & ACTA? | WebProNews
      • GRUB 2 bootloader - Full tutorial
      • Unetbootin - installmodes – How To
      • What can RMPrepUSB do? - RMPrepUSB - grub4dos, .is...
      • Jackpot: astronomers tag Goldilocks planet • The R...
      • Super Grub Disk 2 Updates
      • GNUnited Nations - GNU Project - Free Software Fou...
      • Raspbmc – the XBMC distribution for Raspberry Pi «...
      • Hands-on: Parrot AR Drone 2.0 packs new features a...
      • F-BOMB $50 computer is designed to hack secure net...
      • Raspberry Pi's Gertboard expansion board already w...
    • ►  January (51)
  • ►  2011 (1034)
    • ►  December (53)
    • ►  November (76)
    • ►  October (58)
    • ►  September (53)
    • ►  August (114)
    • ►  July (89)
    • ►  June (54)
    • ►  May (102)
    • ►  April (91)
    • ►  March (159)
    • ►  February (67)
    • ►  January (118)
  • ►  2010 (1694)
    • ►  December (79)
    • ►  November (194)
    • ►  October (243)
    • ►  September (101)
    • ►  August (110)
    • ►  July (214)
    • ►  June (204)
    • ►  May (164)
    • ►  April (64)
    • ►  March (127)
    • ►  February (82)
    • ►  January (112)
  • ►  2009 (1148)
    • ►  December (97)
    • ►  November (63)
    • ►  October (187)
    • ►  September (89)
    • ►  August (14)
    • ►  July (35)
    • ►  June (99)
    • ►  May (48)
    • ►  April (155)
    • ►  March (131)
    • ►  February (94)
    • ►  January (136)
  • ►  2008 (288)
    • ►  December (110)
    • ►  November (59)
    • ►  October (56)
    • ►  September (53)
    • ►  August (7)
    • ►  July (2)
    • ►  March (1)
  • ►  2007 (2)
    • ►  September (2)

About Me

My photo
Don's Deals Blog
Azle, Texas, United States
Hi I'm Don, I write, sing and record songs of my own and I like doing this very much. My music is on my web site. My first album is called DonSongs and my second one is called Living Beings - Climate Control. You can Download and listen and save all our songs on my web site at DonSongs.com and it's completely free. My favorite hobby now is computers. I like to fix old Computers and make them usable again with different Linux Operating Systems or just fix up messed up WindBlows systems;). I really like researching interesting things on the Internet. I read allot about many things, Technical things on computers and the Internet, interesting discoveries in science, new technology, local and world news and just what ever strikes me as interesting. I am very handy and good with tools, fixing and making things. I like to help my friends with their projects when I can. I love Hot Rods and use to do Motor Swaps and put Big Block Chevy Motors where 6 cylinders once were. I love 4 Wheeling and Dirt Bike Riding But I don't have a motorcycle any more. I still really like 4 Wheeling in my 1976 Chevy Blazer, when I can afford the Gas and cost of Broken Parts that is...!!!:O Don
View my complete profile

DonsDeals Blog Website Creative Commons Attribution License unless otherwise noted

Creative Commons LicenseCreative Commons Attribution 3.0 United States License. Any and all original material on the DonsDeals Blog - Website, may be freely distributed at will under the Creative Commons Attribution License, unless otherwise noted. All material that is not original to DonsDeals may require permission from the copyright holder to redistribute. And is Posted for informational and Educational Purposes, only.
Picture Window theme. Powered by Blogger.