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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "freertos/FreeRTOS.h" | |
#include "freertos/task.h" | |
#include "driver/spi_master.h" | |
#include "driver/gpio.h" | |
#include "sdkconfig.h" | |
#include "esp_log.h" |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "freertos/FreeRTOS.h" | |
#include "freertos/task.h" | |
#include "driver/spi_master.h" | |
#include "driver/gpio.h" | |
#include "sdkconfig.h" | |
#include "esp_log.h" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs" version="2.0"> | |
<xsl:output method="xml" encoding="utf-8" indent="yes"/> | |
<xsl:template match="/"> | |
<Chemicals> | |
<xsl:apply-templates/> | |
</Chemicals> |
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 automatically compiled by Webpack, along with any other files | |
// present in this directory. You're encouraged to place your actual application logic in | |
// a relevant structure within app/javascript and only use these pack files to reference | |
// that code so it'll be compiled. | |
require("@rails/ujs").start() | |
require("turbolinks").start() | |
require("@rails/activestorage").start() | |
require("channels") |
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
'NATASHA'S (TASHOLOGY) MYSQL SAVING SYSTEM! | |
'CHANGE THIS TO YOUR SETTINGS | |
Dim conn As String = "Server=epsilon.davidr.me;Database=tashdb;Uid=tashdb;Pwd=nLEYmTSYEQZzN483;" | |
Dim connect As MySqlConnection | |
Try | |
'Create the connector | |
connect = New MySqlConnection(conn) | |
'Open the database |
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
#if __STDC_VERSION__ < 199001L | |
#error DEAR MARKER: This program must be compiled in C99 mode - see instructions in report (-std=c99) | |
#endif |
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
# David Robertson | |
# CS1P Lab Exam 2 | |
import string, operator | |
def get_books(filename='books.txt'): | |
books_file = open(filename, 'r') | |
books_file_lines = books_file.readlines() | |
books_file.close() |
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
;----------------------------------------------------------------------- | |
; Sigma16 Program BarChart | |
; | |
; CS1Q Systems Exercise 1 | |
; David Robertson 2133246R TU02/LB02 | |
; 18 February 2015 | |
;----------------------------------------------------------------------- | |
; Status Report |
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 Canvas | |
import string | |
import re | |
def pos_cmd(state, x, y): | |
state['pos'] = [int(x), int(y)] | |
def move_cmd(state, x, y): | |
pos = state['pos'] |
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 ruby | |
module LiveCell | |
def self.to_s | |
'o' | |
end | |
def self.next_generation(neighbours) | |
case neighbours.count(LiveCell) | |
when 2..3 then LiveCell |
NewerOlder