Skip to content

Instantly share code, notes, and snippets.

View AshrafBasry's full-sized avatar

Ashraf Hassan AshrafBasry

View GitHub Profile
@butageek
butageek / windows_activation.md
Last active November 18, 2024 13:54
Activate Windows for free

For Windows 10

Step 1 - Open PowerShell or Command Prompt as administrator

Step 2 - Install KMS client key

slmgr /ipk your_license_key

Replace your_license_key with following volumn license keys according to Windows Edition:

@tripflex
tripflex / HideEmail.vue
Created December 17, 2019 19:36
Hide/Obfuscate/Mask Email Address from Spam Bots (Vue.js Component)
<template>
<span class="reverse">{{reversedEmail}}</span>
</template>
<script>
export default {
name: 'hide-email',
props: [ 'email' ],
computed: {
reversedEmail(){
@bradtraversy
bradtraversy / myscript.sh
Last active November 9, 2024 02:10
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"