PostBadge tag to show // FeedBurner FeedFlare. // ------------------------- // FeedBurner account and feed required. // Sign up at http://feedburner.com //================================================ class module_feedflare { function init(){ global $gregarious; $gregarious->add_settings ( array ( 'feedburner_url' => '' ) ); $gregarious->add_page ( 'FeedFlare', 'modules/feed-flare/icn_Flare.png', 'page_feedflare();', 'feedFlare' ); } function postbadge_tags(){ return array ( array ( 'tag' => '%FLARE%', 'replacewith' => 'feed_flare("",false)' ), ); } function update_info(){ return 100; } } //------------------------------------------ // TEMPlATE TAGS //------------------------------------------ function feed_flare($settings = '', $echo = true){ global $wp_query; $post = $wp_query->post; $sets = array('postID' => $post->ID, 'before' => '', 'after' => 'Gregarious FeedFlare', 'force' => 0 ); grab_sets($settings, $sets); if ( !$sets['force'] && hideOnID($sets['postID']) ){ return ''; } if( !$path = _get_feedburner_url() ) return ''; if( substr( $path, -1 ) == '/' ){ $path = substr( $path, 0, strlen( $path ) -1 ); } $path = str_replace ( 'feedburner.com/', 'feedburner.com/~s/', $path ); $path .= '?i='.get_permalink($sets['postID']); $result = $sets['before'] . "" . $sets['after']; if($echo) echo $result; else return $result; } function _get_feedburner_url(){ $feedurl = greg_get_option( 'feedburner_url' ); if ( $feedurl ){ return attribute_escape($feedurl); } else { $feedburner_settings = get_option('feedburner_settings'); if( is_array($feedburner_settings) && ($feedurl = $feedburner_settings['feedburner_url']) ) { return attribute_escape($feedurl); } else { return false; } } } //------------------------------------------ // OPTIONS PAGE //------------------------------------------ function page_feedflare(){ $feedurl = _get_feedburner_url(); ?> Comments on: Linux USB Boot FTL http://www.spencerb.net/2009/02/linux-usb-boot-ftl/ Tue, 30 Mar 2010 15:25:30 +0000 http://wordpress.org/?v=2.9.2 hourly 1 By: Dan Schoppe http://www.spencerb.net/2009/02/linux-usb-boot-ftl/comment-page-1/#comment-1206 Dan Schoppe Wed, 25 Feb 2009 16:52:35 +0000 http://www.spencerb.net/?p=522#comment-1206 I've heard for years that flash memory has a read/write limit of about 10,000 (not negligible when using it for RAM / hard disc replacement), but I assumed these limitations had been taken care of for the newer SSD. I’ve heard for years that flash memory has a read/write limit of about 10,000 (not negligible when using it for RAM / hard disc replacement), but I assumed these limitations had been taken care of for the newer SSD.

]]>
By: Tony Schwab http://www.spencerb.net/2009/02/linux-usb-boot-ftl/comment-page-1/#comment-1204 Tony Schwab Wed, 25 Feb 2009 00:14:21 +0000 http://www.spencerb.net/?p=522#comment-1204 I'd like to hear it too. That is a shame about the solid state drives - I didn't know anything about the write limitations. It seems to me that would be a big boon to using them. Unfortunately, it seems we will have to wait a bit longer for that technology to integrate itself into practical computing solutions. I’d like to hear it too. That is a shame about the solid state drives – I didn’t know anything about the write limitations. It seems to me that would be a big boon to using them. Unfortunately, it seems we will have to wait a bit longer for that technology to integrate itself into practical computing solutions.

]]>
By: Dan Schoppe http://www.spencerb.net/2009/02/linux-usb-boot-ftl/comment-page-1/#comment-1200 Dan Schoppe Tue, 24 Feb 2009 06:08:15 +0000 http://www.spencerb.net/?p=522#comment-1200 Interesting to know about SSDs... I don't know anything about them hardly. I know Thinkpads with SSD have an awesome configuration tool to manage which of your programs are installed to the magnetic drive and which to the smaller SSD. This means that you can put frequently run programs on the SSD for lightning fast execution. I would assume a SSD provide lower power consumption, less noise and a faster response (even though harddrive is probably not the bottleneck) on your server... is this correct? You should list the specs of the machine you're working on setting up... I'd be interested for sure. Interesting to know about SSDs… I don’t know anything about them hardly. I know Thinkpads with SSD have an awesome configuration tool to manage which of your programs are installed to the magnetic drive and which to the smaller SSD. This means that you can put frequently run programs on the SSD for lightning fast execution.

I would assume a SSD provide lower power consumption, less noise and a faster response (even though harddrive is probably not the bottleneck) on your server… is this correct?

You should list the specs of the machine you’re working on setting up… I’d be interested for sure.

]]>