Jordan Felle http://jordanfelle.com/feed en-us http://blogs.law.harvard.edu/tech/rss Sweetcron hyper123@gmail.com A Fine-tooth Comb To Measure The Accelerating Universe http://jordanfelle.com/items/view/53/a-fine-tooth-comb-to-measure-the-accelerating-universe

Astronomical instruments needed to answer crucial questions, such as the search for Earth-like planets or the way the Universe expands, have come a step closer with the first demonstration at the telescope of a new calibration system for precise spectrographs. The method uses a Nobel Prize-winning technology called a 'laser frequency comb', and is

]]>
Thu, 11 Sep 2008 18:59:00 -0700 http://jordanfelle.com/items/view/53/a-fine-tooth-comb-to-measure-the-accelerating-universe
Possible Future of WordPress admin http://jordanfelle.com/items/view/1/possible-future-of-wordpress-admin

There is a project called Crazyhorse the might be the new admin for WordPress starting at version 2.7. I’ll put up 3 screenshots and if anyone would like to me make a demo of the this let me know. Also please keep in mind this is still early in development and a lot of the functions do not even work yet. That’s something I should of said with the 2.4/2.5 admin demo.[Show as slideshow]

]]>
Sat, 26 Jul 2008 09:23:00 -0700 http://jordanfelle.com/items/view/1/possible-future-of-wordpress-admin
Adobe CS4 Betas Start http://jordanfelle.com/items/view/2/adobe-cs4-betas-start

The betas for Dreamweaver CS4, Soundbooth CS4, and Fireworks CS4 are now out. CS4 will better integrate the programs Adobe acquired from Macromedia into the rest of the Creative Suite. Soundbooth also now supports multi-track aditing. Head on over and try out Dreamweaver, Soundbooth, and Fireworks.

]]>
Tue, 27 May 2008 15:41:00 -0700 http://jordanfelle.com/items/view/2/adobe-cs4-betas-start
WordPress 2.6 to support Google Gears http://jordanfelle.com/items/view/3/wordpress-26-to-support-google-gears

WordPress 2.6 SVN has a new feature called Speed Up! It will use Google Gears to to locally cache images, scripts and stylesheets to speed up load times. I hope by final it will support using the admin fully offline since using a plugin just to cache some images and scripts doesn’t really seem worth it.

]]>
Thu, 22 May 2008 17:31:00 -0700 http://jordanfelle.com/items/view/3/wordpress-26-to-support-google-gears
Zappos Pays New Employees to Quit http://jordanfelle.com/items/view/4/zappos-pays-new-employees-to-quit

I think this is a really interesting article. It’s about how Zappos will offer to pay employees $1000 extra to quit after a week to see if they are truly dedicated. I think more companies should look into this, especially for employees that deal directly with customers. Source: Harvard Business Publishing

]]>
Tue, 20 May 2008 21:21:00 -0700 http://jordanfelle.com/items/view/4/zappos-pays-new-employees-to-quit
Phlashing http://jordanfelle.com/items/view/5/phlashing

A new kind of attack called phlashing could one be a real issue. Phlashing is when a device is remotely flashed to either run a firmware with a backdoor, or even a corrupt firmware that can render a device useless. It will be interesting to see what methods will be used to combat this. Source: Engadget

]]>
Tue, 20 May 2008 21:03:00 -0700 http://jordanfelle.com/items/view/5/phlashing
SideStream Media Site Enters Beta http://jordanfelle.com/items/view/6/sidestream-media-site-enters-beta

We just opened the SideStream Media site as a public beta. The new site is built on WordPress MU which allows us to easily have a lot of sub sites under one install and login. I know this isn’t what it was built for but it does the job perfectly. The Podcast site is based off a theme called Options by Justin Tadlock and the Blog is based on Prologue by Automattic. We are still working on the WordPress sections which will be for WordPress theme development. So far the only known bug is an issue with the top site wide nav on the podcasts page not working in IE7 and FireFox 2 but that should be worked out soon. Check out the site and let us know what you think.

]]>
Tue, 29 Apr 2008 15:53:00 -0700 http://jordanfelle.com/items/view/6/sidestream-media-site-enters-beta
For SideStream Media, we will be dealing … http://jordanfelle.com/items/view/57/for-sidestream-media-we-will-be-dealing

For SideStream Media, we will be dealing with vidcasts along with podcast. This creates an interesting new challenge since vidcasts come in such a large variety of format and codecs, while the majority of podcasts come in just mp3 and maybe offer an enhanced aac feed as well. Usually I will just edit the podcasts in a variety of programs and then encode it in iTunes. The benefit of this is that it will make the file name nice and add good ID3 tags. But iTunes doesn’t work as well for videos. When I import audio files it will change the names and put them in organized folders for you, but with video it just dumps everything in 1 folder and doesn’t rename then, even when you change the ID3 tags with iTunes. So what I am asking is, does anyone know of a good program that support multiple codecs ( at least h.264 ) and will allow me to add ID3 tags and rename files to be user friendly?

]]>
Mon, 28 Apr 2008 20:54:00 -0700 http://jordanfelle.com/items/view/57/for-sidestream-media-we-will-be-dealing
How to Make Category Specific Designs http://jordanfelle.com/items/view/58/how-to-make-category-specific-designs

One of the things Ben and I want to do on the SideStream Media website is allow for category specific CSS files. The reason we want to do this is so we can move all of our podcasts to one site and still make each podcast’s page look a little different. Revision 3 does this with it’s show pages, http://revision3.com/tekzilla/ and http://revision3.com/systm/ as 2 examples. The way we solved this issue was by calling on a .css file based on either what category page you were on or what category the post you are viewing is in. The code for this is : <? if (is_category()) { ?> <link rel=”stylesheet” href=”<? bloginfo(’stylesheet_directory’); ?>/<?php single_cat_title(); ?>.css” type=”text/css” /> <? } elseif (is_single()) {?> <link rel=”stylesheet” href=”<? bloginfo(’stylesheet_directory’); ?>/<?php foreach((get_the_category()) as $cat) {echo $cat->cat_name. ”;} ?> .css” type=”text/css” /> <? } ?> This code should go right after the link to you main CSS file. Once you have done this you just need to create CSS files in your themes folder by the same name as the category, and for most servers this will be case sensitive. You can see this code in action on some of the categories on this site. If you have any questions or know of a better way to do this please let me know.

]]>
Wed, 23 Apr 2008 12:08:00 -0700 http://jordanfelle.com/items/view/58/how-to-make-category-specific-designs
Super Mario in 14kb Javascript http://jordanfelle.com/items/view/7/super-mario-in-14kb-javascript

FTA “Here’s an experiment in keepings things small and confined to one Javascript file.” Gotta love it especially considering that making anything in Java “small” and “lightweight” are extreme tasks. read more | digg story

]]>
Wed, 09 Apr 2008 12:34:00 -0700 http://jordanfelle.com/items/view/7/super-mario-in-14kb-javascript
Vidcasts http://jordanfelle.com/items/view/8/vidcasts

For SideStream Media, we will be dealing with vidcasts along with podcast. This creates an interesting new challenge since vidcasts come in such a large variety of format and codecs, while the majority of podcasts come in just mp3 and maybe offer an enhanced aac feed as well. Usually I will just edit the podcasts in a variety of programs and then encode it in iTunes. The benefit of this is that it will make the file name nice and add good ID3 tags. But iTunes doesn’t work as well for videos. When I import audio files it will change the names and put them in organized folders for you, but with video it just dumps everything in 1 folder and doesn’t rename then, even when you change the ID3 tags with iTunes. So what I am asking is, does anyone know of a good program that support multiple codecs ( at least h.264 ) and will allow me to add ID3 tags and rename files to be user friendly?

]]>
Tue, 08 Apr 2008 10:44:00 -0700 http://jordanfelle.com/items/view/8/vidcasts
authandusers http://jordanfelle.com/items/view/59/authandusers

