Skip to content

Instantly share code, notes, and snippets.

View Palid's full-sized avatar
🏠
Working from home

Dariusz Niemczyk Palid

🏠
Working from home
View GitHub Profile
@Palid
Palid / gist:5a32a9069abcd8b6417638b1b873f2a8
Created September 20, 2017 14:26 — forked from spudbean/gist:1558257
Look of disapproval and other emoticons
ಠ_ಠ
( ͡° ͜ʖ ͡°)
¯\_(ツ)_/¯
(╯°□°)╯︵ ┻━┻
http://www.fileformat.info/convert/text/upside-down.htm
WRTTN http://wrttn.me/30dbfd/
Unicode Emoticons
@Palid
Palid / osx-setup.sh
Created May 23, 2017 08:44 — forked from somebox/osx-setup.sh
Set up an OSX machine from zero to awesome. Uses Homebrew (and cask, fonts, etc). Focused on Ruby/Rails development, includes rvm, xquartz, editor fonts, sublime text, and many tools.
#!/bin/bash
# A script to set up a new mac. Uses bash, homebrew, etc.
# Focused for ruby/rails development. Includes many utilities and apps:
# - homebrew, rvm, node
# - quicklook plugins, terminal fonts
# - browsers: chrome, firefox
# - dev: iterm2, sublime text, postgres, chrome devtools, etc.
# - team: slack, dropbox, google drive, skype, etc
@Palid
Palid / pushover.pl
Created July 3, 2016 15:52 — forked from jnovack/pushover.pl
pushover.pl - Sends irssi notifications to Pushover
use strict;
use warnings;
# {{{ DOCUMENTATION
#####
# A lot of code borrowed from the prowlnotify.pl script at
# http://www.denis.lemire.name/2009/07/07/prowl-irssi-hack/
# and pushovernotify.pl (Daniel Johansson <donnex@donnex.net>)
# and http://www.geekfarm.org/wu/muse/scripts/growl-notify.txt
#
@Palid
Palid / keybase.md
Last active April 10, 2017 13:15
keybase.md

Keybase proof

I hereby claim:

  • I am palid on github.
  • I am phoelid (https://keybase.io/phoelid) on keybase.
  • I have a public key whose fingerprint is 0F6D 1A76 8E25 E3A6 430C 3895 0AD2 F70C 94CA 5B03

To claim this, I am signing this object:

cd ~/
git clone https://github.com/Palid/webdev-workshops-grant.git
cd webdev-workshops-grant
git checkout grant
@Palid
Palid / xfreerdp
Last active May 6, 2025 13:21
Autoscript for xfreerdp
#!/bin/bash
ip="IP"
user="LOGIN"
password="PASSWORD"
flags="/f -themes -wallpaper +compression +fonts /jpeg"
total="/v:$ip /u:$user /p:$password $flags"
echo "Chose screens from: Mon0, Mon1, Multimon"
@Palid
Palid / Guake monokai #1
Created February 21, 2014 14:07
Monokai terminal
#!/bin/bash
palette="#1B1B1D1D1E1E:#F9F926267272:#8282B4B41414:#FDFD97971F1F:#5656C2C2D6D6:#8C8C5454FEFE:#464654545757:#CCCCCCCCC6C6:#505053535454:#FFFF59599595:#B6B6E3E35454:#FEFEEDED6C6C:#8C8CEDEDFFFF:#9E9E6F6FFEFE:#89899C9CA1A1:#F8F8F8F8F2F2"
bd_color="#000000000000"
fg_color="#A0A0A0A0A0A0"
bg_color="#1C1C1C1C1C1C"
gconftool-2 -s -t string /apps/guake/style/font/palette $palette
gconftool-2 -s -t string /apps/guake/style/font/bold $bd_color
gconftool-2 -s -t string /apps/guake/style/font/color $fg_color
@Palid
Palid / Installer
Last active January 2, 2016 21:49
Chocolatey package autoinstaller.Requires .net 4.0 and PowerShell 2.0 (included in windows 8)
#Installed stuff is listed in the second file. Feel free to create your own gist. Just remember to modify the DownloadString to the gist every time you make ANY changes.
#Script tutorial:
#Open CMD (command line).
#Copy and paste the script below into command line.
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin && @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://gist.github.com/Palid/8366337/raw/d14f8557492f5f5c8ec79faa6ef9622db7b9da11/Packages+list+'))"