Skip to content

Instantly share code, notes, and snippets.

View yuqlid's full-sized avatar

Yuki Kusakabe yuqlid

View GitHub Profile
@yuqlid
yuqlid / .latexmkrc
Last active March 26, 2019 00:34
latexmk設定ファイル
#!/usr/bin/env perl
# file .latexmkrc
# author Ryotaro Onuki, Yuki Kusakabe
# created_at 2019.01.25
# modified_at 2019.02.05
# modefied_at 2019.03.13(Yuki)
## latex commands
$latex = 'uplatex -synctex=1 -halt-on-error';
$latex_silent = 'uplatex -synctex=1 -halt-on-error -interaction=batchmode';
@yuqlid
yuqlid / settings.json
Created August 30, 2018 08:58
VSCode Setting
{
"python.pythonPath": "/Users/yuki/.pyenv/versions/anaconda3-5.1.0",
"workbench.iconTheme": "vscode-icons",
"latex-workshop.latex.tools": [
{
"command": "latexmk",
"args": [
"-e",
"$latex=q/uplatex %O -synctex=1 -interaction=nonstopmode -file-line-error %S/",
"-e",
@yuqlid
yuqlid / .travis.yml
Created July 20, 2018 16:03
Travis CI script for arm-gcc
notifications:
email: false
sudo: false
language: c
matrix:
fast_finish: true
include:
@yuqlid
yuqlid / tasks.jason
Created November 30, 2017 14:24
VSCodeのタスクを利用してビルド&クリーン
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"type": "shell",
"echoCommand": true,
"tasks": [
{
"taskName": "build all",
"command": "make all -j4",
@yuqlid
yuqlid / launch.json
Created November 30, 2017 14:22
VSCodeでGDB+OpenOCDデバッグ
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/BUILD/${workspaceRootFolderName}.elf",
"args": [],
@yuqlid
yuqlid / Techbook2_template.tex
Last active March 2, 2017 17:33
技術書典2,まんじゅう本舗新刊のTexテンプレートのようなもの
\documentclass[b5paper, 9pt, twocolumn, titlepage, uplatex]{jsbook} %メイン構成
\usepackage[dvipdfmx]{graphicx,color,hyperref} %dvi→pdf変換
%追加してるパッケージ
\usepackage{url}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{pxjahyper} %pdfのしおりの文字化けを防止する.内部コードを判別して切り替えてくれる
\usepackage{comment}
\usepackage{listings} %ソースコード載せる時に使う
@yuqlid
yuqlid / main.c
Last active December 23, 2016 09:45
sw4stm32_use_semihosting
/**
******************************************************************************
* @file main.c
* @author yuqlid
* @version V1.0
* @date 23-Dece-2016
* @brief Default main function.
******************************************************************************
*/
@yuqlid
yuqlid / main.c
Created December 20, 2016 04:20
sw4stm32 helloworld
/**
******************************************************************************
* @file main.c
* @author yuqlid
* @version V1.0
* @date 15-June-2016
* @brief Default main function.
******************************************************************************
*/