Skip to content

Instantly share code, notes, and snippets.

View Tjoosten's full-sized avatar
🌏
Somewhere between home and Hogwarts School of Witchcraft and Wizardry

Tim Joosten Tjoosten

🌏
Somewhere between home and Hogwarts School of Witchcraft and Wizardry
  • Polar Youth
  • Antwerp, BE
  • 15:48 (UTC +01:00)
  • X @x0rif
View GitHub Profile
<div class="tw-rounded-lg tw-bg-orange-lightest tw-border-l-4 tw-border-orange tw-text-orange-dark tw-p-4" role="alert">
<p class="tw-font-bold">Be Warned</p>
<p>Something not ideal might be happening.</p>
</div>
C:\Users\Gebruiker\Desktop\mosselsouper>npm run node_modules/.bin/tailwind.cmd build styles.css -c tailwind.js -o public/css/tailwind.css
npm ERR! missing script: node_modules/.bin/tailwind.cmd
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Gebruiker\AppData\Roaming\npm-cache\_logs\2017-11-19T11_47_05_761Z-debug.log
C:\Users\Gebruiker\Desktop\mosselsouper>npm run node_modules/.bin/tailwind.cmd build styles.css -c tailwind.js -o public/css/tailwind.css
npm ERR! missing script: node_modules/.bin/tailwind
npm ERR! A complete log of this run can be found in:
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested package graham-campbell/markdown could not be found in any version, there may be a typo in the package name.

Potential causes:
 - A typo in the package name
 - The package is not available in a stable-enough version according to your minimum-stability setting
   see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
oefening 1: Men heeft een vaas waar men niet kan doorkijken. Maar in de vaas zitten munstukken.
Men kan hier 1 muntstuk uitnemen elkes keer. De grijp handelingen moeten gebeuren tot de vaas leeg is.
PSUEDO CODE:
BEGIN PROGRAMMA
LEES hoop = 0
LEES aantal_munstukken
WHILE vaas niet leeg
R:\Clients\SIJOT>vendor\\bin\\phploc sijot-current
phploc 4.0.0 by Sebastian Bergmann.
Directories 1559
Files 7704
Size
Lines of Code (LOC) 1052912
Comment Lines of Code (CLOC) 309492 (29.39%)
Non-Comment Lines of Code (NCLOC) 743420 (70.61%)
@Tjoosten
Tjoosten / Describe
Last active August 21, 2017 18:07
PROBLEEM: Zoals beschreven in de describe file. plus ook data word in de verkeerde kolommen gezet.
| service_number | varchar(255) | YES | | NULL | |
| c | varchar(255) | YES | | NULL | |
| ptp | varchar(255) | YES | | NULL | |
| person_type_name | varchar(255) | YES | | NULL | |
| member_name | varchar(255) | YES | | NULL | |
| s | varchar(255) | YES | | NULL | |
| service_name | varchar(255) | YES | | NULL | |
| rank_rate | varchar(255) | YES | | NULL | |
| pg | varchar(255) | YES | | NULL | |
| occ | varchar(255) | YES | | NULL | |
@Tjoosten
Tjoosten / git_submodules.md
Created August 15, 2017 02:35 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@Tjoosten
Tjoosten / git_submodules.md
Created August 15, 2017 02:35 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
<?php
namespace Sijot\Http\Controllers;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Http\Request;
use Sijot\Http\Requests\LeaseValidator;
use Sijot\Http\Requests\NotitionValidator;
use Sijot\Lease;
use Sijot\Notitions;
mysql> select eind_datum, start_datum from leases;
+---------------------+---------------------+
| eind_datum | start_datum |
+---------------------+---------------------+
| 2020-11-12 00:00:00 | 2020-11-10 00:00:00 |
+---------------------+---------------------+
1 row in set (0.00 sec)