A Month of Refreshing My CS Knowledge It’s been over a month since I started refreshing my CS knowledge project. Up until this point I have focused on my C and data structure programming skills. I created a repo of basic data-structures along with C unit tests – https://github.com/danaspisak/c-refresh. I’ve covered singly-linked lists, doubly-linked lists, […]
Read More →Backup and Restore SD Card – Raspberry Pi
Backup and Restore SD Card for Raspberry Pi I was in a bind and needed a microSD card to help unbrick an embedded development board. Without a free card available my next choice was to salvage a microSD card in use on a Raspberry Pi, backup the image, do what I needed, then restore the […]
Read More →Doubly Linked List C Refresher
C Refresh – Doubly Linked Lists I worked through converting my single linked list routines to doubly linked list routines. Some of functions didn’t make sense. There was a lot of duplication between the two implementations. I kept with the unit testing using Ceedling. I did have to do a lot more debugging when my […]
Read More →