By: Bimochan Shrestha
- Accept Collaborator request? :+1:
Netbeans maa gayera project ko name DnaCryptography raakhne close it
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/grim/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
" ----------------------------------------------------------------------------- | |
let $RUBYHOME=$HOME."/.rbenv/versions/2.5.1" | |
set rubydll=$HOME/.rbenv/versions/2.5.1/lib/libruby.2.5.1.dylib | |
set nocompatible " Disable vi compatibility | |
filetype on " filetype must be 'on' before setting it 'off' | |
" otherwise it exits with a bad status and breaks | |
" git commit. | |
filetype off " force reloading *after* pathogen loaded |
[user] | |
name = Bimochan Shrestha | |
email = [email protected] | |
[core] | |
excludesfile = /Users/grim/.gitignore_global | |
pager = diff-so-fancy | less --tabs=4 -RFX | |
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process |
{ | |
"Profiles": [ | |
{ | |
"Badge Text" : "", | |
"Working Directory" : "\/Users\/grim", | |
"Prompt Before Closing 2" : 2, | |
"Selected Text Color" : { | |
"Red Component" : 0.95294117647058818, | |
"Color Space" : "sRGB", | |
"Blue Component" : 0.35294117647058826, |
It's a shame to see all those nepal's government and ecommerce sites getting hacked. I'd like to call out all Pentesters out there that can at least share out some docs, links that could make our government systems secure. The purpose of this document to have a single source to eliminate overwhelming results from google. Security is very wide domain just like development. You should dedicate some hours to prevent from basic vulnerabilities if you follow these steps. There are already lots of tools that are making life of developers easy.
About 90% neglects security headers. Here's a link to test your website and tell your developers to fix them ASAP. https://securityheaders.com
Everyone should be aware of OWASP top 10 https://owasp.org/www-project-top-ten/
pip install faker
vim ~/faker_for_testing.py
Hit i
Paste these
function getColumnIndices(total) { | |
let indices = []; | |
//7 because number of column is 7 | |
for (let index = 0; index < total; index += 7) { | |
indices.push(index); | |
} | |
return indices; | |
} | |
const allColumns = document.getElementsByClassName('rt-td'); | |
const indices = getColumnIndices(allColumns.length); |
#!/usr/bin/osascript | |
tell application "iTerm2" | |
tell current session of current tab of current window | |
split vertically with default profile | |
split vertically with default profile | |
write text "cd ~/projects/myFavProject" | |
write text "code ." | |
end tell | |
tell second session of current tab of current window | |
write text "cd ~/projects/myFavProject" |