This file contains hidden or 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
| # THIS LINUX SETUP SCRIPT HAS MORPHED INTO A WHOLE PROJECT: HTTPS://OMAKUB.ORG | |
| # PLEASE CHECKOUT THAT PROJECT INSTEAD OF THIS OUTDATED SETUP SCRIPT. | |
| # | |
| # | |
| # Libraries and infrastructure | |
| sudo apt update -y | |
| sudo apt install -y \ | |
| docker.io docker-buildx \ | |
| build-essential pkg-config autoconf bison rustc cargo clang \ |
This file contains hidden or 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
| # We'll be installing Homebrew in the /opt directory. | |
| cd /opt | |
| # Create a directory for Homebrew. This requires root permissions. | |
| sudo mkdir homebrew | |
| # Make us the owner of the directory so that we no longer require root permissions. | |
| sudo chown -R $(whoami) /opt/homebrew | |
| # Download and unzip Homebrew. This command can be found at https://docs.brew.sh/Installation. |
This file contains hidden or 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 { Directive, OnDestroy, OnInit, Inject } from '@angular/core'; | |
| import { ActivatedRoute, NavigationEnd, Router } from '@angular/router'; | |
| import { Meta, Title } from '@angular/platform-browser'; | |
| import { filter, map, mergeMap } from 'rxjs/operators'; | |
| import { DOCUMENT, PlatformLocation } from '@angular/common'; | |
| @Directive({ | |
| selector: '[appSeo]' | |
| }) |
This file contains hidden or 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
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |