Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
@echo off | |
pushd "%~dp0" | |
dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt | |
dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt | |
for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"C:\Windows\servicing\Packages\%%i" | |
pause |
# Create new from old | |
git tag new old | |
# Remove old tag | |
git tag -d old | |
# Sync changes from old tag to remote | |
git push origin :refs/tags/old |
from random import choice | |
marks = map(unichr, range(768, 879)) | |
string = 'clear the current exception in between your catch and the bare raise OH GOD NO EVENTLET IT COMES' | |
words = string.split() | |
print(' '.join(''.join(c + ''.join(choice(marks) | |
for _ in range(i // 2 + 1) | |
) * c.isalnum() | |
for c in word) | |
for i, word in enumerate(words))) |
When you build on the Visual Studio command line, you must build the program in two steps. | |
First, run cl /c /EHsc MyLib.cpp to compile the code and create an object file that's named MyLib.obj. | |
(The cl command invokes the compiler, Cl.exe, and the /c option specifies compile without linking. For more information, see /c (Compile Without Linking).) | |
Second, run lib MathFuncsLib.obj to link the code and create the static library MathFuncsLib.lib. | |
(The lib command invokes the Library Manager, Lib.exe. For more information, see LIB Reference.) |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |