- What is a Landing Page
- Call To Action Copy
- Design Two Buttons, then Stop.
- How to Hook New Customers with Your Explainer Video
- Landing Page Success
- The anatomy of a perfect Landing Page
- 5 Tested Conversion Design Tactics You Should Put to Work. Right Now.
- The Most Dangerous Landing Page Mistakes & How You Can Fix Them
--- a/prl_fs/SharedFolders/Guest/Linux/prl_fs/file.c 2013-09-19 06:32:40.000000000 +0300 | |
+++ b/prl_fs/SharedFolders/Guest/Linux/prl_fs/file.c 2013-09-19 06:34:02.000000000 +0300 | |
@@ -85,7 +85,11 @@ | |
DT_LNK, | |
}; | |
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0) | |
+static int prlfs_fill_dir(struct file *filp, struct dir_context *ctx, | |
+#else | |
static int prlfs_fill_dir(struct file *filp, void *dirent, filldir_t filldir, |
server: | |
@@jekyll --server | |
render: | |
@@echo "Building the site..." | |
@@jekyll --no-future | |
minify: | |
@@echo "Minifying the CSS..." | |
@@java -jar _build/yuicompressor.jar --verbose --type css -o _site/path/to/style.css _site/path/to/style.css |
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* | |
* @author Omni Adams <[email protected]> | |
*/ | |
/** |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
- WYSIWYG HTML
- integrates with MoxieManager for file management (PHP only)
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
- Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
- Felix's Node.js Guide
- Creating a REST API using Node.js, Express, and MongoDB
- Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
- JavaScript Event Loop
- Node.js for PHP programmers
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.
A Static Site Generator is a program, that generates an HTML website as an output. ThisHTML website is then served through your web server, just like the old’n’days. This is usually achieved using template languages and code that separates out the layout of the website from its content and styles.
Advantages of a Static Site Generator?
- Security – There’s no database layer, or rails/pylons layer of code so security excellent.
- Performance – Under load, less memory / cpu usage to serve your website, so your website stays up longer
- Have a copy of your content separate from your server
- Easily move your website to another host – Copy and paste the HTML and re-route the domain name should you have one.