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
<?php | |
use Illuminate\Support\Facades\Route; | |
/* | |
|-------------------------------------------------------------------------- | |
| Web Routes | |
|-------------------------------------------------------------------------- | |
| | |
| Here is where you can register web routes for your application. These |
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
name: Laravel | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
setup: |
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
name: Tests | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
setup: |
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
# These are the steps I take to install a fresh copy of Arch Linux on to my Lenovo Thinkpad T470 | |
# Spec: i5; 16gb RAM; Integrated Intel 620 graphics; SSD; | |
# This will go from the very start up to having a base installation ready to add you chosen window manager or desktop environment. | |
# Make a bootable usb stick with the latest version of Arch Linux on. | |
# Plug to into computer and boot. | |
# Connecting to Internet (wifi) | |
iwctl device list |
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
use DavidPeach\Fluid\MyProcessor; | |
require_once '../vendor/autoload.php'; | |
$process = new MyProcessor(10); |
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
library("tidyverse") | |
data <- read.csv("props.csv") | |
data %>% | |
filter(Semi_Detached_Average_Price < 200000) %>% | |
filter(Semi_Detached_Average_Price > 180000) %>% | |
filter( | |
Region_Name == "Warwickshire" | | |
Region_Name == "Staffordshire" | | |
Region_Name == "London" | |
) %>% |
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
# These are the steps I take to install a fresh copy of Arch Linux on to a Lenovo Thinkpad T490 | |
# Spec: i7; 40gb RAM; | |
# This will go from the very start up to having a base installation ready to add you chosen window manager or desktop environment. | |
# Make a bootable usb stick with the latest version of Arch Linux on. | |
# Plug to into computer and boot. | |
# Connecting to Internet (wifi) | |
iwctl device list |
OlderNewer