Skip to content

Instantly share code, notes, and snippets.

View pojntfx's full-sized avatar
💭
🍂

Felicitas Pojtinger pojntfx

💭
🍂
View GitHub Profile
@pojntfx
pojntfx / template-rvwg-01.html
Created February 5, 2018 12:45
RvWG main template before modal removal
<!-- 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">
@pojntfx
pojntfx / app.js
Created February 12, 2018 21:10
React Native & NativeBase Cards (A mix of Instagram and Reddit)
import React, { Component } from 'react';
import { Image } from 'react-native';
import {
Container,
Header,
Content,
Card,
CardItem,
Thumbnail,
Text,
@pojntfx
pojntfx / google-chrome-flatpak
Last active June 11, 2019 08:42 — forked from cho2/google-chrome-flatpak
Google Chrome Flatpak
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 git@github.com:endlessm/eos-google-chrome-app.git
cd eos-google-chrome-app
chmod +x eos-google-chrome-app
./eos-google-chrome-app
@pojntfx
pojntfx / install.sh
Created August 29, 2019 11:42
Install Infractl
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
@pojntfx
pojntfx / .vimrc
Last active October 24, 2019 00:46
@pojntfx' Vim configuration
" 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()
@pojntfx
pojntfx / init.vim
Created October 24, 2019 00:44
@pojnfx' neovim configuration
" 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'
@pojntfx
pojntfx / .Xresources
Last active November 2, 2019 13:54
My suckless Alpine dotfiles
Xft.dpi: 220
Xcursor.theme: Adwaita
Xcursor.size: 42
@pojntfx
pojntfx / coc-settings.json
Last active December 2, 2019 19:52
COC config
{
"go.goplsOptions": {
"completeUnimported": true,
"deepCompletion": true
}
}
@pojntfx
pojntfx / development-overlay-fedora-31-server.sh
Last active September 21, 2020 10:49
Fedora 31 Development Overlay
#!/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
@pojntfx
pojntfx / init.vim
Last active November 10, 2019 10:18
Neovim Configuration
" 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'