apt-get install locales
locale-gen it_IT.UTF-8
echo "export LC_CTYPE=C.UTF-8" >> ~/.bashrc
This file contains hidden or 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
/*! | |
* jQuery JavaScript Library v1.9.1 | |
* http://jquery.com/ | |
* | |
* Includes Sizzle.js | |
* http://sizzlejs.com/ | |
* | |
* Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors | |
* Released under the MIT license | |
* http://jquery.org/license |
This file contains hidden or 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
#!/bin/bash | |
SOLV=0.8.17 | |
folder_t=test_open | |
if [ "$1" == "make" ]; then | |
if [ -d $folder_t ] ; then | |
echo "Folder '$folder_t' already present ...quit" | |
exit -1 |
-
Preassessment: Planning, scoping, collecting info and doc
-
Application review: Design review, code review. Several strategies adopted to learn more about the application
-
Documentation and analysis: Collecting and documenting the results of the review, risk analysis, remediations
-
Remediation support: Evaluating fixes, recheck phase
This file contains hidden or 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
# place it on `~/.tmux.conf` then run `tmux source-file ~/.tmux.conf` | |
# Increase History Size | |
set-option -g history-limit 50000 | |
set -g default-command "reattach-to-user-namespace -l zsh" | |
## Join Windows (Moving tmux pane to window) | |
## ref, https://unix.stackexchange.com/questions/14300/moving-tmux-pane-to-window | |
#bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'" | |
#bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'" |
unbind C-b
set-option -g prefix C-k