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
-- Basic Settings | |
-- cl_fov = 90 | |
-- pl_movement.power_sprint_targetFov = 90 | |
-- r_DrawNearFoV = 90 | |
Con_Restricted = 0 | |
r_Fullscreen = 0 | |
r_FullscreenPreemption = 1 | |
r_FullscreenWindow = 1 | |
-- Anti-Aliasing |
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
<ActionMaps version="1"> | |
<CustomisationUIHeader label="decopled" description="" image=""> | |
<devices> | |
<keyboard instance="1"/> | |
</devices> | |
</CustomisationUIHeader> | |
<options type="keyboard" instance="1"/> | |
<actionmap name="spaceship_movement"> | |
<action name="v_decoupled_strafe_up"> | |
<rebind defaultInput="r" device="keyboard" input="w"/> |
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/share/arduino/hardware/tools/avr/bin/avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega328p -DF_CPU=16000000L -MMD -DUSB_VID=null -DUSB_PID=null -DARDUINO=105 -I/usr/share/arduino/hardware/arduino/cores/arduino -I/usr/share/arduino/hardware/arduino/variants/standard -I/home/james/sketchbook/libraries/Blink /tmp/build4026121571324884541.tmp/sketch_sep05a.cpp -o /tmp/build4026121571324884541.tmp/sketch_sep05a.cpp.o | |
/usr/share/arduino/hardware/tools/avr/bin/avr-g++ -c -g -Os -Wall -fno-exceptions -ffunction-sections -fdata-sections -mmcu=atmega328p -DF_CPU=16000000L -MMD -DUSB_VID=null -DUSB_PID=null -DARDUINO=105 -I/usr/share/arduino/hardware/arduino/cores/arduino -I/usr/share/arduino/hardware/arduino/variants/standard -I/home/james/sketchbook/libraries/Blink -I/home/james/sketchbook/libraries/Blink/utility /home/james/sketchbook/libraries/Blink/Blink.cpp -o /tmp/build4026121571324884541.tmp/Blink/Blink.cpp.o | |
/usr/share/arduino/hardware/tools/avr/bin/avr-gcc -c -g -O |
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 unittest | |
from a1 import * | |
class TestA1Functions(unittest.TestCase): | |
def test_seconds_difference(self): | |
self.assertEqual(seconds_difference(1800.0, 3600.0), 1800.0) | |
self.assertEqual(seconds_difference(3600.0, 1800.0), -1800.0) | |
self.assertEqual(seconds_difference(1800.0, 2160.0), 360.0) | |
self.assertEqual(seconds_difference(1800.0, 1800.0), 0.0) |
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
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2341", ATTRS{idProduct}=="0043", GROUP="users", MODE="0666" | |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2341", ATTRS{idProduct}=="0001", GROUP="users", MODE="0666" | |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", GROUP="users", MODE="0666" | |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="ee18", GROUP="users", MODE="0666" |
NewerOlder