Skip to content

Instantly share code, notes, and snippets.

View liladas's full-sized avatar
💭
falalalala

Adam Buga liladas

💭
falalalala
  • Lilrobo, Karaokio
  • Solana Beach, CA
View GitHub Profile
@liladas
liladas / space_mir.html
Created May 30, 2017 19:05
Space Station Mir -- Mission Control
#
<center>![Land O'Pines School, Mir Space Station Mission Control](mcontrol.jpg)</center>
<embed src="aboard.wav" autostart="true" hidden="true" loop="false" width="100" height="100" align="BOTTOM">
<center>[![SAREX](sarex.gif)](http://www.gsfc.nasa.gov/sarex)</center>
<center>**The <u>S</u>pace <u>A</u>mateur <u>R</u>adio <u>EX</u>periment is sponsored by**</center>
@liladas
liladas / space.html
Created May 30, 2017 19:03
space.html
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="Adobe PageMill 3.0 Win">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<TITLE>Land O'Pines School, MIR Space Station, SAREX Page</TITLE>
<META NAME="Template" CONTENT="C:\Program Files\Microsoft Office\Office\html.dot">
<META NAME="keywords" CONTENT="howell, land, pines, school, SAREX, mir, mir space station, amsat, nasa, arrl, amateur, radio, amateur radio, school, howell, nj, andy thomas, astronaut, cosmonaut, space, shuttle">
</HEAD>
<BODY LINK="#800080" BACKGROUND="mirback.jpg">
@liladas
liladas / readfile.c
Last active October 3, 2016 02:28
read file example
#include <stdio.h>
#include <string.h>
int main(void) {
puts("Reading File");
FILE *fp; // file pointer to data file
fp = fopen ("data.txt", "r");
FILE *stream;
@liladas
liladas / .bash_profile
Last active February 27, 2020 04:01
Programmatically switch colorschemes of the terminal and gvim for brighter days. ☼
#.bash_profile
export GVIMCOLOR=slate
alias bright="osascript ~/scripts/brighten_up.scpt \"Man Page\" &>/dev/null; export GVIMCOLOR=morning"
alias dark="osascript ~/scripts/brighten_up.scpt \"Slate\" &>/dev/null; export GVIMCOLOR=slate"
alias light="osascript ~/scripts/brighten_up.scpt \"Basic\" &>/dev/null; export GVIMCOLOR=morning"
@liladas
liladas / FizzBuzzGenerator.py
Last active August 9, 2018 01:16
"Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."
# FizzBuzz in Python w/ Generators
# http://c2.com/cgi/wiki?FizzBuzzTest
# -- inspired by @dabeaz
def fizzbuzz(max_num=101):
for i in range(max_num):
value = ""
if i % 3 == 0: value += "Fizz"
if i % 5 == 0: value += "Buzz"
yield value if value else i