This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- NAVIGATION BAR STYLE --> | |
<!-- (c) 2017 Nils Reichert & Felix Pojtinger --> | |
<!-- Chrome, Firefox OS and Opera --> | |
<meta name="theme-color" content="#ff8c00"> | |
<!-- Windows Phone --> | |
<meta name="msapplication-navbutton-color" content="#ff8c00"> | |
<!-- iOS Safari --> | |
<meta name="apple-mobile-web-app-status-bar-style" content="#ff8c00"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { Image } from 'react-native'; | |
import { | |
Container, | |
Header, | |
Content, | |
Card, | |
CardItem, | |
Thumbnail, | |
Text, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
flatpak remote-add --user --no-gpg-verify chrome http://blog.kukuh.syafaat.id/google-chrome-flatpak-repo-testing/repo | |
flatpak install --user chrome com.google.Chrome | |
git clone [email protected]:endlessm/eos-google-chrome-app.git | |
cd eos-google-chrome-app | |
chmod +x eos-google-chrome-app | |
./eos-google-chrome-app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -L https://gitlab.com/pojntfx/pojntfx/-/jobs/artifacts/master/download?job=infractl -o /tmp/infractl.zip && unzip /tmp/infractl.zip -d /tmp/infractl && sudo cp /tmp/infractl/packages/infractl/dist/infractl-linux /tmp/infractl/packages/infractl/dist/infractl && sudo install /tmp/infractl/packages/infractl/dist/infractl /usr/local/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Install vim-plug if it's not already installed | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
" Install plugins | |
call plug#begin() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Install plugins | |
call plug#begin('~/.config/nvim/autoload/plug.vim') | |
Plug 'https://github.com/cohama/lexima.vim' | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'severin-lemaignan/vim-minimap' | |
Plug 'tacahiroy/ctrlp-funky' | |
Plug 'fisadev/vim-ctrlp-cmdpalette' | |
Plug 'scrooloose/nerdtree' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Xft.dpi: 220 | |
Xcursor.theme: Adwaita | |
Xcursor.size: 42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"go.goplsOptions": { | |
"completeUnimported": true, | |
"deepCompletion": true | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Configure `hostname` | |
echo "[INFO] Processing \`hostname\` ..." | |
sudo hostnamectl set-hostname server-`cat /etc/machine-id` | |
# Install updates | |
echo "[INFO] Processing updates ..." | |
sudo dnf update -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Install plugins | |
if has("nvim") | |
call plug#begin('~/.config/nvim/autoload/plug.vim') | |
else | |
call plug#begin() | |
endif | |
Plug 'https://github.com/cohama/lexima.vim' | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
Plug 'ctrlpvim/ctrlp.vim' |
OlderNewer