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
| def getBtnPressed(): | |
| """Detects which button or key is pressed and returns a text string representing what was pressed | |
| Returns: | |
| str: A text string representing what was pressed | |
| """ | |
| if ( | |
| pyxel.btnp(pyxel.GAMEPAD1_BUTTON_DPAD_UP) or | |
| pyxel.btnp(pyxel.KEY_UP) | |
| ): |
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
| # This file is very lightly modified from son-link's original version | |
| # I have made a few changes to make it work with the jenkins build | |
| version: 1 | |
| script: | | |
| rm -rf AppDir | |
| mkdir AppDir | |
| mkdir -p AppDir/usr/share/applications | |
| cp net.speed_dreams.desktop AppDir/usr/share/applications/net.speed_dreams.desktop | |
| cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DSD_BINDIR=/usr/bin -DSD_DATADIR=/usr/share/speed-dreams-2 -DSD_LOCALDIR:STRING=~/.speed-dreams-2 -DSD_LIBDIR=/usr/lib/speed-dreams-2 -DOPTION_OFFICIAL_ONLY=ON -D OPTION_TRACKEDITOR=OFF .. |
This is a SCRIPT-8 cassette.
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
| #!/bin/bash | |
| # Bash script to convert a one image with audio to video | |
| # This script required kdialog (in a future i add support for Zenity and command line options) | |
| # 2018 Alfonso Saavedra "Son Link" | |
| # Script under the GPLv3 or newer license | |
| function getPercent() { | |
| # Get video duration in seconds | |
| duration=$(ffmpeg -i "$AUDIO" 2>&1 | sed -n "s/.* Duration: \([^,]*\), start: .*/\1/p") | |
| fps=1 |
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
| main.c | |
| arm-none-eabi-gcc -MMD -MP -MF /home/sonlink/compilar/3ds/LovePotion/build/main.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/sonlink/compilar/3ds/LovePotion/include -I/opt/devkitpro/libctru//include -I/opt/devkitpro/portlibs/armv6k/include -I/opt/devkitpro/portlibs/3ds/include -I/home/sonlink/compilar/3ds/LovePotion/source/libs/libsf2d/include -I/home/sonlink/compilar/3ds/LovePotion/source/libs/libsfil/include -I/home/sonlink/compilar/3ds/LovePotion/source/libs/libsftd/include -I/home/sonlink/compilar/3ds/LovePotion/build -DARM11 -D_3DS -c /home/sonlink/compilar/3ds/LovePotion/source/main.c -o main.o | |
| shader.vsh | |
| Vera.ttf | |
| util.c | |
| arm-none-eabi-gcc -MMD -MP -MF /home/sonlink/compilar/3ds/LovePotion/build/util.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/sonlink/compilar/3ds/LovePotion/include -I/opt/devkitpro/libctru//include -I/opt/devkitpro/portlibs/armv6k |
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
| { | |
| "version": 20150727, | |
| "channels":[ | |
| {"id": "killall-radio_fg_f1129480", "name": "Killall Radio"}, | |
| {"id": "yoyeando_fg_f1181677", "name": "Yoyeando"}, | |
| {"id": "podcast-el-contra_fg_f1188854", "name": "El Contra"}, | |
| {"id": "podcast-neositelinux-podcast_fg_f1169111", "name": "NeoSiteLinux"}, | |
| {"id": "podcast-salmorejo-geek_fg_f1206500l", "name": "Salmorejo Geek"}, | |
| {"id": "podcast-devuanita_fg_f1231954", "name": "Devuanita"} | |
| ] |
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
| *** cdtray.py 2013-03-04 20:56:23.469254814 +0100 | |
| --- cdtray_patch.py 2013-03-04 20:56:13.069311883 +0100 | |
| *************** | |
| *** 11,17 **** | |
| import gst | |
| import ConfigParser | |
| ! from os import environ, getcwd, walk | |
| from os.path import isfile, join | |
| from commands import getoutput |
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
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| # CalicoBot: a IRC bot | |
| # (c) 2012 Alfonso Saavedra "Son Link" | |
| # Under GPLv3 license | |
| import socket | |
| import string |
NewerOlder