Skip to content

Instantly share code, notes, and snippets.

View Bye-lemon's full-sized avatar
:octocat:
Learning

Li Yingping Bye-lemon

:octocat:
Learning
View GitHub Profile
@Bye-lemon
Bye-lemon / copyaspath.reg
Last active June 2, 2020 02:50
Copy as path
Windows Registry Editor Version 5.00
; 菜单项为复制路径,结果带引号
[HKEY_CLASSES_ROOT\Allfilesystemobjects\shell\windows.copyaspath]
"CanonicalName"="{707C7BC6-685A-4A4D-A275-3966A5A3EFAA}"
"CommandStateHandler"="{3B1599F9-E00A-4BBF-AD3E-B3F99FA87779}"
@Bye-lemon
Bye-lemon / 2018to2019.bf
Created January 6, 2019 02:50
Hello, world. with Brainfuck
+++++ +++++
[
> +++++ ++
> +++++ +++++
> +++
> +++++
> +
<<<<< -
]
> + .
@Bye-lemon
Bye-lemon / Doxyfile
Created December 13, 2018 12:29
Doxygen C Project Config
# Doxyfile 1.8.14
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
dist: trusty
os: linux
sudo: required
language: c
before_install:
- wget https://cmake.org/files/v3.12/cmake-3.12.2-Linux-x86_64.tar.gz
- tar zxvf cmake-3.12.2-Linux-x86_64.tar.gz
- mv cmake-3.12.2-Linux-x86_64 /opt/cmake-3.12.2
- sudo ln -sf /opt/cmake-3.12.2/bin/* /usr/bin/
install: