Category Archives: Web
Developer Cheat Sheets
A site with cheat sheets for developers covering a large number of different technologies:
Programming & Scripting Languages:
ActionScript :: Ada :: AJAX :: C :: C# :: C++ :: CFScript :: Clojure :: COBOL :: ColdFusion :: Common Lisp :: Delphi :: Erlang :: F# :: Fortran :: Haskell :: Java :: JavaScript :: Lisp :: Lua :: MATLAB :: Objective-C :: Pascal :: Perl :: PHP :: Prolog :: Python :: R :: Ruby :: Scala :: Scheme :: Server Side Includes (SSI) :: Tcl :: VB.NET :: VBScript :: Visual Basic (VB)
Markup Languages:
CSS :: HTML :: JavaServer Pages (JSP) :: Markdown :: MathML :: Schematron :: XAML :: XHTML :: XML :: XPath :: XSLT
Query Languages:
LINQ :: PL/pgSQL :: PL/SQL :: SQL :: T-SQL :: XQuery :: Yahoo! Query Language (YQL)
Libraries & Frameworks:
Adobe Integrated Runtime (AIR) :: ASP :: ASP.NET :: Blueprint CSS :: CakePHP :: CodeIgniter :: Django :: Drupal :: Enterprise JavaBeans (EJB) :: Fusebox :: GNU Readline :: Google Web Toolkit (GWT) :: JavaServer Faces (JSF) :: Joomla! :: jQuery :: JSTL :: Kohana :: Lift :: Lime Testing Framework :: Microsoft .NET Framework :: MODx :: MooTools :: OpenGL :: OpenSSL :: Oracle ADF :: Papervision 3D :: Prototype :: Ruby on Rails :: Scriptaculous :: SimpleTest :: Smarty :: Spring :: Symfony :: Vaadin :: Yii PHP Framework :: YUI :: Zend Framework
Operating Systems:
BackTrack :: IBM AIX :: Linux :: Mac OS X :: Microsoft Windows :: Unix
Version Control:
Bazaar :: CVS :: Git :: Mercurial :: Perforce :: Subversion (SVN)
Servers:
Apache :: .htaccess :: IIS
Databases:
DB2 :: Informix :: Ingres :: Microsoft SQL Server :: MS Access :: MySQL :: Oracle :: PostgreSQL :: SQLite :: Sybase
ORM:
ActiveRecord :: Doctrine :: Hibernate :: Propel
Blogs:
Blogger :: Movable Type :: TypePad :: WordPress
Websites:
Ask.com :: Gmail :: Google :: Google Adwords :: Google Docs :: Google Maps :: Google Reader :: Twitter :: Yahoo!
Text Editors:
ed :: emacs :: E Text Editor :: TextMate :: Vi :: Vim :: Vimperator :: x-emacs
Applications:
3D Studio Max :: AAV ColorLab :: Adobe Acrobat :: Adobe Dreamweaver :: Adobe Fireworks :: Adobe Flash :: Adobe Framemaker :: Adobe Illustrator :: Adobe InCopy :: Adobe InDesign :: Adobe Photoshop :: Adobe Photoshop Elements :: AppleWorks :: Blender :: Capistrano :: Cinema 4D :: Eclipse :: Fgdump :: Final Cut Pro :: Front Row :: GNU Debugger (GDB) :: Hping :: iCal :: IDA Pro :: Internet Explorer :: Intuit Quickbooks :: iTunes :: Keynote :: Lotus Notes :: Macromedia Freehand :: MediaWiki :: Metasploit :: Microsoft Entourage :: Microsoft Excel :: Microsoft FrontPage :: Microsoft InfoPath :: Microsoft Office :: Microsoft OneNote :: Microsoft Outlook :: Microsoft PowerPoint :: Microsoft Project :: Microsoft Publisher :: Microsoft Visio :: Microsoft Visual Studio :: Microsoft Visual Web Developer :: Microsoft Word :: Mozilla Firefox :: Mozilla Thunderbird :: MPlayer :: Mutt :: Nessus :: Netcat :: Nmap :: OllyDbg :: Outlook Express :: Pages :: PGP :: PowerShell :: QuarkXPress :: Robocopy :: rsync :: Safari :: SharePoint Server :: Wireshark :: Xcode :: Xmonad
Security:
SQL Injection :: XSS
Networking:
Border Gateway Protocol (BGP) :: Cisco IOS :: EIGRP :: First Hop Redundancy :: IEEE 802.11 :: IEEE 802.1X :: Internet Protocol (IP) :: IPsec :: IS-IS :: Multiprotocol Label Switching :: Networking :: OSPF :: Point-to-Point Protocol (PPP) :: Quality of Service (QoS) :: Spanning tree protocol (STP) :: Subnetwork :: TCP/IP :: Virtual LAN (VLAN) :: Virtual Private Network (VPN) :: WLAN
Other:
Access Control List (ACL) :: Accessibility :: Adobe Flex :: apt-get :: ASCII :: awk :: Bash :: BPMN :: Character Codes :: chmod :: Colors :: Country Codes :: Design Patterns :: DOM :: DOS :: DTD :: Exim :: ExpressionEngine :: Fonts :: Funny :: Google Analytics :: Google Voice :: Google Wave :: Incanter :: Internationalization (I18N) :: LaTeX :: Marketing :: Microformats :: mod_rewrite :: NetHack :: OAuth :: RDFa :: Regular Expressions :: Reverse Engineering :: rpm :: RSS :: Scalable Vector Graphics (SVG) :: screen :: Security :: sed :: SEO :: SSH :: SSL :: tcpdump :: TeX :: UML :: Unicode :: Usability :: Visualization :: Win32 :: WPF :: x86 :: Yahoo! Search BOSS
Learn To Play The Piano
Google Chucking IE6…YIPEE!!!
I received the following message from Google last night:
Dear Google Apps admin,
In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology. This includes faster JavaScript processing and new standards like HTML5. As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.
We plan to begin phasing out support of these older browsers on the Google Docs suite and the Google Sites editor on March 1, 2010. After that point, certain functionality within these applications may have higher latency and may not work correctly in these older browsers. Later in 2010, we will start to phase out support for these browsers for Google Mail and Google Calendar.
Google Apps will continue to support Internet Explorer 7.0 and above, Firefox 3.0 and above, Google Chrome 4.0 and above, and Safari 3.0 and above.
Starting this week, users on these older browsers will see a message in Google Docs and the Google Sites editor explaining this change and asking them to upgrade their browser. We will also alert you again closer to March 1 to remind you of this change.
In 2009, the Google Apps team delivered more than 100 improvements to enhance your product experience. We are aiming to beat that in 2010 and continue to deliver the best and most innovative collaboration products for businesses.
Thank you for your continued support!
Sincerely,
The Google Apps team
I guess it’s so long IE6.
I think that this also means that we developers can quit crippling our websites so that they work with IE6.
Let the fun begin…
Target Versions of IE Using CSS
Cool way to easily target a specific version of IE in CSS:
#someElement {
background: red; /* modern browsers */
*background: green; /* IE 7 and below */
_background: yellow; /* IE6 exclusively */
}
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, “Courier New”, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
via NETTUTS
Another ASCII Text Site
Similar to the last post here is another ASCII text site.
<nobr> ___ ____ _ <br />
/ _ | _ __ _(_)_ __ ___ <br />
| (_) | |_) / _` | | ‘_ / __|<br />
__, | _ < (_| | | | | __ <br />
/_/|_| ___,_|_|_| |_|___/<br />
</nobr>
Turn Your Pic Into Text
@@@@@@@@@ ,rX9992;, @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@ :X#AX2iiS3&M2r @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@ ;iBBi;. ::r;S5i @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@ .iHX. s9i @ :;:::::::::;. @@@@@@@@@@@@@@@@@@ .... . @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@ rAA, 5h, .SSiiiiiiiiiiisr @@@@@@@@@@@@@@@@ ... . @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ sAG .r2r, sM; ;SiiSSSSi239999r @@@@@@@@@@@@@@@@@@ ..... @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
rAA ;M#MH#@@s 2#s::;. ,i99393, ............ @@@ r9XX2i@@ ;r:,....... @@@@ ........ .
:XHr ... r@BS,,:G#@r ABGh&5:@@@@ :93Xh2 i2SSSSSSSSiiSs. @:AHAAB; ,2h2SiSSS5SSSSi, @ riSSSSiiSiSShs
i9A. .... ,#&,@@@@ i#B .. SHh9Ar @@@@ rAXXGr ;iiSiiiiS393X9; rB&GGh: sBh3X3SssiXG9hhX; ;3&992irrri99G&X
33h .... ;@: @@@@ ;MM. ... 5A333.@@@@ ,h9X39r @@ ShXXGs ,2A3X9S .2A3Xhr ;Xh39Gs,H&93X, @@@ i&935
X9A .... :@; @@@@.5MX .... iAX39. .;XGX9hr ,r5X9hh93XhXXXGr rA9XX&r ;A9XXh, @@ ,39XXA,;M9X3Xr @@ ,:,,;
rG#; .... 3#: :XB9. .... ,AhX3G&2S5X&G3Xir ,XX&AMH&&GAA3XX95: iA3X33: SA3X3S @@@ rAXX9X.:XhhhAG2s;:, @@@@
.S#M ,,.. iAXiXA&r .,,,. 9AXX92ss3AG932; iHAGGsrrrr,S9XXGi ,XGXXhi :2&XXGs @@@ 2GXXGr .ii23AAG&932r. @
@ 2#& ,,.. :;;, .,,,. 2H9X9i .XGXXX,@@;HG39s @@@@ S9XX9; rH9XXGr rA3XXh: @@ :99XXh; @@ :;;s23AGhh; @
@ ,X@H, .... ..,,.. SBhXXh; @@ r&3XGr @i&3X9i ;&XXh5 2A3X3X; SA3Xhi @@@ ;A3XhS, . ;h3X&i @
@@ rB@h;. ...,,,,,. ,G#&9392, @@ .2h9h9: ;3&hGA222X2&939A; ;3&33&r ,h&33Ar @@@ 2G33GS iA&&AAAAG9hhh&2; @
@@@@ :s#@#&32r ,,,,,.. 5@955SS5r @@@@ ;555X; ,si22222225SSis, ;32SS2r :95S5s.@@@@,i5SSS; ;GGhhGGh9X2isr, @@
@@@@@@ i##Mi:,,,:,. rBA2 .;;;, @@@@@@ ,;;r. @ :;;;;;;;;; @ :;;;, @ ,;;; @@@@ ,;::, @ ,r;;;;;;;; @@@@
@@@@@ i3Bh; ,:::, ;HHXr@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@ sHA; .,:::..2#X; @@ @@ @@@ @@ @@ @ @@@ @@ @@@@ @@@ @ @ @@@@@@@@
@ rGHr .,:::..r#G; @@ @@ @@ @@ @@ @@ @@ @@@@ @@@ @ @@@@@@@@
@ ,#A ,::::, ;ABr @@@@@.:@@@ :, @@ ,. @@ @@ @@ ::, @@ . @@ ::. @@@ .: @@@ @@@@@@@@@
@ .2H5. :;,.:&B9: @@@@@@r @@@ ;; @@ .;: @@@ @@ @@ ,@ @@@..:,:@@@ , @@ ,:: @@@ ;;, @@@@ @@@@@@@@@
@@ s##; .,XMA; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@.r5Xir2Sr @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
............................................................................................................
..............................................................................................Photo2Text.com
CopyRight@photo2text.com
via Photo2Text
Hello. My Name Is…
The images to the left are all variations of my first name “Stewart” in Japanese. Below is the explanation:
It is pronounced "SUCHUAATO". (Consonants are pronounced more or less the same way as in English. "A" sounds like a in father, but shorter. "U" sounds like oo in hook, but with less rounding of the lips. "O" sounds like o in old. Double vowels like "AA" are held for twice the duration of single vowels.)
You can see what your name looks like by going to JapaneseTranslator.co.uk.
Laughingstock Designs
An old friend of mine has a company called Laughingstock Designs that creates custom greeting cards. It’s a very cool idea. They also do other creative work.
Way to go Shane!

