Skip to content

Instantly share code, notes, and snippets.

View dsonbill's full-sized avatar

William C. Donaldson dsonbill

View GitHub Profile
# OWO TWANSLATOW v 0.1
def translate(phrase):
translation = ' '
for letter in phrase:
if letter in 'RrLl':
translation += 'w'
else:
translation += letter
return translation
PROP
{
name = SUP_ASET_ClockTimer
MODEL
{
model = ASET/ASET_Props/Instruments/ASET_ClockTimer/ASET_ClockTimer
texture = ClockTimerDiffuse,ASET/ASET_Props/Instruments/ASET_ClockTimer/ClockTimerDiffuse
}
PROP
{
name = SmartSeat
MODEL
{
model = ASET/ASET_Props/Misc/SeatV2/SeatV2
texture = SeatV2_Diffuse,ASET/ASET_Props/Misc/SeatV2/SeatV2_Diffuse
}
@dsonbill
dsonbill / GoogolGame.cs
Created April 2, 2019 09:18
Googol Game as described by Vsauce2 at https://www.youtube.com/watch?v=OeJobV4jJG0
using System;
using System.Collections.Generic;
namespace GoogolGame
{
class Program
{
const decimal e = 2.71828M;
static void Main(string[] args)
{