Skip to content

Instantly share code, notes, and snippets.

@jackvial
jackvial / what-forces-layout.md
Created February 6, 2017 19:56 — forked from paulirish/what-forces-layout.md
What forces layout/reflow. The comprehensive list.

What forces layout / reflow

All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.

Element

Box metrics
  • elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent
  • elem.clientLeft, elem.clientTop, elem.clientWidth, elem.clientHeight
  • elem.getClientRects(), elem.getBoundingClientRect()
MySql should be fine after the update.
Your apache config will be overwritten but the old previous will still be there as httpd.conf~previous and httpd.conf.pre-update.
Using httpd.conf~previous worked for me.
@jackvial
jackvial / gist:95b02309ddfbf19bc62d
Last active April 2, 2016 20:46
Laravel Homestead 502 badgate fix
wrote this up here a bit ago. See step 13. The rest of it may be useful to others as well:
https://laracasts.com/discuss/channels/general-discussion/homestead-with-php7
The tl;dr is that you need to edit your nginx config.
sudo nano /etc/ngingx/sites-enabled/whatever-you-call-your-app.com and change:
fastcgi_pass unix:/var/run/php5-fpm.sock;
To
@jackvial
jackvial / apache2-vhosts.md
Created February 19, 2015 18:11
Ubuntu Apache2 V-hosts Configuration

How to configure an Apache2 virtual host on Ubuntu 14.10

  1. Create a new v-host directive /etc/apache2/sites-available
  2. Add the site to /etc/hosts
  3. Enable the site with sudo a2ensite mysite.com
@jackvial
jackvial / gist:36d5f6b4b7f3f6189c01
Created January 19, 2015 12:49
Install ODBC on Ubuntu 14.04
http://www.kaffeetalk.de/how-to-setup-and-configure-mysql-with-unixodbc-under-ubuntu-14-04/
@jackvial
jackvial / gist:a0e594f93bd6f9701ed8
Created January 8, 2015 17:58
Github Pages Godaddy Custom Domain
@jackvial
jackvial / gist:d8a523693d29b0be3a41
Last active August 29, 2015 14:10
Backbone: Stackoverflow Answers
@jackvial
jackvial / gist:15b43c0fd831b5bc474d
Last active August 29, 2015 14:04
Add New Virtual Host XAMPP or LAMPP on Linux

On Windows: http://austin.passy.co/2012/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/

In this article, I would like to give a tutorial to Add New Virtual Host XAMPP or LAMPP on Linux.

In this case, I assume you already install xampp on your linux. Then lets start to Add New Virtual Host XAMPP or LAMPP on Linux immediately.

Open your terminal and log as SU Type in your terminal “gedit /opt/lampp/etc/httpd.conf” to open httpd.conf in your text editor delete “#” in front of “Include etc/extra/httpd-vhosts.conf” line