Skip to content

Instantly share code, notes, and snippets.

View halilim's full-sized avatar

Halil Özgür halilim

View GitHub Profile
@halilim
halilim / Capistrano Deployment Notes.md
Last active August 29, 2015 14:22
Capistrano Deployment Notes

Environment

  • Example ~/.bash_profile:
    [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
    
    export RBENV_ROOT="${HOME}/.rbenv"
    
    if [ -d "${RBENV_ROOT}" ]; then
      export PATH="${RBENV_ROOT}/bin:${RBENV_ROOT}/plugins/ruby-build/bin:${PATH}"
@halilim
halilim / IntelPowerGadgetMac3.0.1_licence
Created March 16, 2015 23:00
Intel Power Gadget Mac 3.0.1 licence
IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.
Do not copy, install, or use the "Materials" provided under this license agreement ("Agreement"), until you have carefully read the following terms and conditions.
By copying, installing, or otherwise using the Materials, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not copy, install, or use the Materials.
End User License Agreement for the Intel(R) Power Gadget
1. LICENSE DEFINITIONS:
A. "Materials" are defined as the software in source and object code formats, documentation, license key codes and other materials, including any updates and upgrade thereto, that are provided to you under this Agreement.
@halilim
halilim / Set Up MongoDB (2.6 and 3) Authentication.md
Last active August 29, 2015 14:13
Set Up MongoDB (2.6 and 3) Authentication

Set Up MongoDB (2.6 and 3) Authentication

  1. Create admin user

    use admin
    db.createUser(
        {
            user: "admin",

pwd: "***",

@halilim
halilim / Web Apps Security and Performance.md
Last active August 8, 2016 22:01
Web Apps Security / Performance
@halilim
halilim / Server Security and Performance - Base OS.md
Last active July 20, 2018 20:04
Server Security / Performance - Base OS
Notes
Preliminary packages
  • Development packages, you'll most probably need them
    • Ubuntu: sudo apt-get install build-essential
    • CentOS: yum groupinstall 'Development Tools'
  • Git
@halilim
halilim / homebrew_postgres_recreate.sh
Created November 16, 2014 12:48
PostgreSQL recreate sequence craze - Homebrew Postgres, Y U NO collate tr_TR ?!
gem install lunchy
pg_dumpall > pg_all.sql
# Kill anything that access PostgreSQL before this, e.g. local rails server, pgAdmin etc
sudo lunchy stop homebrew.mxcl.postgresql
mv /usr/local/var/postgres{,.bak}
LC_CTYPE="tr_TR.UTF-8" initdb -E UTF-8 --locale=tr_TR --lc-collate=tr_TR --lc-ctype=tr_TR -D /usr/local/var/postgres/
sudo lunchy start homebrew.mxcl.postgresql
psql -f pg_all.sql -d postgres
# Make sure pg_all.sql is safe and can be restored before this
rm -rf /usr/local/var/postgres.bak
@halilim
halilim / jquery.easyHide.js
Last active August 29, 2015 14:08
jQuery easyHide plugin - a simple plugin to hide stuff by clicking anywhere on the document (other than the element) or by hitting ESC.
;(function ($) {
$.fn.easyHide = function (opts) {
opts = opts || {};
opts["hideFn"] = opts["hideFn"] || function () {
this.hide();
};
return this.each(function () {
var $this = $(this);
if (opts["onDocClick"] !== false) {
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Test</title>
<link>http://example.com</link>
<description>Just a RSS test</description>
<item>
<title>A title with some &ccedil;&apos;s and &uuml;&apos;s</title>
<link>http://example.com/test</link>
<description>Item description</description>
@halilim
halilim / jsist-easter.js
Created August 27, 2014 08:00
jsist easter
var container = document.getElementById('answer');
for(var i = 1; i <= 5; i++) {
(function(i) {
var a = document.createElement("a");
a.innerHTML = "link" + i + " ";
var onClick = function () {
alert(i);
};
@halilim
halilim / zsh-debug-startup.sh
Created August 21, 2014 14:13
List zsh startup scripts line by line verbosely
zsh -x 2>&1