Skip to content

Instantly share code, notes, and snippets.

View zenalice18's full-sized avatar

Paolo Bellucci zenalice18

  • Milan, Italy
View GitHub Profile
@zenalice18
zenalice18 / regexp.txt
Last active June 1, 2019 18:31
RegExp
# Json line to MD table line
"(\w*)"\s*:\s*"(\w*)",? -> | $1 | $2 |
@zenalice18
zenalice18 / logic_useful_features_articles
Last active June 10, 2016 07:59
Logic Pro X Useful features / articles
--------------------------------
Handy Shortcuts for Logic Pro X
http://music.tutsplus.com/tutorials/handy-shortcuts-for-logic-pro-x--cms-21621
* Split a region in equal length regions
-> select scissor, hold down option and click.
First select the Scissor Tool from the menu. To auto chop any region by a set musical division, place your cursor over the region at the point where you would like the first chop to be made, hold down option and click. The region will be automatically chopped up into equal parts
@zenalice18
zenalice18 / Disable_Hibernate_mode
Created May 26, 2016 08:00
OSX: Disable Hibernate mode
#http://www.engadget.com/2011/08/22/why-hibernate-or-safe-sleep-mode-is-no-longer-necessary-in-os/
#https://www.idelta.info/archives/some-hidden-changes-in-os-x-el-capitan/
# disable hibernation
sudo pmset hibernatemode 0
# clear the image file
sudo rm -rf /var/vm/sleepimage
# inhibit file recreation
@zenalice18
zenalice18 / 0_reuse_code.js
Created March 23, 2016 09:26
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@zenalice18
zenalice18 / socialConfigXCode-FB.txt
Last active March 8, 2016 10:16
Social App setup in XCode - Facebook - ios
<!-- FACEBOOK -- Info.plist for ios 9-->
<!--
configure FB Application @ developers.facebook.com
and get {your-app-id}
https://developers.facebook.com/docs/ios/getting-started#appid
-->
<!-- Pods -->
pod 'FBSDKCoreKit', '~> 4.10'
pod 'FBSDKLoginKit', '~> 4.10'