Skip to content

Instantly share code, notes, and snippets.

View abass-dev's full-sized avatar
👾
root@abassdev:~/#_

Abass Dev abass-dev

👾
root@abassdev:~/#_
View GitHub Profile
@abass-dev
abass-dev / windows-keys.md
Created October 3, 2024 23:25 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

#!/usr/bin/env bash
echo "something"
@abass-dev
abass-dev / my-phpcs.xml
Created September 29, 2021 20:15
my php code sniffer configuration
<?xml version="1.1" ?>
<ruleset name ="my app name">
<description>formatting rules</description>
<arg name="colors"/>
<arg value="sp"/>
<arg name="report" value="summary"/>
<ini name="memory_limit" value="64M"/>
<file>src/</file>
<rule ref="PSR2"></rule>
</ruleset>
@abass-dev
abass-dev / .bash_aliases
Created September 11, 2021 17:55
My fish shell bash aliases
# Note: by using fish as default shell you don't need to add the following line #!/bin/bash
# Just create a file into your home directory.
# Example: vi ~/.bash_aliases OR nano ~/.bash_aliases and copy and paste this code after saying just tape source ~/.bash_aliases
# Create and move into that directory
function t-mkdir
If you wish to use fish as your default shell 🐚
simply tape the following command in your terminal 👇
chsh -s fish
done!