-i
- ignore errors
-c
- continue
-t
- use video title as file name
--extract-audio
- extract audio track
Simply cd into your Git repository and run git instaweb
. You will be presented with a lightweight web GUI to browse commits and diffs.
You may need to install lighttpd if you're a Linux user or the Ruby gem webrick if you're a MacOS user.
original information - https://www.reddit.com/r/ProgrammerTIL/comments/95wo0a/git_til_that_git_has_a_web_gui_built_in/
def print_greeting(venue, name): | |
"""Print greeting for a specific venue.""" | |
venues = { | |
'walmart': walmart_greeting, | |
'target': target_greeting, | |
'aldi': aldi_greeting, | |
'food lion': food_lion_greeting, | |
} |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
class wtforms.fields.SelectField(default field arguments, choices=[], coerce=unicode, option_widget=None)
Select fields keep a choices property which is a sequence of (value, label) pairs. The value portion can be any type in theory, but as form data is sent by the browser as strings, you will need to provide a function which can coerce the string representation back to a comparable object.
Select fields with static choice values:
class PastebinEntry(Form):
language = SelectField(u'Programming Language', choices=[('cpp', 'C++'), ('py', 'Python'), ('text', 'Plain Text')])
Linking a custom domain to a deployed application is confusing and at times you don't get a route on how to link the domain with the website. 😫
In this article, I will be explaining how to link a Custom domain brought in Google Domains service to an application hosted on Vercel.
Perks of using vercel is that it allows adding domain without any verification unlike Heroku/Netlify, which means you don't have to add your billing details to add a domain to your application. Moreover, it is fast, efficient, and easy to use.😁
Vercel is a deployment and collaboration platform for frontend developers. Vercel enables developers to host websites and web services that deploy instantly and scale automatically – all without any configuration. Source - Official Docs