| Project Name | project.yaml | maintainers.yaml | Maintainer Count | SECURITY.md | CONTRIBUTING.md | GOVERNANCE.md | Warning |
|---|---|---|---|---|---|---|---|
| Aeraki Mesh | project.yaml | maintainers.yaml | 7 | ||||
| Bank-Vaults | project.yaml | maintainers.yaml | 10 | SECURITY.md | |||
| BFE | project.yaml | maintainers.yaml | 1 | SECURITY.md | |||
| bpfman | project.yaml | [mainta |
This file contains hidden or 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
| schema_version: v1.0 | |
| name: | |
| homepage_url: | |
| logo: | |
| description: | |
| crunchbase: | |
| twitter: | |
| release_url: | |
| # extra, mirrors landscape extra | |
| config: |
This file contains hidden or 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/env python3 | |
| """ | |
| GitHub Notifications Cleanup Script | |
| Fetches all GitHub notifications, checks if their associated issues/PRs are closed/merged, | |
| and marks them as done by deleting them via the GitHub API. | |
| """ | |
| import argparse | |
| import logging | |
| import os |
- Edit the file at
/Library/Backblaze.bzpkg/bzdata/bzexcluderules_editable.xml. - Add these rules inside the
bzexclusionstag:
<!-- Exclude node_modules. -->
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/node_modules/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" />
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/.git/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" />
This file contains hidden or 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
| # Usage: | |
| # 1) Ctr+S downloads page to ~/Desktop/books.html | |
| # 2) Run script | |
| # 3) Find your books in /tmp/humble_books | |
| # 4) Read them | |
| # 5) Profit | |
| cat ~/Desktop/books.html | | |
| grep "https://dl.humble.com" | | |
| sed -n -E 's/.data-web\=\"(https://dl.humble.com/([.]+).([a-z]+)?["]+)./\1 \2 \3/p' | | |
| sed 's/&/&/g' > /tmp/humble_books_list && cat /tmp/humble_books_list | |
This file contains hidden or 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
| #!/bin/bash | |
| # node-reinstall | |
| # credit: | |
| # http://stackoverflow.com/a/11178106/2083544 | |
| # https://gist.github.com/brock/5b1b70590e1171c4ab54 | |
| ## program version | |
| ## Update versions accordingly. https://github.com/creationix/nvm/releases | |
| VERSION="0.31.0" |
This file contains hidden or 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
| { config, lib, pkgs, ... }: | |
| with lib; | |
| { | |
| imports = [ | |
| # ISO image | |
| <nixpkgs/nixos/modules/installer/cd-dvd/iso-image.nix> | |
| # Hardware support similar to installer Live CD | |
| <nixpkgs/nixos/modules/profiles/all-hardware.nix> |
In the last few years, the number of programmers concerned about writing structured commit messages have dramatically grown. As exposed by Tim Pope in article readable commit messages are easy to follow when looking through the project history. Moreover the AngularJS contributing guides introduced conventions that can be used by automation tools to automatically generate useful documentation, or by developers during debugging process.
This document borrows some concepts, conventions and even text mainly from these two sources, extending them in order to provide a sensible guideline for writing commit messages.
NewerOlder