Inspiration: https://www.most-useful.com/kde-plasma-on-wsl.html
- Update WSL
- In windows command prompt run:
wsl --update
- In windows command prompt run:
- Add systemd to ubuntu
- In ubuntu prompt run:
sudo nano /etc/wsl.conf
Inspiration: https://www.most-useful.com/kde-plasma-on-wsl.html
wsl --update
sudo nano /etc/wsl.conf
Array.from(document.getElementsByTagName('input')).forEach(i => i.checked = false) |
#!/bin/bash | |
# Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. | |
set -e | |
cd "`dirname "$0"`" | |
if [ ! -f Engine/Binaries/DotNET/GitDependencies.exe ]; then | |
echo "GitSetup ERROR: This script does not appear to be located \ | |
in the root UE4 directory and must be run from there." |
/** | |
* Created by ant on 16/04/2015. | |
*/ | |
'use strict'; | |
angular.module('project.widgets-grid').directive( | |
'gridScroll', function gridScrollDefinitionFn | |
($timeout, | |
DashboardGrid) | |
{ |
<?php | |
class Customer extends Eloquent | |
{ | |
public function user() | |
{ | |
return $this->belongsTo('User'); | |
} | |
public function profession() |
<?php | |
use Illuminate\Database\Migrations\Migration; | |
use Illuminate\Database\Schema\Blueprint; | |
class AddProfessionColumnToCustomersTable extends Migration { | |
/** | |
* Run the migrations. | |
* |
<?php | |
use Illuminate\Database\Migrations\Migration; | |
use Illuminate\Database\Schema\Blueprint; | |
class CreateUsersTable extends Migration { | |
/** | |
* Run the migrations. | |
* |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
clean: { | |
build: { | |
src: ['build'] | |
} | |
}, | |
copy: { |
angular.module('App').directive('topCatIcon', | |
function(TopCategories) { | |
return { | |
link: function(scope, element, attrs) { | |
var selectedColor = '#ffffff'; | |
var defaultColor = scope.topCat.colors.active; | |
//scope.$watch('TopCategories.selected', function(newsValue, oldValue) { | |
//if (TopCategories.selected.item == null) return; | |
element.css('color', scope.topCat.colors.active); |
angular.module('App').controller('OnlytomeCtrl', | |
function ($scope, $cookies, Http, $route, $location, $translate,Profile, Searches, ProfileSegments, TopCategories) { | |
$scope.mainNav = null; | |
$scope.subNav = null; | |
$scope.currentUser = null; | |
$scope.selectedTopCategory = null; | |
$scope.searches = []; | |
Http.authenticate().then( function(){ | |
Profile.load(); |