├── docs ├── 404.html ├── 404.txt ├── CNAME ├── arapsware.html ├── arapsware.txt ├── blog.html ├── blog.txt ├── blog.xml ├── contact.html ├── contact.txt ├── index.html ├── index.txt └── p │ ├── 00.html │ └── 00.txt ├── make ├── site ├── 404.txt ├── CNAME ├── arapsware.txt ├── blog.txt ├── blog.xml ├── contact.txt ├── index.txt └── p │ └── 00.txt └── template.html /docs/404.html: -------------------------------------------------------------------------------- 1 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | 10 | 11 | j88D .d88b. j88D 12 | j8~88 .8P 88. j8~88 13 | j8' 88 88 d'88 j8' 88 14 | V88888D 88 d' 88 V88888D 15 | 88 `88 d8' 88 16 | VP `Y88P' VP 17 | 18 | PAGE NOT FOUND. 19 | 20 | 21 | 22 | ________________________________________________________________________________ 23 | 24 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 25 | 26 | Dylan Araps (C) 2021, All rights reserved. 27 | 28 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | I write open source software released under a permissive license (MIT). 10 | 11 | 12 | $/kisslinux An independent Linux distribution with a focus on simplicity 13 | and the concept of "less is more". Aimed to be fully 14 | maintainable by a single person. 15 | 16 | %/neofetch A command-line system information tool written in bash 3.2+. 17 | Neofetch displays information about your operating system, 18 | software and hardware in a visually pleasing way. 19 | 20 | %/pfetch A simple system information tool written in POSIX compliant 21 | shell using features built into the language itself. 22 | 23 | %/pash A simple password manager using GPG written in POSIX shell. 24 | Only 120~ lines of code (minus blank lines and comments). 25 | 26 | %/pywal A tool that generates a color palette from the dominant 27 | colors in an image. It then applies the colors system-wide 28 | and on-the-fly in all of your favourite programs. 29 | 30 | %/pure-bash-bible The goal of this book is to document commonly-known and 31 | lesser-known methods of doing various tasks using only 32 | built-in bash features. 33 | 34 | %/pure-sh-bible The goal of this book is to document commonly-known and 35 | lesser-known methods of doing various tasks using only 36 | built-in POSIX shell features. 37 | 38 | %/fff A simple file manager written in bash. Supports image 39 | previews, file operations and other nice features. 40 | 41 | %/shfm A very portable and very tiny file manager written in POSIX 42 | compliant shell with no dependencies. 43 | 44 | %/paleta Change terminal colors on-the-fly independent of terminal 45 | emulator. A generic theme switcher written in C. 46 | 47 | %/sowm An itsy bitsy floating window manager for Xorg (220~ sloc!). 48 | My first foray into C territory. 49 | 50 | %/birch An IRC client written in bash using its built-in networking 51 | capabilities and built-in readline implementation. 52 | 53 | %/libdbus-stub Stub library for software that depends on dbus but is largely 54 | functional without it. 55 | 56 | %/pow Simple laptop power management. 57 | 58 | %/pxltrm A terminal pixel art editor written in pure bash. Draw pixel 59 | art without a mouse using intuitive hotkeys. 60 | 61 | %/torque A TUI client for transmission written in bash. 62 | 63 | %/root.vim A vim plugin to automatically set directory to your project's 64 | root based on a known directory or file. 65 | 66 | 67 | 68 | ________________________________________________________________________________ 69 | 70 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 71 | 72 | Dylan Araps (C) 2021, All rights reserved. 73 | 74 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | RSS feed: #/blog.xml 10 | 11 | 00 12 | 01 02 03 04 05 06 07 08 09 10 11 12 13 13 | 14 15 16 17 18 19 20 21 22 23 24 25 26 14 | 27 28 29 30 31 32 33 34 35 36 37 38 39 15 | 40 41 42 43 44 45 46 47 48 49 50 51 52 16 | 53 54 55 56 57 58 59 60 61 62 63 64 65 17 | 66 18 | 19 | 20 | ________________________________________________________________________________ 21 | 22 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 23 | 24 | Dylan Araps (C) 2021, All rights reserved. 25 | 26 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | I can be reached at the following. 10 | 11 | Email: 12 | 13 | - dylan.araps@gmail.com 14 | - dylan@kisslinux.xyz 15 | 16 | GitHub: 17 | 18 | - $/dylanaraps 19 | - $/kisslinux 20 | 21 | 22 | 23 | ________________________________________________________________________________ 24 | 25 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 26 | 27 | Dylan Araps (C) 2021, All rights reserved. 28 | 29 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | I am an enigma. Welcome to my website. 10 | 11 | 12 | 13 | ________________________________________________________________________________ 14 | 15 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 16 | 17 | Dylan Araps (C) 2021, All rights reserved. 18 | 19 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | TODO 10 | 11 | 12 | ________________________________________________________________________________ 13 | 14 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 15 | 16 | Dylan Araps (C) 2021, All rights reserved. 17 | 18 |
3 | +------------------------------------------------------------------------------+ 4 | | | 5 | | Dylan Araps @/software @/blog @/contact | 6 | | | 7 | +------------------------------------------------------------------------------+ 8 | 9 | %%CONTENT%% 10 | 11 | 12 | ________________________________________________________________________________ 13 | 14 | GPG ABF9BF8318B487DCE757C9D613295DAC2CF13B5C 15 | 16 | Dylan Araps (C) 2021, All rights reserved. 17 | 18 |