Bookmark: Online JSON Viewer
Web
JSON Viewer - Convert JSON Strings to a Friendly Readable Format
JSON Viewer - Convert JSON Strings to a Friendly Readable Format
Initializr generates clean customizable templates based on HTML5 Boilerplate with just what you need to start quickly!
A comprehensive list of what browsers support what new HTML5 / CSS3 features to help you figure out what's safe and what's adventurous
Look up HTML5, CSS3, etc features, know if they are ready for use, and if so find out how you should use them – with polyfills, fallbacks or as they are.
Here's a collection of nifty shortcuts and tricks you can do when you're working with Photoshop and the web. I picked up at work while working with our designer, who's exceptionally skilled at graphic design. He's putting together some of the most amazing looking skins our products will ever get to bare. If you want some examples of his work just take a look at some of the screenshots from the Jobvite Share project.
I'm a mac user and one of the most annoying things for me in terminal is trying to move the cursor from the beginning, end or anywhere in the middle. I did a bit of googling and found a helpful stack overflow article giving some useful information. While I was implementing a hack suggested by one of the comments, I ended up adding my own tweaks.
First, open Preferences > Settings > Keyboard in terminal.
Second, I recommend checking off the "Use option as meta key" if you never use weird characters.
Now go ahead and add the following commands:
\033b [press ESC+b]: Move left word at a time\033b [press ESC+f]: Move right word at a time (I use option because CTRL+Arrows changes spaces for me)\001 [press ctrl+a]: Move to beginning of line (I use shift because highlighting doesn't work)\005 [press ctrl+e]: Move to end of lineAlso, you should try hitting CTRL+R and start typing characters of a previous command you set. I think you hit TAB to confirm the selection. Good way to move to the middle of a command.
So I've been comparing a LOT of different javascript frameworks for my company's rewrite, and finally settled on AngularJs because of how rapidly I'd be able to produce prototypes. In my opinion, although it's very alpha and fairly lacking on the graphical side, it's excellent for CRUD applications (meaning forms, tables and reports). I'm still trying to lean towards emphasizing reusable widgets and directives instead of just custom-coding everything for your own app. If you are still trying to decide on a framework, take a look at TodoMVC, an excellent unbaised comparison.
I'll keep updating this post, so check back often!
Public domain icons for todays world
Founded in 1995, GameFAQs has over 40,000 video game FAQs, Guides and Walkthroughs, over 250,000 cheat codes, and over 100,000 reviews, all submitted by our users to help you.
A foundry and Hand-Picked collection of Open-Source Typography
The time management technique created by Francesco Cirillo for a more productive way to work and study.
Konvertor, KontextViewer, Flash 32 XV7, HappyIcon: All the tools you need to edit, capture, convert and play files. Convert FROM any format TO any format
Form Beyond Function. Amazing Prototypes and theoretical product designs.
CoolHomepages web page design and inspiration gallery of homepages, design, website designs and templates features thousands of cool web site design examples for inspiration - browse, search, learn, get inspired.
Teaching Programmers how to Design through learning games
So I was rooting around the apple website trying to figure out how to fix the bluetooth choppyness on my laptop my company bought for me for my headphones. I had tried using it on my personal laptop which has OSX Lion and it plays beautifully, so I figured maybe I should upgrade this one as well. While clicking around the Apple.com website I came across their up-to-date program.
The program claims to only be available to people who purchased laptops later than July. Lucky me, I started working in August and I know that my company buys laptops practically the day before someone new comes in. This may or may not work for everyone, but it doesn't hurt to try.
Ever visit a website and wish you could remember where your bookmarks are for that site? Saved a post from a blog and can't find it? Find My Bookmarks is a Chrome Extension that locates all your bookmarks for the current domain. If bookmarks are found, the icon appears and you can just click on it to get a list.
The idea for this came about after a discussion with a coworker regarding bookmarks. That night I went home and 2 hours later I had a fully working prototype. Another hour later and a bit more polish we were ready to release it.
Now I can say I built a chrome plugin. Not that I actually need or use it, but it's a nice portfolio item.
Real-time collaborative wiki. Runs on Etherpad tech + neat task management features and clean interface
AngularJs Textmate Bundle
Asana is the shared task list for your team. The place to plan, organize and stay in sync on your efforts. Best implementation I've seen to date
An interesting graphic to quickly lookup any HTML5 element. What makes it cool is that you can view usage stats for each element based on a URL of your choosing
Awesome CSS demos every week! Why bookmark 1 post when you should be following his entire blog
Graduated recently as a CIS major, helping my peers on campus as the official department tutor writing tests, teaching classes or even for with employees.
Outside of studying I'm working every summer helping small companies build their enterprise web applications on top of industry trends like CakePHP, jQuery and Git.
And finally I always make time to work on research for new personal projects and that one idea that could become the next facebook. I love my work and outside of gaming breaks and food fests programming is my #1 pass-time.
CSS border radius generator for lazy people.
Since working at Jobvite on our new facebook platform, I've been dealing a LOT with client-side apps. Unfortunately we weren't smart enough to start using something like Sproutcore or Backbone, but I'm working to amend that at the moment.
One of the things I've developed for the team is a special Factory class geared specifically to handling our unique structure. In our app there are quite a few components that must load before certain bodies of code can execute, and this creates a long load time:
Jobvite's existing core codebase is in ASP.net. That in of itself merits a rewrite, poor CSS, HTML and JS aside. Currently we are rebuilding the backend to run on Java and will be serving up a completely static site that is powered by a Javascript front-end. I have been tasked to do research as to the best way to execute this, and have been weighing different Javascript frameworks to get the job done. Currently it looks like we will be moving forwards with AngularJs and I will try to contribute to the newly budding community as best I can.
Hide/show elements on the page when toggling the state of the page or container. Handles dynamically added elements too. Toggling 1 class is much faster than selecting and hiding a bunch of elements programmatically.
Snippet I use as a simple way to select entire table rows for batch actions.
Nifty approach to caching deferreds so that calling async methods multiple times will avoid queueing.
So While checking out this page on CSS-Tricks http://css-tricks.com/examples/ModalLogin/# I decided to see if I could recreate the layout in pure css.