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
> | |
<script> | |
let wasm; | |
function make_environment(...envs) { | |
return new Proxy(envs, { | |
get(target, prop, receiver) { | |
for (let env of envs) { | |
if (env.hasOwnProperty(prop)) { | |
return env[prop]; |
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 pyautogui | |
import time | |
while True: | |
pyautogui.click() | |
time.sleep(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
import asyncio | |
import logging | |
import os | |
from pathlib import Path | |
class LocationShareServer: | |
def __init__(self, host: str, port: int): | |
""" | |
Initializes a new instance of the LocationShareServer class. |
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
using namespace System.Management.Automation | |
using namespace System.Management.Automation.Language | |
if ($host.Name -eq 'ConsoleHost') | |
{ | |
Import-Module PSReadLine | |
} | |
Import-Module -Name Terminal-Icons | |
New-Alias sudo gsudo |
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
from kivymd.app import MDApp | |
from kivy.lang import Builder | |
from kivy.uix.recycleview import RecycleView | |
from kivy.properties import StringProperty | |
from kivy.uix.boxlayout import BoxLayout | |
from kivymd.theming import ThemableBehavior | |
from kivymd.uix.behaviors import RectangularRippleBehavior | |
from kivy.uix.behaviors import ButtonBehavior | |
from kivy.uix.floatlayout import FloatLayout |
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 kivymd.app import MDApp | |
from kivy.lang import Builder | |
from kivy.uix.recycleview import RecycleView | |
from kivy.properties import StringProperty | |
from kivy.uix.boxlayout import BoxLayout | |
from kivymd.theming import ThemableBehavior | |
from kivymd.uix.behaviors import RectangularRippleBehavior | |
from kivy.uix.behaviors import ButtonBehavior | |
from kivy.uix.floatlayout import FloatLayout |
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 kivy.properties import ObjectProperty, NumericProperty, BooleanProperty | |
from kivy.uix.floatlayout import FloatLayout | |
from kivy.uix.progressbar import ProgressBar | |
from threading import Thread | |
from time import sleep | |
class LoadingWidget(FloatLayout): | |
task = ObjectProperty() # -> task an object of the task to be performed on thread | |
task_thread = ObjectProperty(None) # -> Internal Helper object | |
anim = BooleanProperty(False) # -> Internal Helper Property |
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
Show hidden characters
{ | |
"target":"special_build", | |
// "shell_cmd":"gcc \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\"", | |
// selector: "source.c" | |
"selector": "source.python", | |
} |