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
javascript:(function(){location.href=location.href.substring(location.href.indexOf(location.pathname)).concat('/schedule')})() |
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
@echo off | |
SET _we="%POWERSHELL_DISTRIBUTION_CHANNEL%" | |
FOR /F "tokens=* delims=MSI:" %%G IN (%_we%) DO SET _newvar=%%G | |
echo. %_newvar% | |
pause |
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
@echo off | |
SET _we="%POWERSHELL_DISTRIBUTION_CHANNEL%" | |
FOR /F "tokens=* delims=MSI:" %%G IN (%_we%) DO echo %%G | |
pause |
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
/* | |
vbscript-format by vsmalone -- Visual Studio Code Extension | |
https://marketplace.visualstudio.com/items?itemName=vsmalone.vbscript-format | |
%USERPROFILE%\.vscode\extensions\vsmalone.vbscript-format-0.0.2\extension.js | |
Line 13 | |
*/ | |
// vscode.window.showInformationMessage('完成'); | |
vscode.window.showInformationMessage('Finish'), |
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
@echo off | |
REM Show the time (hours, minutes, seconds) with variable | |
REM https://groups.google.com/g/microsoft.public.win2000.cmdprompt.admin/c/CHS0gwjZQDA/m/L85IIcFcLgkJ | |
REM <nul (set/p z=sec min hours: %time:~6,2% %time:~3,2% %time:~0,2%) | |
title %~nx0 | |
cls | |
cd %~dp0 | |
echo. | |
echo Show the time with variable | |
echo. |
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
@echo off | |
REM Create a InternetShortcut (.url) | |
SET _name="Example.com" | |
SET "_website=https://example.com/hello world" | |
echo [InternetShortcut] > "%_name%.url" | |
echo URL=%_website% >> "%_name%.url" | |
REM Example.com.url |
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
@echo off | |
REM Create a InternetShortcut (.url) | |
echo [InternetShortcut] > "Example.com.url" | |
echo URL="https://example.com/hello world" >> "Example.com.url" | |
REM Example.com.url |
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
@echo off | |
REM Create a InternetShortcut (.url) | |
echo [InternetShortcut] > "Example.com.url" | |
echo URL=https://example.com >> "Example.com.url" | |
REM Example.com.url |
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
@echo off | |
REM Create a InternetShortcut (.url) | |
SET _name="Example.com" | |
SET _website="https://example.com" | |
echo [InternetShortcut] > "%_name%.url" | |
echo URL=%_website% >> "%_name%.url" | |
REM Example.com.url |
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
var images=$$("img");for(each in images){var mdiv=document.createElement("P");document.body.appendChild(mdiv);mdiv.innerHTML=images[each].src}; |
NewerOlder