- 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}"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
-
use admin db.createUser( { user: "admin",
pwd: "***",
- Throttle failed logins (password, token, email link, ...)
- Notify the old address on email change
- Check and Automate - https://gist.github.com/halilim/7888069
- Change admin path
- Implement these in SaltStack, Ansible, Chef etc where possible (also see https://dev-sec.io/).
- For Web app security/performance, see Web Apps Security and Performance.md
- Development packages, you'll most probably need them
- Ubuntu:
sudo apt-get install build-essential
- CentOS:
yum groupinstall 'Development Tools'
- Ubuntu:
- Git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 ç's and ü's</title> | |
<link>http://example.com/test</link> | |
<description>Item description</description> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zsh -x 2>&1 |