WordPress 2.2

May 17, 2007 by  
Filed under Wordpress

WordPress 2.2 is out! This version includes a number of new features and over 200 bug fixes. Download it now.

Related Products:

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics
Make: Electronics (Learning by Discovery)Make: Electronics (Learning by Discovery)

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author of... Read More >

Popularity: 18% [?]

Amusing WordPress Themes

March 23, 2007 by  
Filed under Wordpress

I found these WordPress themes to be very unique and amusing!

Related Products:

Make: ElectronicsMake: Electronics

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author... Read More >

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Getting Started in ElectronicsGetting Started in ElectronicsThis is a complete electronics course in 128 pages! Author Forrest Mims teaches you the basics, takes you on a tour of analog and digital components, ... Read More >

Popularity: 23% [?]

Google Summer of Code

March 22, 2007 by  
Filed under Scripts and Coding, Wordpress

I read this on WordPress and thought it was a nifty idea. If you’re a computer student interested in making some money and learning at the same time, check out this offer:

Looking for something fun to do this summer? All college and university students around the world are invited to apply to get paid $4,500 USD to work on your favorite open source project this summer. WordPress is among the 131 accepted to Google Summer of Code, of more than 300 projects that applied.

Related Products:

How to Diagnose and Fix Everything ElectronicHow to Diagnose and Fix Everything ElectronicMaster the Art of Electronics Repair

In this hands-on guide, a lifelong electronics repair guru shares his tested techniques and invaluable ... Read More >

Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >
Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics

Popularity: 24% [?]

Spry AJAX Framwork

March 19, 2007 by  
Filed under AJaX, Scripts and Coding, Tech News

After listening to Scott’s interview with Jorge Taylor on the Spry AJaX Framework, I decided to read up on it.

The Spry framework for Ajax is a JavaScript library for web designers that provides functionality that allows designers to build pages that provide a richer experience for their users. It is designed to bring Ajax to the web design community who can benefit from Ajax, but are not well served by other frameworks.

The Spry framework is a way to use the data capabilities that enable designers to incorporate XML data into their HTML documents using HTML, CSS, and a minimal amount of JavaScript, without the need for refreshing the entire page. The Spry framework is HTML-centric, and easy to implement for users with basic knowledge of HTML, CSS and JavaScript. The framework was designed such that the markup is simple and the JavaScript is minimal. The Spry framework can be used by anyone who is authoring for the web in their tool of choice. (From Adobe Labs)

Definitely more fun and exciting stuff to learn. I think this framework is very promising, and will help web designers build websites quickly. Check out the demos with this Spry framework. I just downloaded the Spry Pre-Release 1.4, so I’ll definitely be playing with it soon!

Related Products:

How to Diagnose and Fix Everything ElectronicHow to Diagnose and Fix Everything ElectronicMaster the Art of Electronics Repair

In this hands-on guide, a lifelong electronics repair guru shares his tested techniques and invaluable ... Read More >

Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >
All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides)All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides)For almost 30 years, this book has been a classic text for electronics enthusiasts. Now completely updated for today?s technology with easy explanatio... Read More >

Popularity: 24% [?]

WordPress Plugin Directory

March 18, 2007 by  
Filed under Wordpress

I love the new WordPress Plugin Directory!  It’s so much cleaner and makes finding/creating a wordpress plugin much easier.

Related Products:

Make: Electronics (Learning by Discovery)Make: Electronics (Learning by Discovery)

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author of... Read More >

Getting Started in ElectronicsGetting Started in ElectronicsThis is a complete electronics course in 128 pages! Author Forrest Mims teaches you the basics, takes you on a tour of analog and digital components, ... Read More >
Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >

Popularity: 23% [?]

CSS 3: Substring Matching Attribute Selectors

March 16, 2007 by  
Filed under Code Snippets, CSS, Tips and Tutorials

css-iconI was reading up on CSS 3′s Substring matching attribute selectors and discovered a fun way to reference anchor links!

Web links can be a variety of files. PDF, DOC, and HTML are some of the familiar ones. I was wondering if we could put a small icon to denote what type of file is being downloaded, and with CSS3, it’s quite possible.

Create an HTML file. Between the <head> tags, put

