• Home
  • Shell
    • Emacs
    • Perl
    • screen
    • sed
  • Ubuntu
    • VNC
  • Web Development
    • Javascript
    • Joomla
    • MySQL
    • osTicket
  • Windows
    • Gimp
KEEP IN TOUCH

Posts tagged search

Google > Search by Image instead of text (Identify Image)

Sep12
2012
Leave a Comment Written by Scott Rowley

So the other day someone on facebook asked who someone was and supplied a picture. As it happens I had no idea who it was so I started wondering how I could still identify the person and supply the answer. Well, as is often the case, Google has already thought this up and supplied the answer. Take a look at the following short video to see how this is easily done.

Posted in Web Development - Tagged google, image, images, photo, picture, result, text
SHARE THIS Twitter Facebook Delicious StumbleUpon E-mail

Emacs > Use % to jump to the matching parenthesis/brackets

Oct26
2010
Leave a Comment Written by Scott Rowley

Found the following while working on other emacs configurations, works great for when your code gets out of hand:

;;; Use "%" to jump to the matching parenthesis.
(defun goto-match-paren (arg)
 "Go to the matching parenthesis if on parenthesis, otherwise insert
the character typed."
 (interactive "p")
 (cond ((looking-at "\s(") (forward-list 1) (backward-char 1))
 ((looking-at "\s)") (forward-char 1) (backward-list 1))
 (t                    (self-insert-command (or arg 1))) ))
(global-set-key "%" `goto-match-paren)
Posted in Emacs - Tagged bracket, edit, Emacs, jump, parenthesis
SHARE THIS Twitter Facebook Delicious StumbleUpon E-mail

Corrections? Questions? Comments?

Find an error?
Everything work out great for you?
Have some feedback?
Like to see something added to the article?

PLEASE leave us a comment after the article and let us know how we are doing, or if something needs corrected, improved or clarified.

Thank you!
- The Management

Sudo Bash Member sites

Iowa SAR
Des Moines, Iowa Tattoo & Piercing
The Man In Black

Meta

  • Log in
  • Entries RSS
  • Comments RSS
  • WordPress.org

RSS HowToGeek

  • Google and Amazon Are Killing the Smarthome Hub, and That’s Great
  • Geek Trivia: What Common Office Supply Staple Is Capable Of Generating X-Ray Radiation?
  • How to See All the Apps You’ve Purchased From the Mac App Store
  • Samsung Wants You to Love the Galaxy Fold… But Not to Buy It
  • Deal Alert: Get 20% Off All dbrand Skins

RSS TheGeekStuff

  • 20 Practical Ruby Loop Command Examples – For, Each, While, Until
  • Happy New Year 2018 – From Geek, Dolls and Penguins
  • How to Install Configure LDAP Client for 389 Directory Server
  • 15 mysqlbinlog Command Examples for MySQL Binary Log Files
  • How to View Chrome OS Current version and Force Update Chromebook OS

RSS LifeHacker

EvoLve theme by Blogatize  •  Powered by WordPress Sudo Bash
By Geeks - For Geeks

Back to Top