bold text denoting it's something important
another bold text
import requests, lxml.html | |
s = requests.session() | |
### Here, we're getting the login page and then grabbing hidden form | |
### fields. We're probably also getting several session cookies too. | |
login = s.get('https://github.com/login') | |
login_html = lxml.html.fromstring(login.text) | |
hidden_inputs = login_html.xpath(r'//form//input[@name="authenticity_token"]') | |
form = {x.attrib["name"]: x.attrib["value"] for x in hidden_inputs} | |
### Now that we have the hidden form fields, let's add in our |
# needed for installing modules from internet | |
set-executionpolicy remotesigned -s cu | |
# install scoop )**( | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
# install some necessary apps | |
scoop install git | |
scoop install python | |
scoop install nodejs |
# profile.ps1 for configuring Powershell's defaults | |
# created by @itsjzt | |
# dont forget to update the gist. | |
# import post-git for showing git status in terminal | |
Import-Module posh-git | |
Import-Module oh-my-posh | |
Set-Theme Agnoster |
bold text denoting it's something important
another bold text
# ping on google server (bash script)
ping -t www.google.com
Make it simple not simpler. -- Albert Einstein
first item
some text about it.
Second item
some text also about it.
I read a lot and also write some cool blogs. You can read My blog here.