<style>
body {
  font-size: .9em; font-weight: bold;
}
a { color: blue; line-height: 1.5em; }
a[href$=".html"] {
   padding-left:20px; background-image:url(html.gif);
   background-repeat: no-repeat;
}
a[href$=".pdf"] {
   padding-left:20px; background-image:url(pdf.gif);
   background-repeat: no-repeat;
}
a[href$=".doc"] {
   padding-left:20px; background-image:url(msword.gif);
   background-repeat: no-repeat;
}
</style>

and between the <body> tags, put:

<ul>
<li><a href="myfile.html">My HTML File</a></li>
<li><a href="myfile.pdf">My PDF File</a></li>
<li><a href="myfile.doc">My Word Doc File</a></li>
<li><a href="http://php-princess.net">Any Link</a></li>
</ul>

Save the file as mytest.html (and download these three images as well — MS Word PDF HTML) and open it up in Firefox 2.0. You will then see something that looks like this:

CSS 3 Links
Isn’t that great? The padding attribute moves the link 20px to the right. And the background-repeat attribute makes sure that image doesn’t repeat. So when I link a PDF file on my website, an image of a PDF file automatically shows next to the link. What a time-saver. :) The only drawback to this is that CSS3 isn’t fully implemented in all of today’s browser. It seems that Firefox 2.0 is ahead in the game. MSIE 7.0 and browsers below do not render CSS3 correctly. But it is a nice tip. Hopefully the next generation of browsers will render CSS3 the way it’s suppose to.

Related Products:

CSS Pocket Reference (Pocket Reference (O'Reilly))CSS Pocket Reference (Pocket Reference (O'Reilly))

When you're working with CSS and need a quick answer, CSS Pocket Reference delivers. This handy, concise book provides all of the essential informa... Read More >

HTML and CSS: Design and Build WebsitesHTML and CSS: Design and Build WebsitesA full-color introduction to the basics of HTML and CSS from the publishers of Wrox! 

Every day, more and more people want to learn some HTML and C... Read More >

The Code Book: The Science of Secrecy from Ancient Egypt to Quantum CryptographyThe Code Book: The Science of Secrecy from Ancient Egypt to Quantum CryptographyIn his first book since the bestselling Fermat's Enigma, Simon Singh offers the first sweeping history of encryption, tracing its evolution and reveal... Read More >

Popularity: 26% [?]

WordPress 2.1.1 Dangerous, Upgrade to 2.1.2

March 2, 2007 by  
Filed under Wordpress

Important annoucement to those who downloaded WordPress 2.1.1 recently:

If you downloaded WordPress 2.1.1 within the past 3-4 days, your files may include a security exploit that was added by a cracker, and you should upgrade all of your files to 2.1.2 immediately.

Read more..

Related Products:

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Getting Started in ElectronicsGetting Started in ElectronicsThis is a complete electronics course in 128 pages! Author Forrest Mims teaches you the basics, takes you on a tour of analog and digital components, ... Read More >
Make: Electronics (Learning by Discovery)Make: Electronics (Learning by Discovery)

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author of... Read More >

Popularity: 18% [?]

FQL: Facebook Query Language

February 26, 2007 by  
Filed under So Much Data

FacebookIntroducing, FQL! What is FQL you may ask? FQL is a way to query the same Facebook data you can access through the other API functions, but with a SQL-style interface. In fact, many of the normal API calls are simple wrappers for FQL queries. All of the usual privacy checks are still applied. A typical query looks something like this:

SELECT name, pic FROM user WHERE uid=211031 OR uid=4801660

Read More about the Facebook API here.

Related Products:

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics
All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides)All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides)For almost 30 years, this book has been a classic text for electronics enthusiasts. Now completely updated for today?s technology with easy explanatio... Read More >

Popularity: 23% [?]

WordPress Plugin: Flashbox

February 23, 2007 by  
Filed under Flashy, Wordpress

I found this very nice plugin today.  I can’t wait to try it out.  It’s called Flashbox, and it’s very similar to Lightbox, but you can embed Flash files!

Related Products:

Make: Electronics (Learning by Discovery)Make: Electronics (Learning by Discovery)

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author of... Read More >

Getting Started in ElectronicsGetting Started in ElectronicsThis is a complete electronics course in 128 pages! Author Forrest Mims teaches you the basics, takes you on a tour of analog and digital components, ... Read More >

