Skip to content

Instantly share code, notes, and snippets.

View frikishaan's full-sized avatar
💻
Coding...

Ishaan frikishaan

💻
Coding...
View GitHub Profile
@frikishaan
frikishaan / .bashrc
Created September 13, 2020 07:51
Creating Aliases in Windows
# Create a .bashrc file in the directory "C:\Users\<User>
alias pa='php artisan'
alias nr='npm run'
alias ga='git add .'
alias p='python'
@frikishaan
frikishaan / truncateText.css
Created August 5, 2020 19:01
How to truncate multiple line of text?
.card-title{
-webkit-line-clamp: 2; // Max number of lines you want to show
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
}