CREATE USER 'fast'@'%'
IDENTIFIED WITH mysql_native_password AS '***';
GRANT USAGE ON *.* TO 'fast'@'%'
REQUIRE NONE
WITH MAX_QUERIES_PER_HOUR 0
MAX_CONNECTIONS_PER_HOUR 0
MAX_UPDATES_PER_HOUR 0
MAX_USER_CONNECTIONS 0;
CREATE DATABASE IF NOT EXISTS `fast`;
GRANT ALL PRIVILEGES ON `fast`.* TO 'fast'@'%';
GRANT ALL PRIVILEGES ON `fast\_%`.* TO 'fast'@'%';
a. Right click on an entry in the network log. Then select Copy All as HAR
b. In console:
```js
x = [<<PASTE HERE>>]; // paste here copied HAR
(function(logObj, mime) {
var results = [];
logObj[0].log.entries.forEach(function (entry) {
if (mime && entry.response.content.mimeType !== mime) return;
results.push(entry.request.url);
});
console.log(results.join('\n'));
})(x, 'image/png'); // can be changed type
```
c. Save links in file
d. `wget -i file`
<quote>
How to swap a column in Calc:
Select column B
Click anywhere in the highlighted area and drag the column. The mouse pointer should change to show the drag operation.
Before you release the mouse button, also press the Alt key. When the mouse pointer is at the left side of column A, release the mouse button.
Column B should be moved to the left of column A so that A and B are switched.
</quote>
**Hotkeys**
Ctrl + ] goto next bracket
Ctrl + Shift + ] select all for next bracket
Ctrl + Shift + M jump before or after closest bracket
ALT + Up | Down next function
ALT + Home breadcrumbs
**Live templates**
How to make dynamic class name:
<img src="http://sandra1n.com/screens/2017-09-08_17-16-37-HcmFHwbF.png">
<img src="http://sandra1n.com/screens/2017-09-08_17-19-41-b3AUZDue.png">
**Plugins**
https://github.com/bodiam/intellij-bootstrap3