Add these fun keyboard shortcuts to your system! Works especially well if you're writing @muan a lot (◍•ᴗ•◍)♡
Here's how on OS X:
Press cmd
+ space
and search and open System Preferences, then select Keyboard, then Text ヽ(´∇`)ノ
Note
# Set up some variables relating to which path Vagrant will try to share | |
# with the VM. | |
require 'pathname' | |
$docroot_name = "path/to/your/docroot" | |
$docroot_path = "" | |
# Test that the directory to be shared is in the right place and if it is, | |
# calculate the fully dereferenced path (since NFS exports will fail if you | |
# try to specify the path to a symlink.) | |
if !File.exists?("../#{$docroot_name}") then |
#!/bin/sh | |
# Make sure to chmod +x this script and copy it somewhere in your path, ~/bin in my case | |
# CloudStack build (ant build-all) will invoke this script | |
ISO=$4 | |
shift 4 | |
CSTK=$(mktemp -d -t CloudStack.X) | |
for i in $*; do cp "$i" $CSTK; done | |
echo "hdiutil makehybrid -o $ISO.iso -hfs -joliet -iso $CSTK" |
[ | |
{name: 'Afghanistan', code: 'AF'}, | |
{name: 'Åland Islands', code: 'AX'}, | |
{name: 'Albania', code: 'AL'}, | |
{name: 'Algeria', code: 'DZ'}, | |
{name: 'American Samoa', code: 'AS'}, | |
{name: 'AndorrA', code: 'AD'}, | |
{name: 'Angola', code: 'AO'}, | |
{name: 'Anguilla', code: 'AI'}, | |
{name: 'Antarctica', code: 'AQ'}, |
<?php | |
/** | |
* A helper file for Laravel 5, to provide autocomplete information to your IDE | |
* Generated for Laravel 5.5.13 on 2017-09-28. | |
* | |
* @author Barry vd. Heuvel <[email protected]> | |
* @see https://github.com/barryvdh/laravel-ide-helper | |
*/ | |
namespace { | |
exit("This file should not be included, only analyzed by your IDE"); |
Deleted field_partners field | |
Cleared cache | |
SELECT * | |
FROM field_collection_item | |
WHERE field_name='field_partners' | |
52 rows | |
SELECT * FROM field_collection_item_revision rev | |
JOIN field_collection_item item on item.item_id = rev.item_id |