hyper123

]]>
Thu, 03 Apr 2008 16:51:00 -0700 http://jordanfelle.com/items/view/59/authandusers
Sony BMG Busted for Using Warez http://jordanfelle.com/items/view/9/sony-bmg-busted-for-using-warez

It looks like Sony BMG wants to kill all piracy, except for when they do it. After Sony tried to call PointDev, a company that makes administration software for windows, Sony BMG gave them a pirate license. This prompted PointDev to to mandate a seizure of Sony BMG servers which showed 4 servers containing pirated PointDev software. PointDev also claims that up to 47% of software on Sony BMG computers could be pirated. I wonder if Sony will find a way out of this are have to pay up. Source: Arstechnica

]]>
Mon, 31 Mar 2008 17:18:00 -0700 http://jordanfelle.com/items/view/9/sony-bmg-busted-for-using-warez
FCC redefines broadband http://jordanfelle.com/items/view/10/fcc-redefines-broadband

The FCC has finally redefined broadband to increase the minimum speeds to 768 Kbps. While this is still slow it is at least a start to push more companies to increase speeds. Source: Engadget

]]>
Thu, 20 Mar 2008 09:36:00 -0700 http://jordanfelle.com/items/view/10/fcc-redefines-broadband
Jack Thompson challenged by Brian Crecente http://jordanfelle.com/items/view/11/jack-thompson-challenged-by-brian-crecente

Jack Thompson twisted the recent NIU tradgedy to promote himself… unfortunately for him though we’re not all gullible idiots. Read this to see why he’s a douche and always will be. read more | digg story

]]>
Sat, 16 Feb 2008 20:09:00 -0800 http://jordanfelle.com/items/view/11/jack-thompson-challenged-by-brian-crecente
Updated Admin Demo http://jordanfelle.com/items/view/12/updated-admin-demo

I just updated the WordPress 2.5 demo to the newest version and you can see it it much farther along than the last demo. Go check it out.

]]>
Mon, 11 Feb 2008 19:11:00 -0800 http://jordanfelle.com/items/view/12/updated-admin-demo
Microsoft, Google, Verisign and IBM Join OpenID http://jordanfelle.com/items/view/13/microsoft-google-verisign-and-ibm-join-openid

Microsoft, Google, Verisign and IBM have joined OpenID. I think this will finally make OpenID a reality. All the site I run support OpenID through plugins and I think you will soon see CMS’s supporting OpenID natively. Source: Techcrunch

]]>
Thu, 07 Feb 2008 09:02:00 -0800 http://jordanfelle.com/items/view/13/microsoft-google-verisign-and-ibm-join-openid
Verizon Rejects Hollywood’s Call to Aid Piracy Fight http://jordanfelle.com/items/view/14/verizon-rejects-hollywoods-call-to-aid-piracy-fight

Unlike AT&T, Verizon won’t monitor its network to block unauthorized copying. That would violate customer privacy, it says, and would be expensive too. read more | digg story

]]>
Wed, 06 Feb 2008 11:52:00 -0800 http://jordanfelle.com/items/view/14/verizon-rejects-hollywoods-call-to-aid-piracy-fight
ICANN Adds IPv6 to Root DNS Servers http://jordanfelle.com/items/view/15/icann-adds-ipv6-to-root-dns-servers

ICANN has started to switch some of the root DNS servers to support IPv6. This is one more step in moving from IPv4 to IPv6. I wonder how much longer we will need to wait for ISPs to switch over.

Source: ars technica

]]>
Wed, 06 Feb 2008 09:55:00 -0800 http://jordanfelle.com/items/view/15/icann-adds-ipv6-to-root-dns-servers
RIAA Wants to Cut Royalties http://jordanfelle.com/items/view/16/riaa-wants-to-cut-royalties

The RIAA wants to cut artist’s royalties from 13% down to 9%. Apple is pushing for the royalties to be dropped down to 4%. Is this the RIAA response to piracy? Do they plan to make up the money by giving less to the artists? Source: Gizmodo

]]>
Tue, 05 Feb 2008 21:43:00 -0800 http://jordanfelle.com/items/view/16/riaa-wants-to-cut-royalties