This file contains 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
https://github.com/David-Else/fedora-ultimate-setup-script/blob/master/install-and-setup-neovim.sh |
This file contains 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 crossterm::style::StyledContent; | |
use crossterm::style::Stylize; | |
#[derive(Debug, Clone, Copy)] | |
pub struct Position { | |
pub x: u16, | |
pub y: u16, | |
} | |
impl PartialEq for Position { |
This file contains 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
#!/bin/bash | |
# select SOFTWARE / Software Selection / Base Environment > Workstation | |
# when you create user tick 'make user administrator' | |
# FINAL tested 16/10/19, still unreleased ntfs-3g borgbackup syncthing wine | |
#============================================================================== | |
# script settings and checks | |
#============================================================================== | |
set -euo pipefail |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="stylesheet" href="./src/main.css"> | |
<script type="module" src="./src/main.js"></script> | |
<title>9-Energy Natural Expression Generator</title> |
This file contains 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
/* global Vue */ | |
import { | |
primaryNumberMales, | |
primaryNumberFemales, | |
secondNumberMales, | |
secondNumberFemales, | |
thirdNumberArray, | |
} from './data.js'; | |
Vue.component('results', { |
This file contains 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
/* https://www.elsewebdevelopment.com/ */ | |
class OnScreenObject { | |
constructor({ xPosition, yPosition }) { | |
this.xPosition = xPosition; | |
this.yPosition = yPosition; | |
} | |
move() { | |
this.xPosition += this.xSpeed; | |
this.yPosition += this.ySpeed; |
This file contains 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
/* http://www.elsewebdevelopment.com/ */ | |
(function () { | |
'use strict'; | |
const utils = { | |
events: {}, | |
// utils.subscribe("nameofevent", callback); | |
// utils.publish("nameofevent", 4); | |
// utils.unsubscribe("nameofevent", callback); |