- Create VM, Configuring and adding Disk Image
- VRAM → 256MB
λ VBoxManage.exe modifyvm "Ubuntu 17.10" --vram 256
- start VM
| /** | |
| * © 2018-present Ringo Hoffmann (zekro Development) | |
| * zekro.de | contact@zekro.de | |
| * READ BEFORE USAGE: http://zekro.de/policy | |
| * | |
| * ATTENTION: | |
| * This code is inspired and refers on the code from | |
| * mvrilo's Project 'urban' on GitHub: | |
| * https://github.com/mvrilo/urban/blob/master/lib/urban.js#L66 | |
| */ |
| require_relative 'timer' | |
| TRIGGER_TIMES = [ | |
| [10, 30], | |
| [14, 45], | |
| [17, 10] | |
| ] | |
| Timer.new TRIGGER_TIMES, 15 do |
| --exclude-lang=XML,Markdown,JSON,TOML,YAML,"MSBuild script","Qt Project","Windows Resource File" --not-match-f \w+.Designer.cs |
| /* | |
| (c) 2018 Ringo Hoffmann | |
| SimpleLinkedList v.0.4.0 | |
| */ | |
| #include <iostream> | |
| using namespace std; | |
| // Nur um eine Exception throwen zu können, wenn ein Index |
| // SOURCE: | |
| // https://www.codeproject.com/articles/866547/publisher-subscriber-pattern-with-event-delegate-a | |
| using System; | |
| namespace DotNetTest | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |
| // SOURCE: | |
| // http://joelabrahamsson.com/inversion-of-control-an-introduction-with-examples-in-net/ | |
| using System; | |
| using System.Collections.Generic; | |
| namespace DotNetTest | |
| { | |
| class Program | |
| { |
| // SOURCES: | |
| // https://stackoverflow.com/questions/14301389/why-does-one-use-dependency-injection | |
| // http://www.codearsenal.net/2015/03/c-sharp-dependency-injection-simple.html#.Wxo7iIozaHs | |
| using System; | |
| namespace DotNetTest | |
| { |