Generate default .config
.
$ make defconfig ARCH=um SUBARCH=x86_64
Build the linux
ELF binary.
$ make -j8 linux ARCH=um SUBARCH=x86_64
## a simple "syslog" lexer for pygmentize | |
from pygments.lexer import RegexLexer, bygroups | |
from pygments.token import * | |
__all__ = ['SyslogLexer'] | |
class SyslogLexer(RegexLexer): | |
name = 'Syslog' | |
aliases = ["syslog"] |
#!/bin/sh | |
# ~/.ctags.d/drivers | |
() { | |
COMMAND_NOT_FOUND=127 | |
if ! type dscanner; then | |
exit ${COMMAND_NOT_FOUND} | |
fi | |
} > /dev/null 2>&1 |
以下転載:
# Search in all Stash for a pattern | |
# Install: Copy the below into the .gitconfig file | |
# simple call | |
# git stash-search pattern_to_search | |
[alias] | |
stash-search = "!f() { git show $(git stash list | cut -d\":\" -f 1) | grep \"$@\" ; }; f" | |
# MIT License |
Hi, | |
I am a developer of @universal-ctags. | |
I would like to incorporate your <LANG> parser to universal-ctags. | |
universal-ctag is distributed under term of | |
GNU General Public License version 2 or (at your option) any later version. | |
If you allow me to incorporate your parser into universal-ctags, could you add | |
I would like you to add following copyright notice at the head of your .ctags: |
This document compiles 2018 coverage around post-modern packaging technologies for Linux, including packaging formats like Snaps and Flatpaks, systems like Nix and Guix and full distros such as Atomic or Clear Linux.
This curation and commentary are current as of 18 June 2018. The curation was prepared by José Miguel Parrella (@bureado) as part of his session at Open Source Summit Japan: Package Management and Distribution in a Cloud World.
We compile these resources in an effort to provide individual developers and organizations with current coverage on the state-of-the-art and motivations of the current post-modern packaging landscape with the intention to increase readiness in experimenting with, evaluating and potentially adopting said technologies.