Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | ๐ :tada: |
| Version tag | ๐ :bookmark: |
| New feature | โจ :sparkles: |
| Bugfix | ๐ :bug: |
| #!/usr/bin/env ruby | |
| # coding: utf-8 | |
| # | |
| # mdunfence - Extract fenced code blocks from markdown into separate files. | |
| # | |
| # All files with the markdown extension under the current working directory are | |
| # handled and the new files will be named after their parent markdown filename | |
| # with a count appended to keep track of multiple extracted code blocks. The | |
| # optional language identifier will be used as the new file extension. | |
| # |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Information Security Blog Feed List Compiled by @decalresponds</title> | |
| </head> | |
| <outline text="Infosec" title="Information Security"> | |
| <outline type="rss" text="Signal Chaos" title="Signal Chaos" xmlUrl="http://s1gnalcha0s.github.io/feed.xml" htmlUrl="http://s1gnalcha0s.github.io/"/> | |
| <outline type="rss" text="Secrutiny" title="Secrutiny" xmlUrl="https://secrutiny.com/feed/" htmlUrl="https://secrutiny.com"/> | |
| <outline type="rss" text="Ero Carrera's blog" title="Ero Carrera's blog" xmlUrl="http://blog.dkbza.org/rss.xml" htmlUrl="http://blog.dkbza.org/"/> |
| #!/usr/bin/env bash | |
| # | |
| # goodoms: Enumerate sub-domains with Google's site: search operator | |
| # | |
| # Admittedly, general-purpose search engines aren't the best enumerators of DNS | |
| # records. However, they are good at extracting host names that may have been | |
| # otherwise inaccessible as a result of cached web pages in the search indices. | |
| # This script was created to automate the process in a semi-predictable manner. | |
| # | |
| # Written by: Derek Callaway [derek.callaway (AT) ioactive {D0T} com] |
| #!/usr/bin/env bash | |
| # | |
| # github-repo-desc (GitHub Repository Describer) | |
| # | |
| # Describe GitHub repositories residing under given local file system directory | |
| # | |
| # Written By: Derek Callaway [decal (AT) sdf {D0T} org] | |
| # Last Updated: Mon Dec 31 10:42:14 PST 2018 | |
| # Tested On: macOS High Sierra and CentOS GNU/Linux | |
| # |
| # Misc: --start-maximized --disable-save-password-bubble | |
| # Reduce attack surface: --disable-presentation-api --disable-file-system --disable-contextual-search --disable-account-consistency --disable-translate --disable-background-mode --disable-plugins-discovery --disable-webgl --disable-webgl-image-chromium --disable-speech-api --disable-smart-virtual-keyboard --disable-print-preview --disable-password-generation --disable-overlay-scrollbar --disable-offer-upload-credit-cards --disable-ntp-popular-sites --disable-cloud-import --disable-component-cloud-policy --disable-credit-card-scan --disable-bundled-ppapi-flash --disable-java --disable-plugins --disable-ipv6 --disable-people-search --disable-default-apps | |
| # Incognito, sandboxing & security stuff: --incognito --disable-sync --disable-sync-backup --disable-sync-rollback --disable-sync-app-list --disable-sync-types --enable-sandbox --enable-sandbox-logging --isolate-extensions --isolate-sites-for-testing=* --process-per-tab --process-per-site --safe-plugins | |
| # |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | ๐ :tada: |
| Version tag | ๐ :bookmark: |
| New feature | โจ :sparkles: |
| Bugfix | ๐ :bug: |
| /* | |
| * Parse `nmap -p` style port range list string input into a linked list.. | |
| * | |
| * Written By: Derek Callaway [decal (AT) sdf {D0T} org] | |
| * Compile As: gcc -O2 -Wall -pedantic -o portrange portrange.c | |
| * Updated On: Fri Apr 27 01:14:29 DST 2018 | |
| */ | |
| #include<stdio.h> | |
| #include<stdlib.h> |
| # | |
| # GNU Makefile boilerplate | |
| # | |
| # Written by: Derek Callaway [decal (AT) sdf {D0T} org] | |
| # | |
| CC = gcco | |
| CFLAGS = -std=c11 -Wall -pedantic -O2 -g -I. -D_FORTITY_SOURCE=2 -fstack-check -fstack-protector-all -fsanitize=alignment | |
| LIBS = | |
| SRCS = count_commas.c count_urlglob.c main_function.c show_urlglob.c showall_urlglob.c array_range.c show_usage.c integer_l |