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
#!/bin/bash | |
me=`basename "$0"` | |
if [[ -z $1 || $1 == "-h" || $1 == "--help" ]]; then | |
echo "Usage: $me <op[ install | i | update | u | force_update | fu | uninstall | un | list | l ]?> <source_platform[ github | gitlab ]> <source_name[ <author,groups>/<repo_name> ]> <protocol[ https | ssh ]?>" | |
else | |
op="$1" | |
force=0 | |
if [[ $op == "force_update" || $op == "fu" ]]; then | |
op="u" |
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 lg, lt = love.graphics, love.timer | |
local pi, cos, sin = math.pi, math.cos, math.sin | |
local centerX, centerY = 400, 300 | |
local wave = 0 | |
-- rotate x,y around xRef,yRef by r | |
function rotateAround(x, y, xRef, yRef, r) | |
local c, s = cos(r), sin(r) | |
return c * (x - xRef) - s * (y - yRef) + xRef, s * (x - xRef) + c * (y - yRef) + yRef | |
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
local x, y = 400, 300 | |
local lineLength = 150 | |
local rotationChange = -0.003 | |
function rotateAround(x1, y1, x2, y2, r) | |
local c, s = math.cos(r), math.sin(r) | |
return c * (x1 - x2) - s * (y1 - y2) + x2, s * (x1 - x2) + c * (y1 - y2) + y2 -- rotate x1,y1 around x2,y2 by r | |
end | |
local c, curR, addR |
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
@ECHO OFF | |
ECHO Press any key to PARTY ... | |
PAUSE>NUL | |
CLS | |
SET COLORS=1 2 3 4 5 6 7 8 9 A B C D E F | |
FOR /L %%N IN () DO ( | |
FOR %%A IN (%COLORS%) DO ( | |
COLOR %%A0 | |
) | |
) |
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
--MIT License | |
--Copyright (c) 2018 Arvid Gerstmann, Jake Besworth, Max, Pablo Mayobre, LÖVE Developers | |
--Original author: https://github.com/Leandros | |
--Max frame skip: https://github.com/jakebesworth | |
--Manual garbage collection: https://github.com/Geti | |
--Put it all together: https://github.com/Positive07 | |
--Ported to 10.0.2: https://github.com/MartyMaro/ | |
--Original love.run: LÖVE Developers |
NewerOlder