start new:
tmux
start new with session name:
tmux new -s myname
| #This was done by some tool, don't know which one, and our custom built app captured theese URL's, after filtering | |
| #for unique URL's, here is list of URL's in original form, I will later try to create some protection | |
| /3B1728A10D221805D2CABE58B095D353.php | |
| /manager/html | |
| /wp-content/plugins/portable-phpmyadmin/wp-pma-mod/index.php | |
| /mysql/mysqlmanager/index.php | |
| /mysql/sqlmanager/index.php | |
| /mysql/dbadmin/index.php | |
| /mysql/admin/index.php | |
| /phpmy/index.php |
| // simplest possible express app | |
| var http = require('http'); | |
| var express = require('express'); | |
| var app = express(); | |
| // local database. When you restart the express server, the values will reset to original | |
| let db = [ | |
| { | |
| name: "Mike", |
| var React = require('react'); | |
| var cx = require('classnames'); | |
| var vjs = require('video.js'); | |
| var _forEach = require('lodash/collection/forEach'); | |
| var _debounce = require('lodash/function/debounce'); | |
| var _defaults = require('lodash/object/defaults'); | |
| var DEFAULT_HEIGHT = 800; | |
| var DEFAULT_WIDTH = 600; | |
| var DEFAULT_ASPECT_RATIO = (9 / 16); |
| # | |
| # Install the MYSQL driver | |
| # gem install mysql2 | |
| # | |
| # Ensure the MySQL gem is defined in your Gemfile | |
| # gem 'mysql2' | |
| # | |
| # And be sure to use new-style password hashing: | |
| # http://dev.mysql.com/doc/refman/5.0/en/old-client.html | |
| development: |
SSH into Root
$ ssh [email protected]
Change Root Password
On a recent project, I ran into an issue with Python Selenium webdriver. There's no easy way to open a new tab, grab whatever you need and return to original window opener.
Here's a couple people who ran into the same complication:
So, after many minutes (read about an hour) of searching, I decided to do find a quick solution to this problem.
o.......Open files, directories and bookmarks....................|NERDTree-o|
go......Open selected file, but leave cursor in the NERDTree.....|NERDTree-go|
t.......Open selected node/bookmark in a new tab.................|NERDTree-t|
T.......Same as 't' but keep the focus on the current tab........|NERDTree-T|
i.......Open selected file in a split window.....................|NERDTree-i|
gi......Same as i, but leave the cursor on the NERDTree..........|NERDTree-gi|
s.......Open selected file in a new vsplit.......................|NERDTree-s|
gs......Same as s, but leave the cursor on the NERDTree..........|NERDTree-gs|
O.......Recursively open the selected directory..................|NERDTree-O|