See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
// ==UserScript== | |
// @name Shabdle++ | |
// @namespace http:/gist.github.com/hrishikeshrt/ | |
// @version 0.3 | |
// @description Upgrade your Shabdle with past puzzles, custom puzzles, random puzzles and static links! | |
// @author You | |
// @match https://kach.github.io/shabdle/* | |
// @require https://code.jquery.com/jquery-3.6.0.min.js | |
// @downloadURL https://gist.githubusercontent.com/hrishikeshrt/694cfb91903068eb581c6fe220f382bf/raw/shabdle++.user.js | |
// @updateURL https://gist.githubusercontent.com/hrishikeshrt/694cfb91903068eb581c6fe220f382bf/raw/shabdle++.user.js |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Tue Sep 10 13:56:54 2019 | |
@author: Hrishikesh Terdalkar | |
# Solution for Different Mountpoint of Flask App | |
# https://github.com/alex-leonhardt/flask-blog/blob/master/reverseproxied.py | |
# https://gist.github.com/flengyel/1444972/f8338b7fa63475a23abf63c9a3fc68184791e8d2 |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
model_to_dict() functiion for SQLAlchemy models | |
Based on answers by "doog abides" and "daveoncode" from | |
https://stackoverflow.com/questions/23554119/convert-sqlalchemy-orm-result-to-dict | |
@author: Hrishikesh Terdalkar | |
""" |
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Crop Video in multiple places using ffmpeg | |
* Input file: a text file containing several lines. | |
Each line should contain `start_time` and `end_time` of the interval (hh:mm:ss.ms) | |
e.g. | |
00:00:05.0 00:00:27.18 | |
00:02:07.18 00:03:14.1 |
Example: firefox
cgroups (abbreviated from control groups) is a Linux kernel feature that limits, accounts for, and isolates the resource usage (CPU, memory, disk I/O, network, etc.) of a collection of processes. You can use it to make sure specific processes and their children cannot allocate more than a given amount of RAM.
On Ubuntu you must install the following package:
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Sat Apr 24 19:25:34 2021 | |
@author: Hrishikesh Terdalkar | |
Original: https://github.com/sanskrit-coders/pydictupdater | |
""" |