Skip to content

Instantly share code, notes, and snippets.

View timothymalcham's full-sized avatar

Timothy Malcham timothymalcham

View GitHub Profile
#################################
# Copying SteamGuard Files #
#################################
Copying /opt/hostedtoolcache/steamcmd/latest/i386/config/config.vdf...
Copying /home/runner/Steam/config/config.vdf...
Copying /opt/hostedtoolcache/steamcmd/latest/i386/ssfn...
Copying /home/runner/Steam/ssfn...
Finished Copying SteamGuard Files!
@timothymalcham
timothymalcham / gml2json.py
Created November 26, 2019 21:00 — forked from jschaub30/gml2json.py
Python script for converting graphml (*gml) files to json
#!/usr/bin/env python
import sys
def gml_sub(blob):
lines = []
for line in blob.split('\n'):
line = line.strip()
lines.append(line)
@timothymalcham
timothymalcham / scm-player.css
Last active August 29, 2015 14:22
SCM player css
#player,#player a{ color:#fff; }
#player{ background:url(sizerAndVol.png); background-position:bottom; }
#player .mainImage{ background:url(main.png); }
#player #baseLeft{ width:93px; }
#player #baseRight{ width:145px;}
#player .button{ width:26px; }
#player #play{ background:url(playBtn.png); }
#player #play,#player #pause{ left:26px; }
#player #previous{ left:0px; }
@timothymalcham
timothymalcham / sublime_settings
Last active August 29, 2015 14:04
Sublime Settings
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"caret_style": "phase",
"close_windows_when_empty": true,
"color_scheme": "Packages/Base16 Color Schemes/base16-eighties.dark.tmTheme",
"create_window_at_startup": false,
"draw_white_space": "all",
"fade_fold_buttons": false,
"file_exclude_patterns":
@timothymalcham
timothymalcham / sample_gulpfile.js
Created February 26, 2014 18:27
Sample gulp file
var gulp = require('gulp');
var sass = require('gulp-ruby-sass');
var rename = require('gulp-rename');
var notify = require('gulp-notify');
var livereload = require('gulp-livereload');
var lr = require('tiny-lr');
var server = lr();
gulp.task('styles', function() {
return gulp.src('app/scss/base.scss')