Search
-
Recent Posts
Tags
adwords amazon analytics api apple aws blog chrome chromium cloud Design dropbox ec2 email error facebook firefox google google-apps homebrew ipad javascript jQuery linux lion mac microsoft mysql os x osx paypal php plugin quicksilver raspberry pi scam social spam twitter ubuntu unix video windows woo wordpress
Search Results for: {search_term_string}
Google Product Category Browser
…Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning > Bow Rosin Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning >…
Continue readingComplete list of built-in PHP functions
…querystring_set httpquerystring_singleton httpquerystring_toarray httpquerystring_tostring httpquerystring_xlate httprequest httprequest_addcookies httprequest_addheaders httprequest_addpostfields httprequest_addpostfile httprequest_addputdata httprequest_addquerydata httprequest_addrawpostdata httprequest_addssloptions httprequest_clearhistory httprequest_construct httprequest_enablecookies httprequest_getcontenttype httprequest_getcookies httpre…
WordPress: SQL to get all Categories
…_taxonomy_id) LEFT JOIN wp_terms on wp_term_taxonomy.term_taxonomy_id = wp_terms.term_id WHERE wp_term_taxonomy.taxonomy = ‘category’ GROUP BY wp_term_taxonomy.term_id or just for the names: SELECT wp_terms.name FROM wp_term_relationships LEFT JOIN wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id) LEFT JOIN wp_terms on wp_term_taxonomy.term_taxonomy_id = wp_terms.term_id WHERE wp_term_taxonomy.taxonom…
Continue reading
Posted in Social Media, Tech Tips, Web Development
Tagged blog, categories, mysql, query, sql, wordpress
7 Comments
How to Monitor Canon Printers with SNMP
…rts rate per second. For example, set to 60 to convert to per minute -s, —string=STRING Return OK state (for that OID) if STRING is an exact match -r, –ereg=REGEX Return OK state (for that OID) if extended regular expression REGEX matches -R, –eregi=REGEX Return OK state (for that OID) if case-insensitive extended REGEX matches –invert-search Invert search result (CRITICAL if found) -l, –label=STRING Prefix label for output from plugin -u, –…
Continue reading
Posted in Linux, Server Administration, Tech Tips
Tagged agent, canon, linux, monitor, monitoring, nagios, oid, paper, printer, snmp
8 Comments
MySQL UPDATE JOIN
…LEFT JOIN wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id) SET wp_term_taxonomy.taxonomy = ‘category’ WHERE 1 AND wp_term_taxonomy.taxonomy = ‘category’ AND wp_term_taxonomy.term_id IN (1) This WILL NOT WORK because the SET is in the wrong place: UPDATE wp_posts SET wp_term_taxonomy.taxonomy = ‘category’ LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) LEFT JOIN wp_t…
Continue readingGoogle Search Lucky
…much irrelevant) and they shortcut keyword you want to use. I use > Google Search Lucky Strings Standard “Im Feeling Lucky” Search http://www.google.com/search?q=%s&btnI=Im+Feeling+Lucky SSL Encrypted “Im Feeling Lucky” Search https://www.google.com/search?q=%s&btnI=Im+Feeling+Lucky Note: I’ve stripped out all items such as encoding and referrer to keep this as clean and simple as it can be. Now you can simply type in something like > Google Docs…
Continue reading
Posted in Mac, Software, Tech Tips, Web Development
Tagged browser, chrome, chromium, custom search, google, google search, https, i'm feeling lucky, lucky, search, ssl
2 Comments
WordPress: Get all terms for a post
…=> 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…
Continue readingIncrease Gmail search result count (from 20)
…t a time? It’s quite difficult to review, mark, and move messages when the search results are limited to 20 messages. Does it make sense that a “search company” which offers GIGABYTES of storage in their e-mail system limits your result count to 20? No. Of course not. Solutions Creating a Filter (thanks Stephan) Create a filter with your search. Put your keywords in the “Contains the words” field, then click “test search” and hit continue. Next, c…
Google Implements Voice Search
…ts Voice Search At 1:18am EST on 23 June 2011 Google has implemented Voice Search. Google Voice Search was a tool from Google Labs that allowed someone to use thei phone to make a Google query. After the user called (650) 623-6706, the number of Google Voice’s search system, they would wait for the words Say your Search Keywords and then say the keywords. Since the introduction of the service, products from Google, such as GOOG-411, Google Maps an…
WordPress: Convert All Tables To Utf8
…ONGTEXT character set utf8; ALTER TABLE wp_postmeta CHARACTER SET utf8; wp_terms name alter table wp_terms change name name VARBINARY(200); alter table wp_terms change name name VARCHAR(200) character set utf8 not null default ”; wp_terms slug alter table wp_terms change slug slug VARBINARY(200); alter table wp_terms change slug slug VARCHAR(200) character set utf8 not null default ”; ALTER TABLE wp_terms CHARACTER SET utf8; wp_term_taxonomy tax…
Continue reading