To setup your computer to work with *.dev domains, e.g. project.dev, awesome.dev and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion
| s3cmd ls --recursive s3://BUCKET_NAME | ruby -rdate -ne 'date, time, size, uri = $_.split; puts uri if size == "0"' | xargs s3cmd del |
| # Start the old vagrant | |
| $ vagrant init centos-6.3 | |
| $ vagrant up | |
| # You should see a message like: | |
| # [default] The guest additions on this VM do not match the install version of | |
| # VirtualBox! This may cause things such as forwarded ports, shared | |
| # folders, and more to not work properly. If any of those things fail on | |
| # this machine, please update the guest additions and repackage the | |
| # box. |
| --- ext/openssl/ossl_pkey_ec.c | |
| +++ ext/openssl/ossl_pkey_ec.c | |
| @@ -757,8 +757,10 @@ static VALUE ossl_ec_group_initialize(int argc, VALUE *argv, VALUE self) | |
| method = EC_GFp_mont_method(); | |
| } else if (id == s_GFp_nist) { | |
| method = EC_GFp_nist_method(); | |
| +#if !defined(OPENSSl_NO_EC2M) | |
| } else if (id == s_GF2m_simple) { | |
| method = EC_GF2m_simple_method(); | |
| +#endif |
| --- ext/openssl/ossl_pkey_ec.c | |
| +++ ext/openssl/ossl_pkey_ec.c | |
| @@ -757,8 +757,10 @@ static VALUE ossl_ec_group_initialize(int argc, VALUE *argv, VALUE self) | |
| method = EC_GFp_mont_method(); | |
| } else if (id == s_GFp_nist) { | |
| method = EC_GFp_nist_method(); | |
| +#if !defined(OPENSSl_NO_EC2M) | |
| } else if (id == s_GF2m_simple) { | |
| method = EC_GF2m_simple_method(); | |
| +#endif |
| Installing vsftpd on CentOS | |
| yum install vsftpd | |
| How to configure vsftpd: | |
| Now that you’ve installed vsftpd, follow this procedure to configure it. These steps applies for both the linux variants. | |
| Before you get started, stop the vsftpd by typing: |
| # Check the name of the volume | |
| fdisk -l | |
| # Should look like this: | |
| # Disk /dev/xvde: 214.7 GB, 214748364800 bytes | |
| # Resize the volume | |
| resize2fs /dev/xvde |
| # First create a dump of your MySQL database | |
| mysqldump -u [user] -p database_name > database_name.sql | |
| # Convert the data | |
| iconv -f iso-8859-15 -t utf8 database_name.sql > database_name_iconv.sql | |
| # Import the database | |
| mysql -u [user] -p database_name < database_name_iconv.sql | |
| # If you still have some specific characters that do not display |
| brew tap homebrew/versions | |
| brew install v8-315 | |
| gem install libv8 -v '3.16.14.13' -- --with-system-v8 | |
| gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 | |
| bundle install |
To setup your computer to work with *.dev domains, e.g. project.dev, awesome.dev and so on, without having to add to your hosts file each time.
| 1. Copy 'git-sync-fork' script code from gist | |
| 2. Create a file called 'git-sync-fork' in any 'bin' directory in your $PATH | |
| 3. Paste script into this new file 'git-sync-fork' and save | |
| 4. Make the file executable `chmod +x git-sync-fork` | |
| 5. Run the script inside your locally forked git repo | |
| Example: | |
| git-sync-fork upstream origin |