Reset File and Directory Permissions
find ./ -type d -exec chmod 744 {} + && find ./ -type f -exec chmod 644 {} +
Reset File and Directory Permissions
find ./ -type d -exec chmod 744 {} + && find ./ -type f -exec chmod 644 {} +
@function str-replace($string, $search, $replace: "") { | |
$index: str-index($string, $search); | |
@if $index { | |
@return str-slice($string, 1, $index - 1) + $replace + | |
str-replace( | |
str-slice($string, $index + str-length($search)), | |
$search, | |
$replace | |
); |
let func = () => { | |
let tour = document.querySelector('li[data-tour-id] [data-test-id="t_actions_delete"]'); | |
if (tour) { | |
tour.click(); | |
window.setTimeout(() => { | |
document.querySelector('button[data-test-id=t_actions_delete_confirm]').click(); | |
window.setTimeout(() => { | |
func(); | |
}, 300); | |
}, 300); |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Angular Debug", | |
"type": "firefox", | |
"request": "launch", |
The command line, in short…
wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://website.com/
…and the options explained