Skip to content

Instantly share code, notes, and snippets.

View SidIcarus's full-sized avatar

Alvaro Pareja-Lecaros SidIcarus

View GitHub Profile
@SidIcarus
SidIcarus / pliim-turnOff.scpt
Created March 23, 2019 05:42 — forked from zehfernandes/pliim-turnOff.scpt
One click and be ready to go up on stage and shine! - https://zehfernandes.github.io/pliim/
# Turn on Notifications
do shell script "defaults -currentHost write com.apple.notificationcenterui doNotDisturb -bool FALSE; defaults -currentHost delete com.apple.notificationcenterui doNotDisturbDate; osascript -e 'quit application \"NotificationCenter\" ' && killall usernoted" -- this set 'Do not disturb' to false in the pref
# Show Desktop
do shell script "defaults write com.apple.finder CreateDesktop -bool true; killall Finder"
# Show all windows
tell application "System Events"
set visible of (every process) to true
end tell
@SidIcarus
SidIcarus / README.md
Created September 14, 2018 13:48 — forked from hassansin/README.md
Remote Debugging with XDebug 2.1

XDebug

A PHP extension that allows you to:

  1. walk through your code by Remote Debugging
  2. find bottlenecks in your application by Profiling
  3. find Code Coverage in a single request
  4. trace your application by logging all function calls
@SidIcarus
SidIcarus / bucketsnip.sh
Last active June 13, 2018 18:39 — forked from mgoellnitz/bucketsnip.sh
Bitbucket Snippet Command Line Tool
#!/bin/bash
#
# Copyright 2017-2018 Martin Goellnitz
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,