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
https://photos.app.goo.gl/bg8Vq9uvoAQNEjQd9 |
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
class lmao: | |
toggle = True | |
def __init__(self, value=None): | |
print(f'lmao.init = {value}') | |
self.value = value | |
def __call__(self, func): | |
print(f'lmao.decorate = {self.value}') |
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 time import time, sleep | |
from collections import defaultdict | |
class Stat: | |
"""""" | |
def __init__(self): | |
self._start_time = time() | |
self._end_time = None |
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
@tool | |
extends Node | |
# ****************************************************************************** | |
func check_extension(file, ext=null) -> bool: | |
if ext: | |
if ext is String: | |
if file.ends_with(ext): | |
return true |
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
{ | |
"id": 0, | |
"jsonrpc": "2.0", | |
"result": { | |
"capabilities": { | |
"codeActionProvider": false, | |
"colorProvider": false, | |
"completionProvider": { | |
"resolveProvider": true, | |
"triggerCharacters": [".", "$", "'", "\""] |
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
// update this section to reflect the pin numbers in the box | |
#define LED_GREEN_PIN 3 | |
#define LED_RED_PIN 2 | |
#define NUMBER_OF_PINS 4 | |
int cableA[NUMBER_OF_PINS] = {6, 7, 8, 9}; | |
int cableB[NUMBER_OF_PINS] = {15, 14, 16, 10}; |
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
# **************************************************************************** # | |
# General Make configuration | |
# This suppresses make's command echoing. This suppression produces a cleaner output. | |
# If you need to see the full commands being issued by make, comment this out. | |
MAKEFLAGS += -s | |
# **************************************************************************** # | |
APP_FOLDER = app |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
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
tool | |
extends Node | |
# ****************************************************************************** | |
func check_extension(file, ext=null) -> bool: | |
if ext: | |
if ext is String: | |
if file.ends_with(ext): | |
return true |
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
tool | |
extends TextEdit | |
# ****************************************************************************** | |
func _ready(): | |
connect('request_completion', self, 'request_completion') | |
func request_completion(): | |
print('request_completion') |
NewerOlder