- Date and Time > Show date
- Sound > Show volume in the menu bar
- Enable key repeat:
defaults write -g ApplePressAndHoldEnabled -bool false
ordefaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
In this post we will look at how to automate the Laravel Task Scheduling system using the Windows Task Scheduler. The instructions presented were written for the Windows 10 Professional operating system, but should be easily transferable to other Windows operating system versions.
The Windows Task Scheduler service must first be enabled and running on the system. To verify this, open the Services application from the Administrative Tools panel on the specific Windows system you are using (alternatively you can run the services.msc application from the Run Window by using the Windows Key + R key combination). Locate the “Task Scheduler” entry and verify that it is running:
imgWindows Services
Now, start the Task Scheduler management application by selecting the “Task Scheduler” application from the Administrative Tools panel (alternatively you can run the taskschd.msc application from the Run Window by using the Windows Key + R key combination). The Task
#!/bin/bash | |
#### | |
# Split MySQL dump SQL file into one file per table | |
# based on https://gist.github.com/jasny/1608062 | |
#### | |
#adjust this to your case: | |
START="/-- Table structure for table/" | |
# or |
FROM php:7.1.8-apache | |
MAINTAINER Dominic Jones | |
COPY . /srv/app | |
COPY .docker/vhost.conf /etc/apache2/sites-available/000-default.conf | |
COPY .docker/kerberos.keytab /etc/kerberos.keytab | |
COPY .docker/krb5.conf /etc/krb5.conf | |
WORKDIR /srv/app |
sudo apt-get install virtualbox-guest-x11
source: https://superuser.com/questions/496513/mount-gives-unknown-filesystem-type-vboxsf
select | |
applications.id, | |
applications.reference_number, | |
applications.status, | |
applications.application_type, | |
applications.created_at, | |
applications.date_awarded, | |
applications.speciality, |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Word Assignment</title> | |
<style> | |
#wordAssignmentForm > div, .grammer-entities > div { | |
margin: 1em; | |
} |
<?php | |
use Illuminate\Support\Facades\Schema; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Database\Migrations\Migration; | |
class Bookings extends Migration | |
{ | |
/** | |
* Run the migrations. |
<?php | |
function array_build($array, $filter) { | |
foreach($array as $key => $value) { | |
unset($array[$key]); | |
$filter($key, $value); | |
$array[$key] = $value; | |
} | |
return $array; |