Skip to content

Instantly share code, notes, and snippets.

View dariusz-wozniak's full-sized avatar
🏀

Dariusz Woźniak dariusz-wozniak

🏀
View GitHub Profile
@dariusz-wozniak
dariusz-wozniak / excel-functions-pl-en.csv
Last active January 13, 2019 19:46
📊 Tłumaczenia funkcji w Excelu polski <> angielski
PL EN
ATANH ATANH
ATAN2 ATAN2
ATAN ATAN
ASINH ASINH
ASIN ASIN
ASC ASC
ARKUSZE SHEETS
ARKUSZ SHEET
ARG.LICZBY.ZESP IMARGUMENT
@dariusz-wozniak
dariusz-wozniak / javascript-object-and-prototypes.js
Created January 13, 2019 17:57
📝 JavaScript Objects and Prototypes (Pluralsight course) — Notes
// Readonly property:
// throws TypeError when 'use strict';
var cat = {
name: 'Fluffy'
};
Object.defineProperty(cat, 'name', {writable: false});
@dariusz-wozniak
dariusz-wozniak / javascript-fundamentals-notes.js
Last active January 19, 2019 20:16
📝 JavaScript Fundamentals (Pluralsight course) — Notes
// IIFE:
let app = (function() {
console.log("weheh");
let carId = 123;
let getId = function() {
return carId * 2;
};
return {
#SPACE:: Winset, Alwaysontop, , A
@dariusz-wozniak
dariusz-wozniak / gimmesomeguids.ps1
Last active June 22, 2018 13:25
Gimme some GUIDs
1..10 | foreach { [Guid]::newguid() }
@dariusz-wozniak
dariusz-wozniak / telemetry.ps1
Created February 20, 2018 16:20
Opt-out from .NET Core telemetry
setx DOTNET_CLI_TELEMETRY_OPTOUT 1
@dariusz-wozniak
dariusz-wozniak / OpenPreyConfig.ps1
Created October 28, 2016 17:11
OpenPreyConfig.ps1
C:\Windows\Prey\current\bin\prey config gui -f
@dariusz-wozniak
dariusz-wozniak / RunSlackMinimized.ahk
Last active January 15, 2021 22:22
Run Slack Minimized (AutoHotkey script)
Run, %USERPROFILE%\AppData\Local\slack\Update.exe --processStart "slack.exe", , Normal
WinWait, ahk_exe slack.exe
Loop, 50
{
WinHide, ahk_exe slack.exe
Sleep, 200
}
@dariusz-wozniak
dariusz-wozniak / Git-ShowRemoteBranches.ps1
Created October 28, 2016 17:10
Git-ShowRemoteBranches.ps1
function Git-ShowRemoteBranches($filter)
{
if ($filter)
{
git remote show origin | sls $filter
}
else
{
git remote show origin
}
@dariusz-wozniak
dariusz-wozniak / emendash.ahk
Last active June 5, 2020 03:15
AutoHotkey - Em Dash and En Dash
; en dash
!NumpadSub::
Send, {ASC 0150}
return
; em dash
!NumpadAdd::
Send, {ASC 0151}
return