Skip to content

Instantly share code, notes, and snippets.

View kushalseth's full-sized avatar
🎯
Focusing

Kushal Seth kushalseth

🎯
Focusing
View GitHub Profile
# Kushal Seth :india: :pray: :coffee:
Link to Video: https://www.youtube.com/watch?v=aEyDrfyp7Rs
The video is also updated on youtube. The video and presentation links are in the comments.
Please feel free to watch. I have covered some of the interesting aspects on Open Source.
- What actually is open Source
- How is it different from free software concept
- How Open Source is beneficial to the companies
Link to resume in comments. last updated on 20-september-2020
## Resources to build good Readme.md
- If you liked the template, you can fork https://github.com/kushalseth/kushalseth
- Few links I usually use for md file fomatting
- General Formatting [https://shields.io/](https://shields.io/)
- Emojis in ReadMe: [EmoJI](https://www.webfx.com/tools/emoji-cheat-sheet/)
- Editor Editor: [https://stackedit.io/app#](https://stackedit.io/app#)
- Warnings: https://stackoverflow.com/questions/50544499/how-to-make-a-styled-markdown-admonition-box-in-a-github-gist
- Adding colors to the MD file text:
- https://stackoverflow.com/questions/23904274/is-there-a-way-to-get-colored-text-in-github-flavored-markdown/41043795
- https://stackoverflow.com/questions/35465557/how-to-apply-color-in-markdown?rq=1
@kushalseth
kushalseth / cssinheritence.html
Created August 20, 2020 19:23
cssinheritence
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: #ffff00; // yellow
}
p {
background-color: #ff0000; // red
@kushalseth
kushalseth / csscascade.html
Created August 12, 2020 20:56
CSS Cascading example
<!DOCTYPE html>
<html>
<head>
<style>
div p {
background-color: #ffff00; // yellow
}
p {
background-color: #ff0000; // red
@kushalseth
kushalseth / CSharp
Created August 9, 2020 19:34
IsArraySorted
using System;
class MainClass {
public static void Main (string[] args) {
int[] theArray = { 1, 3, 5, 7 };
Console.WriteLine (IsArraySorted(theArray));
}
public static bool IsArraySorted(int[] array)
{
@kushalseth
kushalseth / advancedcssselectors.html
Created August 9, 2020 16:01
Advanced CSS Selectors GIST
<!DOCTYPE html>
<html>
<head>
<style>
p[data-test] {
background-color: yellow;
}
a[target] {
background-color: orange;
}
@kushalseth
kushalseth / index.html
Created August 9, 2020 09:51
CSS for developer
<!DOCTYPE html>
<html>
<head>
<style>
div, p {
background-color: yellow;
}
</style>
</head>
<body>
@kushalseth
kushalseth / container.html
Last active October 10, 2020 22:51
Difference between container and container-fluid
<div class="container">
<p> Conatiners: Are the one which have one fix width for each screen size.</p>
</div>
<div class="container-fluid">
<p> container-fluid: expands itself to fill full width </p>
</div>
<!--CSS used internally in bootstrap for container class -->
Verify myself: d011bb87f80c4de49d52c1dc97fed0ca http://blockchain.bridge.academy #