- https://tio.run - Try It Online (TIO) is a family of online interpreters for an evergrowing list of practical and recreational programming languages.
- https://repl.it - repl.it is a cloud coding environment for Python, Ruby, Javascript, Node, React Native & more
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
choco list -lo -r -y | % { "choco install $($_.SubString(0, $_.IndexOf("|"))) -y" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To run this script, run the command below in comments | |
# $url = "https://gist.github.com/ishu3101/fa2db197a4acb59b796e8a6aa40aff01/raw/" | |
# Invoke-RestMethod $url | iex | |
ls |
Group | Environment | SSGs |
---|---|---|
Pages (Official) | Ruby, Node, Python, etc. | All SSGs presented on this post |
Jekyll Themes | Ruby | Jekyll |
Middleman Themes | Ruby | Middleman |
[Themes and Templates][4] | Miscellaneous | Miscellaneous |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install docker on windows | |
chocolatey install docker | |
chocolatey install docker-machine | |
chocolatey install docker-compose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Github Repository</title> | |
</head> | |
<body> | |
<script> | |
var username = "ishu3101"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: philippheuer/docker-gitlab-powershell | |
test: | |
stage: test | |
script: | |
# run PowerShell script | |
- powershell -File build.ps1 | |
# run PowerShell Command | |
- powershell -Command "Get-Date" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import urllib | |
import urllib2 | |
import random | |
import json | |
# get a random programming quote using an api | |
url="http://quotes.stormconsultancy.co.uk/random.json" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compile latex files online using https://latexonline.cc | |
# Overleaf | |
# Usage | |
https://latexonline.cc/compile?git=https://git.overleaf.com/{id}&target={filename}.tex | |
# Example | |
https://latexonline.cc/compile?git=https://git.overleaf.com/9212267nmctrvktqxnf&target=main.tex | |
# Github |