Skip to content

Instantly share code, notes, and snippets.

View DennisKraaijeveld's full-sized avatar
🏠
Working from home

Dennis Kraaijeveld DennisKraaijeveld

🏠
Working from home
  • The Netherlands
  • 17:46 (UTC +02:00)
View GitHub Profile
{data: [{uuid: 5309ed73-cab5-4682-8426-eb866837b3b8, objectName: vacancy, createdAt: null, createdBy: null, updatedAt: 1700663266868, updatedBy: {uuid: 87358a2f-5c79-4493-8b7d-70810b9c4bea,
firstname: Dennis, lastname: Kraaijeveld, fullName: Dennis Kraaijeveld, email: dfmkraaijeveld+1@gmail.com, photo: null, phoneNumber: null}, deletedAt: null, deletedBy: null, deleted: false,
anonymised: null, properties: [], groups: [], cardProperties: [education_requirements, base_salary, job_location, start_date], filledCardProperties: [null, null, null, null], tracking: [], direction:
null, relations: [], webpages: [{uuid: a5cb5338-06d2-46da-9416-fc44e44846c5, createdBy: {uuid: 87358a2f-5c79-4493-8b7d-70810b9c4bea, firstname: Dennis, lastname: Kraaijeveld, fullName: Dennis
Kraaijeveld, email: dfmkraaijeveld+1@gmail.com, photo: null, phoneNumber: null}, createdAt: 1702519717457, updatedBy: {uuid: 87358a2f-5c79-4493-8b7d-70810b9c4bea, firstname: Dennis, lastname:
Kraaijeveld, fullName: Dennis Kraaijeveld, email: dfmkraaije
## Regular Webpage Metatags
<title>Your Page Title Here</title>
<meta name="description" content="Your description of the page goes here.">
<link rel="canonical" href="https://www.yourwebsite.com/page-url" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
## Facebook and Linkedin both use OG
// Check if the collection has subcollections. We will only query for the metafield subcollection here.
const {collection: metaSubcollection} = await context.storefront.query(
METAFIELD_CHECK_QUERY,
{
variables: {
handle: collectionHandle,
},
},
);
const subCollectionIds =
import Ship from './ships';
// Grid config
let COLUMNS = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'];
let ROWS = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
// Lengths of battleships. For every length, create a ship. TODO: Rewrite this to one object to include cords and length in an to be created ship object.
const shipLengths = [1, 3]; // Set lengths of ships
const cords = [
import Card from './Components/cardComponent';
const todoProto = {
isCompleted() {
this.isCompleted = !this.isCompleted;
},
};
// Create new to-do tasks
const newTodo = (title, description, dueDate, priority, notes, category) => {
import named from 'vinyl-named';
import webpack from 'webpack-stream';
import browserSync from "browser-sync";
import del from 'del';
import imagemin from 'gulp-imagemin';
import postcss from 'gulp-postcss';
import sourcemaps from 'gulp-sourcemaps';
import autoprefixer from 'autoprefixer';
import tailwindcss from 'tailwindcss'
import { src, dest, watch, series, parallel } from 'gulp';