How to make zsh like fish?
via https://github.com/abhigenie92/zsh_to_fish
- Install oh-my-zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
--- | |
# Via https://stackoverflow.com/questions/65619962/how-to-setup-docker-compose-without-a-dockerfile | |
version: "3" | |
services: | |
node_env: | |
image: node:lts-slim | |
container_name: node_env | |
command: bash -c "npm ci && npm run serve" | |
working_dir: /home/node/app |
How to make zsh like fish?
via https://github.com/abhigenie92/zsh_to_fish
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
<?php | |
/* | |
* ToS doc updater (from remote) | |
* Author: Norbert Papp | |
* Goal: check files from remote if they got updated, then download them. | |
* | |
* 1. Get a list of local files to work with OR use hardcoded data | |
* 2. Check if they are outdated, store the results | |
* 3. Download latest version of outdated files |
# MIT License | |
# Copyright (c) 2020 Norbert Papp | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |