Status Monitor, as inspired by Dave Roach's dribbble, Status Monitor, with my own twist and visions.
https://dribbble.com/shots/1669764-Status-Monitor
A Pen by Matt Porter on CodePen.
| package main | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "os" | |
| "path/filepath" |
| <?php | |
| namespace App\View\Components; | |
| use DateTimeZone; | |
| use Illuminate\View\Component; | |
| class TimeZoneSelect extends Component | |
| { | |
| public string $nameId; |
| #!/usr/bin/env python3 | |
| import sys | |
| import subprocess | |
| class Colors: | |
| CYAN = "\033[96m" | |
| GREEN = "\033[92m" | |
| WARNING = "\033[93m" |
| const path = require('path'); | |
| const webpack = require('webpack'); | |
| const VueLoaderPlugin = require('vue-loader/dist/plugin').default; | |
| const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | |
| const ManifestPlugin = require('webpack-manifest-plugin'); | |
| const isProd = process.env.NODE_ENV === 'production'; | |
| const resolvePath = (...args) => path.resolve(path.join(__dirname, ...args)); |
| // create a file called autoexec.cfg at C:\Program Files (x86)\Origin Games\Apex\cfg | |
| // with the contents of this file | |
| // | |
| // after that add "+exec autoexec" to your adv launch options | |
| fps_max 0 | |
| // cl_forcepreload 1 | |
| cl_ragdoll_collide 0 | |
| cl_ejectbrass "0" |
| set nocompatible | |
| filetype off | |
| " vim-plug - 🌺 Minimalist Vim Plugin Manager (https://github.com/junegunn/vim-plug) | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'tpope/vim-surround' | |
| Plug 'gcmt/breeze.vim' | |
| Plug 'tomtom/tcomment_vim' | |
| Plug 'vim-airline/vim-airline' |
| #!/usr/bin/env ruby | |
| std_out = `find . -name *.DS_Store` | |
| files = std_out.split("\n") | |
| files.each do |file| | |
| File.delete(file) | |
| end |
Status Monitor, as inspired by Dave Roach's dribbble, Status Monitor, with my own twist and visions.
https://dribbble.com/shots/1669764-Status-Monitor
A Pen by Matt Porter on CodePen.
Here is a simple little library i cooked up that I find to be extremely useful when testing.
A Pen by Matt Porter on CodePen.
A Pen by Matt Porter on CodePen.