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
| #!/bin/bash | |
| [ "$PLAYONLINUX" = "" ] && exit 0 | |
| source "$PLAYONLINUX/lib/sources" | |
| export WINEPREFIX="/home/danielkza/.PlayOnLinux//wineprefix/lol2" | |
| export WINEDEBUG="-all" | |
| LOL_DIR="$HOME/Games/League of Legends" | |
| BEFORE_WINE='env LD_PRELOAD=libpthread.so.0:libGL.so.1 __GL_THREADED_OPTIMIZATIONS=1' |
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
| @namespace url("http://www.w3.org/1999/xhtml"); | |
| @font-face { font-family: 'Andale Mono'; src: local('monospace'); } | |
| @font-face { font-family: 'Arial'; src: local('sans-serif'); } | |
| @font-face { font-family: 'Arial Black'; src: local('sans-serif'); } | |
| @font-face { font-family: 'Calibri'; src: local('serif'); } | |
| @font-face { font-family: 'Cambria'; src: local('serif'); } | |
| @font-face { font-family: 'Candara'; src: local('sans-serif'); } | |
| @font-face { font-family: 'Comic Sans MS'; src: local('sans-serif'); } | |
| @font-face { font-family: 'Consolas'; src: local('monospace'); } |
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
| * | |
| !.gitignore | |
| !/.bash* | |
| !/.zsh/ | |
| !/.zsh/* | |
| !/.env* | |
| !/.aliases* | |
| !/.profile* |
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
| #!/bin/env python3 | |
| import os | |
| import sys | |
| import urllib.request | |
| import json | |
| import subprocess | |
| EXTENSION_BASE_URL = 'https://extensions.gnome.org' | |
| EXTENSION_QUERY_URL_FORMAT = EXTENSION_BASE_URL + '/extension-query/?sort=popularity&page={page}' |
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
| --- !ruby/object:Gem::Specification | |
| name: kalibro_client | |
| version: !ruby/object:Gem::Version | |
| version: 4.0.0 | |
| platform: ruby | |
| authors: | |
| - Daniel Quadros Miranda | |
| - Diego de Araújo Martinez Camarinha | |
| - Heitor Reis Ribeiro | |
| - Rafael Reggiani Manzo |
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
| $ PROFILE_NUM_RUNS=3 command time -v ruby performance/tests/aggregation.rb | |
| warning: parser/current is loading parser/ruby22, which recognizes | |
| warning: 2.2.x-compliant syntax, but you are running 2.3.0. | |
| warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri. | |
| Profiling Performance::Aggregation | |
| Setup: start | |
| Created 1023 ModuleResults and 4096 MetricResults | |
| Setup: finish | |
| Run 1: start | |
| Run 1: finish |
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 os | |
| import os.path | |
| import fnmatch | |
| import stat | |
| import logging | |
| import hashlib | |
| from StringIO import StringIO | |
| from zipfile import ZipFile, ZIP_DEFLATED | |
| import boto3 |
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
| #!/bin/sh /etc/rc.common | |
| START=90 | |
| STOP=10 | |
| NAME=ipsec-uci | |
| USE_PROCD=1 | |
| IPSEC_BIN=/usr/sbin/ipsec | |
| IPSEC_SECRETS=/var/run/ipsec/ipsec.secrets |
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
| #!/bin/env python3 | |
| # Copyright (c) 2016, Daniel Miranda <[email protected]> | |
| # All rights reserved. | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions are met: | |
| # 1. Redistributions of source code must retain the above copyright notice, this | |
| # list of conditions and the following disclaimer. |
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
| (require '[clojure.java.io :as io] | |
| '[clojure.tools.logging :refer [infof]] | |
| '[riemann.common :refer [encode decode-inputstream]] | |
| '[riemann.config :refer [service!]] | |
| '[riemann.service :refer [thread-service]] | |
| '[riemann.time :refer [unix-time]]) | |
| (import '[java.io.File FileOutputStream]) | |
| (defn index-save | |
| [file index] |