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
working with timeline | |
q - ripple delete to the beginning of the clip | |
w - ripple delete to the end | |
shift + delete - ripple delete | |
d - select clip | |
j - rewind backward | |
k - stop | |
l - fast forward | |
c - razor tool | |
v - select tool |
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
--ORACLE SQL DEVELOPER | |
--ctrl + enter - run selected statement | |
--F9 compile and run selected statement | |
--determining the current date format: | |
SELECT value | |
FROM nls_session_parameters | |
WHERE parameter = 'NLS_DATE_FORMAT' | |
--output: RR/MM/DD |
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
STACK | |
S - toggle stack | |
ctrl + G - stack | |
ctrl + shift + G - unstack | |
shift + S - move to the top of the stack | |
VIEW | |
Show Grid Extras - show keywords and metadata of the photo in grid | |
Show Badges |
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
# problem description and cve's: | |
https://www.gracefulsecurity.com/tls-ssl-vulnerabilities/ | |
# example attack: | |
# https://www.youtube.com/watch?v=3I_05zY6ZfM | |
# install nmap | |
# list cipher suites: | |
nmap -sV --script ssl-enum-ciphers -p 443 <host> | |
#rate based on this: https://github.com/ssllabs/research/wiki/SSL-Server-Rating-Guide |
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
#get sql cmd | |
Install-module -Name SqlServer -Scope CurrentUser -Repository <repository> | |
# Import the SQL Server Module. | |
Import-Module Sqlps -DisableNameChecking; | |
# To check whether the module is installed. | |
Get-Module -ListAvailable -Name Sqlps; | |
cd SQLSERVER:\SQL |
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
#visual studio in docker container: | |
https://blogs.msdn.microsoft.com/heaths/2017/09/18/installing-build-tools-for-visual-studio-2017-in-a-docker-container/ | |
#private registry | |
https://hub.docker.com/r/stefanscherer/registry-windows/ | |
#to build image run inside the project dir (where Dockerfile is): | |
docker build . -t <image_name> | |
#to build without cache and to specify custom dockerfile: | |
docker build --no-cache -t <image_name> -f <dockerfile> . |
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
https://github.com/robbyrussell/oh-my-zsh | |
process explorer | |
logexpert | |
wireshark | |
zabbix lub nagios | |
http://www8.hp.com/us/en/software-solutions/quality-center-quality-management/index.html?jumpid=va_7d3b9mpfks | |
mremoteNG | |
autoit | |
asn reader |
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
#Powershell module | |
Install-Module posh-git | |
#Ubuntu shell, oh my zsh | |
git config --global core.autocrlf true | |
git config --global core.filemode false | |
#Create Branch | |
git checkout -b [name_of_your_new_branch] |
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
# Android SDK setup | |
## Install Java | |
```bash | |
sudo apt-get update | |
sudo dpkg --add-architecture i386 | |
sudo apt-get install libbz2-1.0:i386 | |
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 | |
sudo apt-get install openjdk-8-jdk openjdk-8-jre |