Skip to content

Instantly share code, notes, and snippets.

View iam3yal's full-sized avatar
👋
Available.

Eyal Alon iam3yal

👋
Available.
View GitHub Profile
@iam3yal
iam3yal / Goto.ps1
Created July 19, 2023 05:49
Jumps to a predefined directory through a given alias.
#Requires -Version 6.0
[CmdletBinding(PositionalBinding)]
param (
[Parameter(Position=0)]
[string]
$Operation,
[Parameter(Position=1)]
[String]
$Key,
@iam3yal
iam3yal / Visual Studio.xml
Last active April 9, 2020 15:29
Notepad++ Visual Studio Theme
<?xml version="1.0" encoding="Windows-1252" ?>
<!--
Theme name : Visual Studio
-->
<NotepadPlus>
<LexerStyles>
<LexerType name="sql" desc="SQL" ext="">
<WordsStyle name="KEYWORD" styleID="5" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="0060BF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING" styleID="6" fgColor="007BEF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@iam3yal
iam3yal / TypeMemberLayout.xaml
Last active July 14, 2023 01:10 — forked from sliekens/TypeMemberLayout.xaml
StyleCop Type Member Layout for Rider and ReSharper
<Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns">
<TypePattern DisplayName="Non-reorderable types">
<TypePattern.Match>
<Or>
<And>
<Kind Is="Interface" />
<Or>
<HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" />
<HasAttribute Name="System.Runtime.InteropServices.ComImport" />
</Or>