Skip to content

Instantly share code, notes, and snippets.

View Tirael's full-sized avatar
🏠
Working from home

Georgiy Zhuykov Tirael

🏠
Working from home
  • Moscow, Moscow City, Russian Federation
View GitHub Profile
# https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27332
sudo crontab -l > cron_bkp
sudo echo '*/5 * * * * sudo /usr/share/gitlab-runner/clear-docker-cache prune-volumes >/dev/null 2>&1' >> cron_bkp
sudo crontab cron_bkp
sudo rm cron_bkp
#!/bin/bash
find /gitlab-runner/builds -type f -ctime +7 -delete && find /gitlab-runner/builds -type d -empty -delete
@Tirael
Tirael / secretdump.sh
Created August 1, 2022 10:12 — forked from andor-pierdelacabeza/secretdump.sh
Kubernetes: dump all keys in secret to files:
# Requirements: kubectl and yq ( https://github.com/kislyuk/yq )
# This will take every key/value in a secret, base64 decode the value, and dump the result to
# a file named as the key name
SECRET=credentials-staging NAMESPACE=staging
for i in `kubectl -n ${NAMESPACE} get secret ${SECRET} -o yaml --export|yq -r '.data | keys[]'`
do
echo "Dumping ${i}"
kubectl -n ${NAMESPACE} get secret ${SECRET} -o yaml --export|yq -r '.data."'${i}'"' | base64 -d > ${i}
done
// Logiops (Linux driver) configuration for Logitech MX Master 3.
// Includes gestures, smartshift, DPI.
// Tested on logid v0.2.3 - GNOME 3.38.4 on Zorin OS 16 Pro
// What's working:
// 1. Window snapping using Gesture button (Thumb)
// 2. Forward Back Buttons
// 3. Top button (Ratchet-Free wheel)
// What's not working:
// 1. Thumb scroll (H-scroll)
// 2. Scroll button
@Tirael
Tirael / build.yml
Created May 31, 2022 11:21 — forked from skushnerchuk/build.yml
replace external submodules in gitlab pipeline
include:
- project: 'devops/ci'
ref: master
file: '/gitlab/scripts.yml'
before_script:
- !reference [.scripts, replace_external_submodules]
Replace with your own usename and email:
------------------------------------------------
git config --global user.name "Username"
git config --global user.email "[email protected]"
These next two commands tell Git to use your Windows credentials to store your origin password.
------------------------------------------------
git config --global credential.helper wincred
git config --global credential.helper store
@Tirael
Tirael / nginx.conf
Created May 17, 2022 09:16 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@Tirael
Tirael / example-vault-admin-policy.hcl
Created April 14, 2022 19:37 — forked from kawsark/example-vault-admin-policy.hcl
An example Vault admin policy with capability to manage leses
# Allow managing leases
path "sys/leases/*"
{
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
}
# Manage auth methods broadly across Vault
path "auth/*"
{
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
@Tirael
Tirael / EfUtility.cs
Created July 28, 2021 08:29
ef to sql
using System.Linq;
using System.Reflection;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore.Query.SqlExpressions;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.Storage;
namespace MyNamespace
{
public static class EfUtility
@Tirael
Tirael / IQueryableExtensions
Created July 28, 2021 08:28 — forked from rionmonster/IQueryableExtensions
Resolve the SQL being executed behind the scenes in Entity Framework Core
public static class IQueryableExtensions
{
private static readonly TypeInfo QueryCompilerTypeInfo = typeof(QueryCompiler).GetTypeInfo();
private static readonly FieldInfo QueryCompilerField = typeof(EntityQueryProvider).GetTypeInfo().DeclaredFields.First(x => x.Name == "_queryCompiler");
private static readonly PropertyInfo NodeTypeProviderField = QueryCompilerTypeInfo.DeclaredProperties.Single(x => x.Name == "NodeTypeProvider");
private static readonly MethodInfo CreateQueryParserMethod = QueryCompilerTypeInfo.DeclaredMethods.First(x => x.Name == "CreateQueryParser");