Popularity: 23% [?]

To Ruby From PHP

February 21, 2007 by  
Filed under PHP, Ruby

If you’re interested in learning Ruby, here is a list of all the simlarities and differences between Ruby and PHP.

Related Products:

How to Diagnose and Fix Everything ElectronicHow to Diagnose and Fix Everything ElectronicMaster the Art of Electronics Repair

In this hands-on guide, a lifelong electronics repair guru shares his tested techniques and invaluable ... Read More >

Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]

Popularity: 26% [?]

WiiPress, the WordPress Wii Edition

February 21, 2007 by  
Filed under Wordpress

This is an interesting WordPress Plugin. It’s called the WiiPress! It’s great for those of us who like to surf on their Wii Browser (Opera) as well as their computers. ;)

About The WordPress Wii Edition Plugin:
The WordPress Wii Edition Plugin is a plugin that automatically renders an optimized version of your blog when visitors come to your blog on a Nintendo Wii running the Opera browser. Wii’s are automatically detected, there is no configuration needed. The theme used by the plugin is based on the colors of the Wii interface and uses the “Wii” font at sizes that provide for easy reading on TV screens. This plugin was inspired by Alex King’s Mobile Plugin.

Why is this plugin useful?
Webpages on the Wii are hard to view on default zoom and on many pages (designed wider then 800 pixels) you will have to scroll from side to side. In addition, font sizes that work on a computer screen don’t render well on a TV screen. As such we put together this plugin to make our favorite blogs a bit easier to read.

 Read more..

Related Products:

Remote Controller and Nunchuk Nunchuck Combo Bundle SetRemote Controller and Nunchuk Nunchuck Combo Bundle SetAccentuating the sense of touch in the game lets you feel the heat of emotion with each movement. Because up to four players can grab a Wii Remote and... Read More >
WiiWii

Console-based video gaming is one of the most popular of modern digital technologies, cutting across age, demographic and gender div... Read More >

Wii Black Console with New Super Mario Brothers Wii and Music CDWii Black Console with New Super Mario Brothers Wii and Music CDIncludes Black Wii Console, Black Wii Remote Plus, Black Nunchuk, New Super Mario Bros. Wii game pack and Super Mario Galaxy Official Soundtrack. New ... Read More >

Popularity: 25% [?]

WordPress 2.1.1

February 20, 2007 by  
Filed under Wordpress

WordPress 2.1.1 has been released today.  You can upgrade by overwriting the files that were edited.

Related Products:

Make: Electronics (Learning by Discovery)Make: Electronics (Learning by Discovery)

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author of... Read More >

How to Diagnose and Fix Everything ElectronicHow to Diagnose and Fix Everything ElectronicMaster the Art of Electronics Repair

In this hands-on guide, a lifelong electronics repair guru shares his tested techniques and invaluable ... Read More >

Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics

Popularity: 20% [?]

PHP and Yahoo! Web Services APIs

February 20, 2007 by  
Filed under PHP, Software and Web Apps

Here’s a great source for information about using PHP with Yahoo! Web Services APIs.

  • HOWTO Articles to help you understand our technologies and how you can use them better with PHP.
  • Code Samples you can play with. Use them as a starting point for your own applications or study them for subtle nuances.
  • Browser-Based Authentication so you can let users authenticate using their Yahoo! id.
  • Other Resources out on the Web to help you use PHP and the Yahoo! APIs to their fullest.
  • Community Resources where you can join the mailing list and discuss the Yahoo! APIs with us and with other PHP developers.

Related Products:

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >
Getting Started in ElectronicsGetting Started in ElectronicsThis is a complete electronics course in 128 pages! Author Forrest Mims teaches you the basics, takes you on a tour of analog and digital components, ... Read More >

Popularity: 22% [?]

Learning Ruby

February 15, 2007 by  
Filed under Ruby, Scripts and Coding

I was browsing around on the web and ran into something called Ruby on Rails. I have no idea what it is.. but I remember seeing it somewhere else before. So me being my usual curious self, I googled it, and found this nice tutorial called try Ruby!.

Ruby is… a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.

I find it to be a very cute little language. The syntax is just great. I love all of the shorthand.

Ruby on Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. From the Ajax in the view, to the request and response in the controller, to the domain model wrapping the database, Rails gives you a pure-Ruby development environment. To go live, all you need to add is a database and a web server.

