This file contains 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
# Based on a video by Pefeper: https://youtu.be/1i5SB8Ct1y0 | |
# Shakable.gd | |
extends Area3D | |
@export var camera : Camera3D | |
@export var trauma_reduction_rate := 1.0 | |
@export var max_x := 10.0 | |
@export var max_y := 10.0 | |
@export var max_z := 5.0 |
This file contains 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("Parent").extends() | |
function Parent:foo() | |
print("parent-foo") | |
end | |
function Parent:bar() | |
print("parent-bar-1") | |
self:foo() | |
print("parent-bar-2") | |
end |
This file contains 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
gitea | 2024/06/25 15:30:49 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/v1/repos/org/repo for 192.168.144.2:0, 200 OK in 17.5ms @ repo/repo.go:523(repo.Get) | |
gitea | 2024/06/25 15:30:49 ...eb/routing/logger.go:102:func1() [I] router: completed GET /org/repo.git/info/refs?service=git-upload-pack for 192.168.144.2:0, 401 Unauthorized in 0.9ms @ repo/githttp.go:517(repo.GetInfoRefs) | |
gitea | 2024/06/25 15:30:49 ...eb/routing/logger.go:102:func1() [I] router: completed GET /org/repo.git/info/refs?service=git-upload-pack for 192.168.144.2:0, 200 OK in 17.4ms @ repo/githttp.go:517(repo.GetInfoRefs) | |
gitea | 2024/06/25 15:30:49 ...eb/routing/logger.go:102:func1() [I] router: completed POST /org/repo.git/git-upload-pack for 192.168.144.2:0, 200 OK in 20.8ms @ repo/githttp.go:477(repo.ServiceUploadPack) | |
gitea | 2024/06/25 15:30:49 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/v1/repos/org/repo/contents/renovate.json for 192.168.144.2:0, 200 OK in 62.6ms @ repo/file.go:891 |
This file contains 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
#!/usr/bin/env bash | |
_val=`curl -Isk $2 | grep HTTP | cut -d ' ' -f2` | |
echo "$(date) $_val" | |
_diff=0 | |
while : | |
do | |
_val2=`curl -Isk $2 | grep HTTP | cut -d ' ' -f2` | |
if [ "$_val" != "$_val2" ]; then |
This file contains 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
{ | |
"objects": { | |
"#000000": { | |
"image": "/assets/images/rock" | |
} | |
}, | |
"#ac3232": { | |
"player": {} | |
} | |
} |
This file contains 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
local pd <const> = playdate | |
local gfx <const> = Graphics | |
local box = playout.box.new | |
local text = playout.text.new | |
local window = { | |
padding = 8, | |
border = 2, | |
borderRadius = 1, |
This file contains 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
Paginate = {} | |
function Paginate.read(filename) | |
local lines = {} | |
local file = File.open(filename, File.kFileRead) | |
local line = file:readline() | |
while line do | |
table.insert(lines, line) | |
line = file:readline() | |
end |
This file contains 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
extends BeehaveNode | |
class_name BeehaveDebug, "../icons/tree.svg" | |
export(NodePath) var _beehave_tree | |
var beehave_tree : BeehaveRoot setget set_beehave_tree | |
export(Theme) var theme | |
export(Color) var tick_color := Color.whitesmoke | |
export(Color) var success_color := Color.forestgreen |
This file contains 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
extends "res://Tools/UsableObject.gd" | |
var using = false | |
onready var ray = $Raycast | |
onready var hook = $Hook | |
onready var rope = $Rope | |
onready var laser = $Laser | |
onready var indicator = $Indicator | |
onready var initial_transform = transform | |
var hook_body = null |
This file contains 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 click | |
import shlex | |
from click.testing import CliRunner | |
help_text = "" | |
@click.group(invoke_without_command=True) | |
@click.pass_context | |
def cli(context): |
NewerOlder