-
Popular Posts
-
Search
-
Recent Posts
Follow for New Updates
Tags
amazon analytics api apple blog browser chrome chromium Design dropbox error extension facebook firefox google greasemonkey ipad javascript jQuery keyboard linux lion mac Marketing mysql os x osx php plugin project quicksilver scam search SEO social spam ssl themes twitter unix ux video windows woo wordpress
Category Archives: Web Development
Dotcloud – Warning: Identity file not accessible: No such file or directory.
If you’re using dotcloud and realize that you’re getting this error: Warning: Identity file ~/.dotcloud/dotcloud.key not accessible: No such file or directory. You are probably using the old version of the API / CLI. Make sure you upgrade both the CLI and API and also the application. You may also want to use the dotcloud info yourapp.www to get information such as the ssh connect string (username@host) and correct port. The correct for direct ssh would be: `ssh dotcloud@your-app-1234.dotcloud.com -i ~/.dotcloud/dotcloud.key -p 5678` Make sure to replace the port numbers and domain string appropriately. See this article: http://docs.dotcloud.com/guides/copy/
Email body is missing, please drop a line.
Email body is missing, please drop a line. Google Analytics E-mail reporting requires that you enter a body in your e-mail
WordPress: Get all terms for a post
First you need to get the available taxonomies so that you can pass them to the wp_get_object_terms function to get all of the terms / categories / tags / custom tax terms associated with a single post: $taxonomies = get_taxonomies(”,’names’); print_r($taxonomies); //optional for debugging That will likely return something like this: Array ( [category] => category [post_tag] => post_tag [nav_menu] => nav_menu [link_category] => link_category [post_format] => post_format [product_type] => product_type [product_cat] => product_cat [product_tag] => product_tag [product_shipping_class] => product_shipping_class [shop_order_status] => shop_order_status ) Next you can use the wp_get_object_terms function, passing the post’s ID(s) and the list of taxonomies to get all of the terms associated: global $post; //optional if you are inside the “loop” $terms = wp_get_object_terms($post->ID,$taxonomies); print_r($terms); //optional for debugging Array ( [0] => stdClass Object ( [term_id] => 2 [name] => Blogroll [slug] => blogroll [term_group] => 0 [term_taxonomy_id] => 2 [taxonomy] => link_category [description] => [parent] => 0 [count] => 7 ) [1] => stdClass Object ( [term_id] => 14 [name] => Lightweight [slug] => lightweight [term_group] => 0 [term_taxonomy_id] => 14 [taxonomy] => product_cat [description] => [parent] => 0 [count] => 1 ) [2] => stdClass Object ( [term_id] => 15 [name] => tag1 [slug] => tag1 [term_group] => 0 [term_taxonomy_id] => 15 [taxonomy] => product_tag [description] => [parent] => 0 [count] => 1 ) [3] => stdClass Object ( [term_id] => 5 [name] => simple [slug] => simple [term_group] => 0 [term_taxonomy_id] => 5 [taxonomy] => product_type [description] => [parent] => 0 [count] … Continue reading
STOMP Server
A STOMP Server is a “Streaming Text Oriented Messaging Protocol” server. A STOMP Server provides an interoperable wire format that allows STOMP clients to talk with any STOMP Message Broker supporting the protocol. STOMP is thus language-agnostic, meaning a broker developed for one language or platform can receive communications from client software developed in another language. From wikipedia
Posted in Server Admin, Server Administration, Software, Web Development
Tagged stomp, stomp server
Leave a comment
The free no.de service is currently at full capacity. Please check back later
If you’re getting “The free no.de service is currently at full capacity. Please check back later.” then you might want to check out: Where can I host a Node.js app?
List of PHP Frameworks
Here’s a list of recent and popular PHP frameworks as of 2012: Kohana: The Swift PHP Framework Laravel – A Clean & Classy PHP Framework Getting Started with the Fuel PHP Framework | Nettuts+ FUEL — A simple, flexible, community driven PHP5.3 framework. › A simple, flexible, community driven PHP5.3 framework. Underscore.php
Inboundwriter Pricing
Inboundwriter: Register Your Plugin / Choose Pricing for Inbound Writer Step 1 of 3: Choose a plan Premium - $19.95 per month Plan I: Unlimited use (Premium) Unlimited use Topic and keyword research Topic and keyword research Search popularity optimization Search popularity optimization Search competition optimization Search competition optimization Reader targeting optimization Reader targeting optimization Ad revenue optimization Opt-out of promotional badge Basic - FREE Topic and keyword research Topic and keyword research Search popularity optimization Search popularity optimization Search competition optimization Search competition optimization Reader targeting optimization Reader targeting optimization Ad revenue optimization Supported by Inboundwriter promotional badge Displayed with your content As featured in: Tech Crunch ReadWriteWeb Information Week Search Engine Watch B to B
Posted in Social Media, Software, Web Development
Tagged Inboundwriter, plugin, Pricing, social, wordpress
Leave a comment
AWS Marketplace Launch Creates Jump in Amazon.com Stock Price
Amazon EC2 Market launches and the stock prices increases at market open. As all of these new services come in to place they require using Amazon’s Elastic Compute Cloud and related services, so I believe it is not a bad idea to invest in Amazon.
Posted in Marketing, Tech Opinion, Web Development
Tagged amazon, aws, ec2, investment, launch, marketplace, stock, stock price
Leave a comment
What is Twipsy?
Do you wonder what Twipsy is? Twipsy is mostly a plugin for jQuery having to do with creating tool tips, it is based on “Tipsy”, but the important thing about the Twipsy jQuery plugin for creating tooltips is that it is part of the Twitter Bootstrap kit – that is Twipsy is a plugin that works with the Boostrap framework. The tooltips can be custom styled via CSS and their behavior can be controlled via JS parameters. This includes position, animation type, offset, title, trigger, content templates, etc.. It was “ported” from tipsy. A demo is included with the download package, which can be found at http://twitter.github.com/bootstrap/javascript.html#tooltips To quote them Twipsy is A new take on the jQuery Tipsy plugin, Tooltips don’t rely on images—they use CSS3 for animations and data-attributes for local title storage.
Posted in Tech Tips, Web Development
Tagged bootstrap, javascript, plugin, twipsy, twitter
Leave a comment
fix “max_allowed_packet” on MySql
MySQL Error 1153 – Got a packet bigger than ‘maxallowedpacket’ bytes To fix this I ran these two commands in mySQL before executing the queries that were giving me the error message about the max allowed packet bytes. set global net_buffer_length=1000000; set global max_allowed_packet=1000000000;
Posted in Server Admin, Server Administration, Tech Tips, Web Development
Tagged error, import, mysql
Leave a comment

