Skip to content

Instantly share code, notes, and snippets.

Around 80 applicants, this playlist found 54 Conceptual Design Review videos (one is hosted on vimeo but there is a video link to it):
https://www.youtube.com/playlist?list=PLfRlBDdqxV8II-dl_kMsYeMaW4dhA2Amo
[![uWaterloo](https://img.youtube.com/vi/xi5wFZ1SiKU/0.jpg)](https://www.youtube.com/watch?v=xi5wFZ1SiKU)
#ROSpiration
@lucasw
lucasw / rqt_presentation_mode.md
Last active March 25, 2017 16:14
RQT presentation mode

jade

Install a set of branches to different plugins that clean up the rqt window to optionally get rid of unnecessary ui elements and topics:

Disable image transport plugins that aren't going to be used:

  cd ~/catkin_ws/src
 git clone https://github.com/lucasw/image_common
@lucasw
lucasw / linux_nes.md
Last active October 30, 2021 15:07
Linux Nintendo NES development

Ubuntu 16.04

install cc65

mkdir ~/other
cd ~/other
git clone https://github.com/cc65/cc65
cd cc65
make
@lucasw
lucasw / dear_imgui.md
Last active December 16, 2019 15:13
Dear Imgui
@lucasw
lucasw / linux_commodore_64.md
Last active October 28, 2020 00:23
Linux Commodore 64

Use cc65 just like for NES https://gist.github.com/lucasw/53ece8eed3b99beb6215b42cc686d1a7

Emulator

vice emulator- not in ubuntu repo, need to build from source- on sourceforge:

Need some old autoconf tools (and xa65 cross assembler) to build it:

sudo apt-get install autoconf byacc flex libreadline-dev libxaw7-dev texinfo xa65
@lucasw
lucasw / atari2600_ca65.md
Last active May 2, 2017 13:27
atari 2600 with ca65
@lucasw
lucasw / bare_metal_x86.md
Created May 1, 2017 17:07
Bare metal x86 programming

How to develop software that could be put onto a thumb drive and most modern x86 systems (or old ones if 64-bit isn't required) could boot and run it?

What kind of emulator or VM is required? Want to be able to iterate as quickly as possible in standard linux dev environment then occasionally reboot to test it for real.

gcc is likely fine for the application, similar to the

Probably very similar to any bootloader application.

@lucasw
lucasw / amiga_programming.md
Last active August 22, 2018 13:37
Amiga Programming