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
################################# | |
# 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! |
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 python | |
import sys | |
def gml_sub(blob): | |
lines = [] | |
for line in blob.split('\n'): | |
line = line.strip() | |
lines.append(line) |
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
#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; } |
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
{ | |
"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": |
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
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') |