View ljscaner.side
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
{ | |
"id": "7908efff-abd8-45b6-9a03-536bd06294e9", | |
"version": "2.0", | |
"name": "ljscaner", | |
"url": "https://YOUR.livejournal.com", | |
"tests": [{ | |
"id": "33fd5216-ee07-456a-a9b6-1dd23a464bbd", | |
"name": "scan lj", | |
"commands": [{ | |
"id": "d1f835b7-ab7f-4b22-a4bb-ac32b2f655e3", |
View html5dialog.d.ts
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
interface HTMLDialogElement extends HTMLElement { | |
open: boolean, | |
returnValue: string, | |
close: ()=>any, | |
show: ()=>any, | |
showModal: ()=>any | |
} | |
declare var HTMLDialogElement: { | |
prototype: HTMLDialogElement; |
View slice_git.bat
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
git diff --name-only yrc0m1 yrc0m2|sed s:/:\\:g > report.txt && for /F %F in ('cat report.txt') do xcopy %F c:\m1m2diff\%F && del report.txt | |
#*xcopy will ask you to confirm wither the path is file or directory for each of your changed files. As far as diff returns only files changed, you can just do long F button press :-) Unfortunately I did not succeed to find a flag to suppress this warning with F option. | |
#It consists of following subcommands: | |
#1. git diff --name-only yrc0m1 yrc0m2 - returns list of changed files between commits yrc0m1 and yrc0m2; | |
#2. sed s:/:\\:g - piped with | after previous one, converting Linux slashes to windows slashes; | |
#3. > report.txt - oputput of previous two commands: all relative filepaths are saved in report.txt; | |
#4. for /F %F in ('cat report.txt') do xcopy %F c:\m1m2diff\%F - iterates through lines in report.txt and copying file creating all not-existing directories from it's relative path (we suppose that c:\m1m2diff\ directory already exists) | |
#5. del report.txt - simply de |
View rsync_ssh.sh
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
rsync -avr -e "ssh" --exclude 'node_modules*' ./* host:/path |