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
2020-02-21T13:06:04.1361753Z ##[section]Starting: Request a runner to run this job | |
2020-02-21T13:06:04.3506312Z Requesting a hosted runner in current repository's account/organization with labels: 'ubuntu-latest', require runner match: True | |
2020-02-21T13:06:04.4056384Z Labels matched hosted runners has been found, waiting for one of them get assigned for this job. | |
2020-02-21T13:06:04.4377870Z ##[section]Finishing: Request a runner to run this job | |
2020-02-21T13:06:10.9696070Z Current runner version: '2.165.2' | |
2020-02-21T13:06:10.9697689Z Prepare workflow directory | |
2020-02-21T13:06:10.9894499Z Prepare all required actions | |
2020-02-21T13:06:10.9907863Z Download action repository 'actions/checkout@722adc6' | |
2020-02-21T13:06:12.9070128Z Download action repository 'actions/setup-node@1c5c137' | |
2020-02-21T13:06:13.2475337Z Download action repository 'actions/cache@70655ec' |
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
2020-02-21T13:04:34.3594159Z ##[section]Starting: Request a runner to run this job | |
2020-02-21T13:04:34.6125543Z Requesting a hosted runner in current repository's account/organization with labels: 'ubuntu-latest', require runner match: True | |
2020-02-21T13:04:34.6675533Z Labels matched hosted runners has been found, waiting for one of them get assigned for this job. | |
2020-02-21T13:04:34.7110026Z ##[section]Finishing: Request a runner to run this job | |
2020-02-21T13:04:41.4456883Z Current runner version: '2.165.2' | |
2020-02-21T13:04:41.4458279Z Prepare workflow directory | |
2020-02-21T13:04:41.4634925Z Prepare all required actions | |
2020-02-21T13:04:41.4647907Z Download action repository 'actions/checkout@722adc6' | |
2020-02-21T13:04:42.7621373Z Download action repository 'actions/setup-node@1c5c137' | |
2020-02-21T13:04:42.9442819Z Download action repository 'actions/cache@70655ec' |
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
;(function (window, $, undefined) { ;(function () { | |
var pluginName = 'datepicker', | |
autoInitSelector = '.datepicker-here', | |
$body, $datepickersContainer, | |
containerBuilt = false, | |
baseTemplate = '' + | |
'<div class="datepicker">' + | |
'<i class="datepicker--pointer"></i>' + | |
'<nav class="datepicker--nav"></nav>' + | |
'<div class="datepicker--content"></div>' + |
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 | |
# Disable OSX Bluetooth | |
# OS X 10.10.3 | |
# 03-03-2015 | |
home=$HOME | |
bk=$home/backup-bluetooth-extentions | |
mkdir $bk |
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 | |
currentDir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
ecFile=$currentDir/probook_ec.pl | |
autoSpeed=false | |
currentTemp=0 | |
init() { | |
$ecFile := 0x2F 0x80 | |
echo "ProbookFan: Init fan to 0x80" | |
} |
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
{ | |
"folders": | |
[ | |
{ | |
"path": ".", | |
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "node_modules", ".sass-cache"] | |
} | |
] | |
} |
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
{% assign m = post.date | date: "%-m" %} | |
{{ post.date | date: "%-d" }} | |
{% case m %} | |
{% when '1' %}stycznia | |
{% when '2' %}lutego | |
{% when '3' %}marca | |
{% when '4' %}kwietnia | |
{% when '5' %}maja | |
{% when '6' %}czerwca | |
{% when '7' %}lipca |