Skip to content

Instantly share code, notes, and snippets.

View mistermark's full-sized avatar

Mark de Jong mistermark

View GitHub Profile
@mistermark
mistermark / clock.html
Created October 6, 2020 14:23 — forked from sam0737/clock.html
OBS Studio: A HTML page for showing current date and time in the video
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>A simple clock</title>
</head>
<body translate="no" >
@mistermark
mistermark / wp-flipswitch.php
Created August 10, 2015 18:41 — forked from anonymous/wp-flipswitch.php
Showing a grid of 2 items per row. Each row the image should flip sides, left to right.
//list terms in a given taxonomy (useful as a widget for twentyten)
$args = array(
'post_type' => 'staff',
'include' => $item_arr
);
$staff_query = get_posts($args);
$output .= '<div class="staff-grid">';
$i = 0;
$wrap_count = 2;