Skip to content

Instantly share code, notes, and snippets.

View arschmitz's full-sized avatar

Alexander Schmitz arschmitz

View GitHub Profile
@arschmitz
arschmitz / uyghur-xinjiang-lamb-skewers.md
Created May 15, 2022 15:57
Uyghur Xinjiang Lamb Skewers (新疆烤串, chuar)

Uyghur Xinjiang Lamb Skewers (新疆烤串, chuar)

This recipe yields about 12 skewers, but the number changes depending on how big a skewer you make.

If you're hosting a party, prepare 1lbs (450 g) meat for 4 people serving as a main dish with other sides and appetizers, or 1lbs (450 g) meat for 6 people serving as an appetizer. For meat lovers, prepare up to 1/2lbs (220g) meat per person if the lamb skewer is the theme of the party (it is a thing in China).

INGREDIENTS

  • 1 pound (450 grams) lamb meat (lean fat ratio 7:3) (*See footnote 1)
  • 1/2 onion , sliced
  • 2 tablespoons whole cumin seeds (Optional)
version: '3.3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
facebook - 2224
twitter - 536
instagram - 306
lititz17543 - 163
pfestore - 105
google - 69
beermenus - 63
grubhub - 50
pinterest - 47
youtube - 41

What is a PWA

According to google a service worker is...

Progressive Web Apps are user experiences that have the reach of the web, and are:

  • Reliable - Load instantly and never show the downasaur, even in uncertain network conditions.
  • Fast - Respond quickly to user interactions with silky smooth animations and no janky scrolling.
  • Engaging - Feel like a natural app on the device, with an immersive user experience. This new level of quality allows Progressive Web Apps to earn a place on the user's home screen.
{{#leaflet-map class="background--map" zoom="8" lat=userLocation.latitude lng=userLocation.longititude}}
{{tile-layer url="http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png"}}
{{owm-layer "clouds" showLegend=true opacity=1}}
{{/leaflet-map}}
/*!
* Cropper v2.2.4
* https://github.com/fengyuanchen/cropper
*
* Copyright (c) 2014-2016 Fengyuan Chen and contributors
* Released under the MIT license
*
* Date: 2016-01-01T08:20:03.583Z
*/
.cropper-container {
changelog.Changelog.prototype.ticketUrl = function( id, ticketType ) {
if ( !ticketType ) {
ticketType = this.ticketTypes[0];
}
return this.ticketUrlTemplates[ ticketType ]
.replace( "{id}", id )
.replace( "{project}", id.split( "-" )[ 0 ] );
};
window.completedTests = [];
QUnit.start();
setTimeout( function() {
QUnit.done( function( status ) {
setTimeout( function () {
var returnValue = { tests: window.completedTests, status: status };
callback( returnValue );
}, 100 );
} );
}, 50 );
<?php
if ( !file_exists( "proxy" ) ) {
$filename = "sample.mp3";
file_put_contents( "proxy", "false" );
header( "Cache-Control: no-store, no-cache, must-revalidate, max-age=0" );
header( "Cache-Control: post-check=0, pre-check=0", false);
header( "Pragma: no-cache" );
header('Content-Type: audio/mpeg');
header('Content-Disposition: inline;filename="test.mp3"');
header('Content-length: '.filesize($filename));