See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
fun isValidIPv4Address(ipAddress: String): Boolean { | |
val segments = ipAddress.split('.') | |
val maxNumberOfSegments = 4 | |
if (ipAddress.isEmpty() || segments.count() != maxNumberOfSegments) return false | |
segments.forEach { item -> | |
val rangeOfSegment = 0..255 | |
val segment = item.toIntOrNull() ?: return false | |
if ((item.count() > 1 && item.startsWith('0')) || segment !in rangeOfSegment) return false | |
} | |
return true |
# Block things on LinkedIn with uBlock Origin that LinkedIn won't let you block | |
# Choose "Options" in uBlock Origin with a right-click, and add these to | |
# "My filters" | |
# ADDING YOUR OWN FILTERS | |
# | |
# Using Linkedin.com as an example | |
# | |
# 1. Open up the webpage | |
# 2. Find some text you want to block |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
#!/bin/bash | |
# install qemu utils | |
sudo apt install qemu-utils | |
# install nbd client | |
sudo apt install nbd-client |
gpa: Allocator, | |
/// I don't know how io_uring works, so my usage here is going to be total bollocks. | |
/// I'm going to never init this, and I'll write: | |
/// ``` | |
/// io_uring.pushSqe(.{ | |
/// .op = .sleep, | |
/// .arg0 = clockid, | |
/// .arg1 = std.time.ns_per_s, | |
/// .user = ptr, | |
/// }); |
#!/bin/bash | |
# | |
# Initial script to create users when launching an Ubuntu server EC2 instance | |
# | |
declare -A USERKEY | |
# | |
# Create one entry for every user who needs access. Be sure to change the key to their |
feat
Commits, that adds or remove a new featurefix
Commits, that fixes a bugrefactor
Commits, that rewrite/restructure your code, however does not change any API behaviourperf
Commits are special refactor
commits, that improve performancestyle
Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)test
Commits, that add missing tests or correcting existing testsdocs
Commits, that affect documentation onlybuild
Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...ops
Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...---Usage: | |
---```bash | |
---cat input.b | luajit main.lua | luajit | |
---``` | |
---Or (with input) | |
---```bash | |
---cat input.b | luajit main.lua > output.lua | |
---cat input.txt | luajit output.lua > output.txt | |
---``` | |
local function readIO() |
[ci skip]
in the commit title