Skip to content

Instantly share code, notes, and snippets.

View Aragami1408's full-sized avatar

Higanbana/彼岸花 Aragami1408

View GitHub Profile
{
"coc.preferences.useQuickfixForLocations": true,
"diagnostic.hintSign": "ﯦ",
"suggest.completionItemKindLabels": {
"keyword": "\uf1de",
"variable": "\ue79b",
"value": "\uf89f",
"operator": "\u03a8",
"function": "\u0192",
"reference": "\ufa46",
@Aragami1408
Aragami1408 / init.vim
Last active July 27, 2021 10:38
nvim config file with vimplug plugins
call plug#begin('~/.config/nvim/plugged')
Plug 'junegunn/vim-easy-align'
Plug 'scrooloose/nerdtree'
Plug 'morhetz/gruvbox'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'terryma/vim-multiple-cursors'
Plug 'junegunn/fzf.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
/*
TurboC, a library for porting Borland Turbo C to GNU gcc.
Copyright 2002,2010 Ronald S. Burkey
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
@Aragami1408
Aragami1408 / gist:16e03448aa41840831cfd30d9d92febc
Last active June 26, 2019 12:42 — forked from micache/gist:574343ccc8a9a46b617aaa68c044ae23
Wrong at line 122(Arrayindexoutofboundsexception)
package com.libgdxproject.firstproject;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.audio.Sound;
import com.badlogic.gdx.audio.Music;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.OrthographicCamera;
import com.badlogic.gdx.graphics.Texture;
@Aragami1408
Aragami1408 / Sys.java
Created September 2, 2018 17:16
compare POJO
public class Sys {
private String message;
private String id;
private String sunset;
private String sunrise;
private String type;
@Aragami1408
Aragami1408 / polybar-install.sh
Created May 30, 2018 13:36
polybar installing shell file
#!/bin/bash
# Install polybar on Ubuntu 16
set -e
set -x
sudo apt-get update && sudo apt-get -y dist-upgrade && \
sudo apt install -y cmake cmake-data libcairo2-dev libxcb1-dev libxcb-ewmh-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-randr0-dev libxcb-util0-dev libxcb-xkb-dev pkg-config python-xcbgen xcb-proto libxcb-xrm-dev i3-wm libjsoncpp-dev libasound2-dev libpulse-dev libmpdclient-dev libiw-dev libcurl4-openssl-dev libxcb-cursor-dev
mkdir -p $HOME/repos
cd $HOMD/repos