This file contains hidden or 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
| "".join(c.upper() if i % 2 != 0 else c.lower() for i, c in enumerate(input("This word doesn't work like this: "))) |
This file contains hidden or 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
| { | |
| "$defs": { | |
| "BaselineElement": { | |
| "additionalProperties": false, | |
| "properties": { | |
| "type": { | |
| "const": "baseline", | |
| "title": "Type" | |
| }, | |
| "dimension": { |
This file contains hidden or 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
| { | |
| "$defs": { | |
| "BaselineElement": { | |
| "additionalProperties": false, | |
| "properties": { | |
| "type": { | |
| "const": "baseline", | |
| "title": "Type" | |
| }, | |
| "dimension": { |
This file contains hidden or 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
| sudo apt update && sudo apt install clamav clamav-daemon -y | |
| cd Download | |
| wget https://github.com/dave-theunsub/clamtk/releases/download/v6.13/clamtk_6.13-1_all.deb | |
| sudo dpkg -i clamtk_6.13-1_all.deb | |
| sudo apt --fix-broken install |
This file contains hidden or 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 BATCH FILE CREATED BY CHARLES DE HAVILLAND 20/02/2012 | |
| :: BatchGotAdmin (Run as Admin code starts) | |
| REM --> Check for permissions | |
| >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" | |
| REM --> If error flag set, we do not have admin. | |
| if '%errorlevel%' NEQ '0' ( | |
| echo Requesting administrative privileges... | |
| goto UACPrompt | |
| ) else ( goto gotAdmin ) |
This file contains hidden or 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
| from __future__ import division, print_function | |
| for vers in [27,35,36,37,38]: | |
| print("conda create -p C:\python{} python={} -y".format(vers, vers/10)) |