Skip to content

Instantly share code, notes, and snippets.

View i4004's full-sized avatar
👨‍🔬
Programming

Alexanderius i4004

👨‍🔬
Programming
View GitHub Profile
@i4004
i4004 / PushNugetSymbolsPackages.ps1
Last active October 7, 2020 15:00
Publish NuGet symbols packages
$packagesPath = "D:\\Downloads\\*.snupkg"
nuget push $packagesPath -Source https://api.nuget.org/v3/index.json
if ($LastExitCode -ne 0)
{
exit $LastExitCode
}
Remove-Item $packagesPath
@the-nose-knows
the-nose-knows / mixed_proj.sln.metaproj
Created March 26, 2019 21:18
A metaproj file generated when using MSBuildEmitSolution=1
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="ValidateSolutionConfiguration;ValidateToolsVersions;ValidateProjects" DefaultTargets="Build">
<PropertyGroup>
<MSBuildExtensionsPath32>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild</MSBuildExtensionsPath32>
<MSBuildExtensionsPath>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild</MSBuildExtensionsPath>
<MSBuildToolsPath32>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\bin</MSBuildToolsPath32>
<MSBuildToolsPath64>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\bin\amd64</MSBuildToolsPath64>
<MSBuildSDKsPath>C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Sdks</MSBuildSDKsPath>
<FrameworkSDKRoot>C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\</FrameworkSDKRoot>
<MSBuildRuntimeVersion>4.0.30319</MSBuildRuntimeVe
@kviktor
kviktor / app.qml
Last active October 10, 2020 14:36
QT SystemTrayIcon onActivated not working
import QtQuick 2.8
import QtQuick.Layouts 1.0
import QtQuick.Controls 2.1
import Qt.labs.platform 1.0
import QtQuick.Dialogs 1.2
ApplicationWindow {
id: appWindow
width: 50
@ammgws
ammgws / logitech_g110_instructions.md
Last active August 15, 2021 06:11
getting logitech g110 to work in arch linux

Packages to install from system repo / AUR

sudo pacman -S python2-gconf from AUR: python2-rsvg

Create python2.7 virtualenv to use with gnome15 and install requirements with pip

vf new -p python2.7 gnome15_venv
vf globalpackages  # to allow system packages installed above to be used in this venv
@maxvt
maxvt / infra-secret-management-overview.md
Last active February 28, 2024 20:53
Infrastructure Secret Management Software Overview

Currently, there is an explosion of tools that aim to manage secrets for automated, cloud native infrastructure management. Daniel Somerfield did some work classifying the various approaches, but (as far as I know) no one has made a recent effort to summarize the various tools.

This is an attempt to give a quick overview of what can be found out there. The list is alphabetical. There will be tools that are missing, and some of the facts might be wrong--I welcome your corrections. For the purpose, I can be reached via @maxvt on Twitter, or just leave me a comment here.

There is a companion feature matrix of various tools. Comments are welcome in the same manner.

@sirkirby
sirkirby / bamboo-nuget-pkg-restore.cmd
Created August 10, 2014 01:02
bamboo script task nuget package restore
:: use the nuget.exe from your repository with your custom nuget.config
"${bamboo.build.working.directory}/tools/nuget/nuget.exe" restore "${bamboo.build.working.directory}/src/MySolution.sln" ^
-ConfigFile "${bamboo.build.working.directory}/tools/nuget/nuget.config"