September 2011
8 posts
1 tag
links of the week #24
Code - Brett Terpstra
CSS3 Flexible Box Layout Explained
CSS3 Image Styles
Essential JavaScript Design Patterns For Beginners
Improving The Online Shopping Experience, Part 2: Guiding Customers Through The Buying Process
Keynotopia: User Interface Design Libraries for Keynote, PowerPoint and OpenOffice
LukeW | Mobile First
Managing CodeIgniter Packages with Git Submodules
Mobile...
1 tag
Symbolic links in apache on Mac OS X
On Mac OS X, a symbolic link in the webserver root /Library/Webserver/Documents pointing to a folder in your home directory will be greeted with an “access forbidden” error.
This is because the permissions of your Documents folder does not allow apache to scan its content.
To circumvent this issue, you can change the permissions on your Documents folder :
chmod o+x ~/Documents
1 tag
links of the week #23
A few git tips you didn’t know about
Bash Shortcuts For Maximum Productivity
Bootstrap.less by Mark Otto
CSS Triangle
Elastislide - A Responsive jQuery Carousel Plugin
Extending Evernote: AppleScripts for Chrome, Safari, Instapaper and Alfred
Funktion font by Kyle Steed
Improving The Online Shopping Experience, Part 1: Getting Customers To Your Products
Intriguing animate-on-scroll...
3 tags
Customizing Taskpaper
Since I am a big fan of keeping all important information in plain text and since Things.app is taking forever to roll out their syncing solution, I am trying out Taskpaper.
I use Taskpaper on the mac and the iPhone to manage my todo-list and to do some simple bug tracking for the web sites I develop.
I created a new theme for Taskpaper on the mac and use some applescripts and Alfred to enhance...
1 tag
My Sublime Text 2 settings and themes →
1 tag
links of the week #22
An Introduction To LESS, And Comparison To Sass
Awkward Showcase
Behavior Driven Development in Symfony2 with Behat, Mink and Zombie.js
bgStretcher
Cross-Browser Testing Tool - BrowserStack
Deploying Symfony2 projects on Shared Hosting with Capifony
Exactly How to Create a Custom jQuery Accordion
FitVids.JS - A lightweight, easy-to-use jQuery plugin for fluid width video embeds.
...
1 tag
links of the week #21
Beautiful advanced jQuery background image slideshow
Dive Into Python
Extending different layouts for Ajax requests in Twig, Symfony2
Foliozo
github flow
Github workflow example
How to setup your new VPS Ubuntu server
Infinite Scroll jQuery Plugin
infinite, circular jQuery carousel
JQuery Cycle Plugin
Kronuz/SublimeCodeIntel - GitHub
Learn Python The Hard Way
Learn Vim Progressively
...
1 tag
Assigning a keyboard shortcut to a Sublime Text 2...
I am using Sublime Text 2 since a few days and wanted to add some personalized keyboard shortcuts to ease my transition from Textmate.
For instance, I wanted to assign the CTRL-U shortcut to the “convert to uppercase” command you can find in the menu.
To do this, go to Preferences > Key Bindings - User and change the file to :
[
{ "keys": ["ctrl+u"], "command": "upper_case"}
]
To...