Interesting stuff. I think I’ll dive into it a little more later on. :D

Related Products:

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics
Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]

Popularity: 21% [?]

WordPress 2.1 and Comment Timeout Plugin

January 25, 2007 by  
Filed under Wordpress

WordPress 2.1 have been released, and I’ve been busy upgrading all of my blogs. This version is really nice. I love it.

And in the spirit of upgrading, I found this nice Comment Timeout Plugin and installed it. I hope this would fix all the comment spamming on this domain. *crosses fingers*

Related Products:

Getting Started in ElectronicsGetting Started in ElectronicsThis is a complete electronics course in 128 pages! Author Forrest Mims teaches you the basics, takes you on a tour of analog and digital components, ... Read More >
Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]
How to Diagnose and Fix Everything ElectronicHow to Diagnose and Fix Everything ElectronicMaster the Art of Electronics Repair

In this hands-on guide, a lifelong electronics repair guru shares his tested techniques and invaluable ... Read More >

Popularity: 23% [?]

CSS Keyboard

September 19, 2005 by  
Filed under CSS

How cute, a keyboard made entirely in CSS! That’s a Chris Hester creation!

Related Products:

Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >
Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]
Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Popularity: 25% [?]

CSS Gradients

September 19, 2005 by  
Filed under CSS, Daily Ramblings

Wow, you can create seamless gradients in CSS! It’s just a lot of code though. :D Here’s the full article on it.

Related Products:

Electronics For DummiesElectronics For DummiesElectronics is fascinating – want to make something of it? This book shows you how!

You can make all sorts of things, once you understand what ele... Read More >

Make: Electronics (Learning by Discovery)Make: Electronics (Learning by Discovery)

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author of... Read More >

Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >

Popularity: 28% [?]

Adobe Illustrator CS Class

September 7, 2005 by  
Filed under Scripts and Coding

Yay, I’m enrolled in this class. So in the next few weeks, I’ll be even busier! I love these digital design classes, except the hours are horrible. I’m so tired after work. heh

Adobe Illustrator CS
Course: Art (Studio) X491.2 (3 units)
This graphic design/illustration class offers an introduction to the use of the computer as an illustration tool using Adobe Illustrator. Students learn text/graphics manipulation skills used in a variety of projects, such as technical publications, service manuals, textbook art, advertising art, medical illustration, comics, cartography, corporate identity logos, greeting cards, clip art, product illustration, fashion layouts, symbol design and fine art.
Prerequisite: A working knowledge of the Macintosh computer.

Instructor: Donna L. Adrain, B.A., Graphic Designer, Independent Contractor, Temecula
When: Tue. 6:30-9:30 pm, Sept. 20-Nov. 22. (10 meetings)

Related Products:

Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]
Make: ElectronicsMake: Electronics

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author... Read More >

Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics

Popularity: 22% [?]

CSS Templates

August 4, 2005 by  
Filed under CSS

Here are some nice CSS templates that are licensed under a Creative Commons License. Thanks for the link, Dodo!

Related Products:

Understanding Basic Electronics (Softcover)Understanding Basic Electronics (Softcover)Understanding Basic Electronics
Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]Apple TV MD199LL/A [NEWEST VERSION]
Make: ElectronicsMake: Electronics

"This is teaching at its best!"

--Hans Camenzind, inventor of the 555 timer (the world's most successful integrated circuit), and author... Read More >

Popularity: 19% [?]

CSS Folder Tree

July 13, 2005 by  
Filed under CSS

I really like how Seamus created this folder tree using only css, a few images, and a bulleted list. Too bad MSIE 6.0 doesn’t support CSS2. I wonder if MSIE 7.0 will…

Related Products:

All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides)All New Electronics Self-Teaching Guide (Wiley Self Teaching Guides)For almost 30 years, this book has been a classic text for electronics enthusiasts. Now completely updated for today?s technology with easy explanatio... Read More >
Kindle Fire, Full Color 7" Multi-touch Display, Wi-FiKindle Fire, Full Color 7" Multi-touch Display, Wi-FiMovies, apps, games, music, reading and more, plus Amazon's revolutionary cloud-accelerated web browser - 18 million movies, TV shows, songs, magazine... Read More >

Popularity: 21% [?]

« Previous PageNext Page »