Skip to content

Instantly share code, notes, and snippets.

View LasMD's full-sized avatar
🏠
Working from home, enjoing a cup with JS and Java, Green Coding 🌴

Lasitha Denipitiya LasMD

🏠
Working from home, enjoing a cup with JS and Java, Green Coding 🌴
View GitHub Profile
@LasMD
LasMD / shadow-dom.md
Created November 10, 2018 18:26 — forked from praveenpuglia/shadow-dom.md
Everything you need to know about Shadow DOM

I am moving this gist to a github repo so more people can contribute to it. Also, it makes it easier for me to version control.

Please go to - https://github.com/praveenpuglia/shadow-dom-in-depth for latest version of this document. Also, if you find the document useful, please shower your love, go ⭐️ it. :)

Shadow DOM

Heads Up! It's all about the V1 Spec.

In a nutshell, Shadow DOM enables local scoping for HTML & CSS.

@LasMD
LasMD / AdbCommands
Created January 2, 2019 09:33 — forked from Pulimet/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@LasMD
LasMD / Contributing.md
Created May 23, 2019 11:30 — forked from MarcDiethelm/Contributing.md
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.

@LasMD
LasMD / DevOps related courses with links
Created September 13, 2019 07:21 — forked from sd031/DevOps related courses with links
GCP, AWS Certification, DevOps / DevSecOps courses link that I did go through
@LasMD
LasMD / gist:26a831d2248291529eb09d8cfbfd7821
Created February 15, 2020 13:33 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@LasMD
LasMD / CHANGELOG.md
Created June 4, 2020 06:37 — forked from juampynr/CHANGELOG.md
Sample CHANGELOG

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased] - yyyy-mm-dd

Here we write upgrading notes for brands. It's a team effort to make them as

When you modify a file in your repository, the change is initially unstaged. In order to commit it, you must stage itβ€”that is, add it to the indexβ€”using git add. When you make a commit, the changes that are committed are those that have been added to the index.

git reset changes, at minimum, where your current branch is pointing. The difference between --mixed and --soft is whether or not your index is also modified. So, if we're on branch master with this series of commits:

- A - B - C (master)

HEADpoints to C and the index matches C.

--soft

@LasMD
LasMD / openssl_commands.md
Created March 22, 2022 08:54 — forked from Hakky54/openssl_commands.md
Some list of openssl commands for check and verify your keys

openssl πŸ”

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl