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
person | |
bicycle | |
car | |
motorbike | |
aeroplane | |
bus | |
train | |
truck | |
boat | |
traffic light |
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
# pip install VicksTor --upgrade | |
# >>> python | |
# from HostTor import VicksTor | |
# import VicksTor | |
# VicksTor.run_server('flask') | |
from flask import ( | |
Flask, request, |
████▓
▓█▓▓▓▓▓██▒
▒██▒▒▒▒▒▒▒▓█▓
▓█▓▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▓███▓▒▒▒▒▓█▒
▒█▓▒▓▓▓██▓░▓█▓▓▓▓▓▓█▓
▓█▓▓▓▓▓██▓ ▒██▓▓▓▓▓██▒
▒██▓▓▓▓███ ███▓▓▓▓██▓
▓██▓█████▒ ▒█████████
▒█████████ ▒▓▓▓▓▓▓▓▓▒▓█████████▒
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
:beep frequency=264 length=250ms; | |
:delay 500ms; | |
:beep frequency=264 length=250ms; | |
:delay 250ms; | |
:beep frequency=297 length=1000ms; | |
:delay 250ms; | |
:beep frequency=264 length=1000ms; | |
:delay 250ms; | |
:beep frequency=352 length=1000ms; | |
:delay 250ms; |
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
import random | |
from tkinter import * | |
chosen_number_list=[] | |
numbers=[] | |
for i in range(1,101): | |
numbers.append(i) | |
def random_number_selection(): | |
global c | |
c=[] |
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
# Create or load a presentation | |
with slides.Presentation() as presentation: | |
# Create new VBA project | |
presentation.vba_project = slides.vba.VbaProject() | |
# Add empty module to the VBA project | |
module = presentation.vba_project.modules.add_empty_module("Module") | |
# Set module source code | |
module.source_code = "Sub Test(oShape As Shape) MsgBox ""Test"" End Sub" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
function onOpen() | |
{ | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu('GetValues') | |
.addItem('get current', 'getCurrentCellValue') | |
.addItem('get by row col', 'getByRowAndColumn') | |
.addItem('get by address a1', 'getByCellAddressA1Notation') | |
.addToUi(); |
NewerOlder