Skip to content

Instantly share code, notes, and snippets.

View karimkod's full-sized avatar
⌨️
*Keyboard clicks*

Bourennane Abdelkrim karimkod

⌨️
*Keyboard clicks*
View GitHub Profile
@karimkod
karimkod / clear-local-branches.ps1
Created November 26, 2024 09:34
A Powershell command to remove local git branches that don't have a matching remote branch.
git fetch -p && git branch -vv | Select-String -Raw "gone" | %{ git branch -D ($_.Split(" ")[2])}
@karimkod
karimkod / Result.cs
Created November 20, 2024 21:32
A simple C# implementation of a Result Pattern
using System;
using System.Threading.Tasks;
namespace Rbit.Application.Common;
public class Result<TValue, TError> : IHaveError<TError>
{
public TValue? Value { get; }
public TError? Error { get; }
param(
[Parameter(Mandatory, Position=0)]
[String]
$CommandLike
)
Get-Content (Get-PSReadLineOption).HistorySavePath | Where-Object { $_ -like "*$CommandLike*" -And $_ -NotLike "*Lazy-Up*" }
oh-my-posh init pwsh | Invoke-Expression
oh-my-posh init pwsh --config "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/microverse-power.omp.json" | Invoke-Expression
@karimkod
karimkod / actionlist.vim
Created March 5, 2024 10:38 — forked from zchee/actionlist.vim
IdeaVim actionlist
--- Actions ---
$Copy <M-C>
$Cut <M-X> <S-Del>
$Delete <Del> <BS> <M-BS>
$LRU
$Paste <M-V>
$Redo <M-S-Z> <A-S-BS>
$SearchWeb <A-S-G>
$SelectAll <M-A>
$Undo <M-Z>
set -g default-terminal "screen-256color"
#set -g prefix C-a
#
#unbind C-b
#
#bind-key C-a send-prefix
unbind %
bind | split-window -h
@karimkod
karimkod / .ideavimrc
Last active December 1, 2024 10:30
ideavimrc
let mapleader = " "
set visualbell
set noerrorbells
set surround
set multiple-cursors
set scrolloff=5
set idearefactormode=keep
set relativenumber number
set ideajoin
@karimkod
karimkod / custom_radio_button.dart
Created September 30, 2021 23:03
Custom radio button
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
const double _kOuterRadius = 8.0;
const double _kInnerRadius = 4.5;
@karimkod
karimkod / replaceSingleQuoteWithDoubleQuote.js
Created October 30, 2020 10:28
RegEx used with String.protoype.replace to replace all single quotes with double quotes in the text and ignoring single quotes used for contractions.
//Replace Single quote with double quote in a text regularExpression.
let reg = /([^\w])'(.+)'([^\w])/ig;
let text = "and then he said : 'Oh no rick, don't kill me please'. And rick replied : 'frick off kid' knowing he won't.";
let replaced = text.replace(reg, '$1"$2"$3');
@karimkod
karimkod / AndroidManifest.xml
Created July 12, 2020 18:12
AndroiManifest that will work for Oculus go in Unity
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto">
<uses-feature android:name="android.hardware.vr.headtracking" android:required="false"/>
<!-- Request the headset DoF mode -->
<application>
<activity
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"