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/sh | |
# Copyright (c) 2012 by Dean Brettle | |
# Licensed under the GPLv3. | |
# To use: | |
# chmod +x 3ds-to-dlna-vob.sh | |
# 3ds-to-dlna-vob.sh yourfile.avi | |
# The horizontal offset between the left and right videos of an object that | |
# should appear on the surface of the screen when viewed in 3D. | |
delta=70 |
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
diff --git a/GDScript.md b/GDScript.md | |
index eed5107..07a6d77 100644 | |
--- a/GDScript.md | |
+++ b/GDScript.md | |
@@ -1,6 +1,6 @@ | |
# Introduction | |
-GDScript is a high level, dynamically typed programming language used to create content. It uses a syntax that is very similar to the Python language (blocks are indent-based) and its goal is to be very optimal and tightly integrated with the engine, allowing great flexibility for content creation and integration. | |
+GDScript is a high level, dynamically typed programming language used to create content. It uses a syntax that is very similar to the Python language (blocks are indent-based) and its goal is to be very efficient and tightly integrated with the engine, allowing great flexibility in content creation and integration. | |
A system for controlling what can be done within a desktop session, to be used as a parental control system for example.
- Not just internet filtering (e.g. DansGuardian) but also control over which local applications can be run
- Require root access to disable or reconfigure. (Not yet achieved)
- As simple as possible to set up and maintain
These are my notes (as best I can remember) on getting FIRST Robotics Competition FRCSim simulator working on Fedora 22/23 in hopes of being able to build robot code and run it on the simulator.
Gazebo plugins and gazebo_msgs build. Can run a simulation but joystick controls are messed up.
- Download the Ubuntu 14.04 Live Desktop (64-bit) iso.
- Enable virtualization in the BIOS.
sudo dnf install qemu-kvm
- Install the UEFI bios images.
- As root, boot the ISO in a virtual machine:
isopath=/path/to/ubuntu-14.04.3-desktop-amd64.iso
stickdev=/dev/sdX # Make sure this is set to the device for your usb stick
qemu-kvm -drive file=$stickdev,format=raw -m 2048 -pflash /usr/share/edk2.git/ovmf-x64/OVMF-pure-efi.fd -cdrom $isopath
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 codenvy/node | |
EXPOSE 9001 |