Movatterモバイル変換


[0]ホーム

URL:


Skip to content
Search Gists
Sign in Sign up

Instantly share code, notes, and snippets.

View jimwhimpey's full-sized avatar

Jim Whimpey jimwhimpey

View GitHub Profile
self.addEventListener('fetch',(e)=>{
if(assetManifest.includes(e.request.url){
e.respondWith(
caches
.open(cacheKey)
.then(cache=>cache.match(e.request))
.then(response=>{
if(response)returnresponse;
returnfetch(e.request);
});
@jimwhimpey
jimwhimpey /service-worker.js
Last activeNovember 10, 2022 22:26
An example of our cachable asset manifest that gets inlined into the top of our service worker file during by the build
self.__serviceWorkerManifest=[
// This is the HTML file that we initial load, we normalize
// any Slack client URL to request this same file
{
url:"/boot/client.html",
hash:"52de82b6a380a284b31a6e7be0999050"
// Of course our JS and CSS assets are cached
},{
url:"https://a.slack-edge.com/bv1-6-9b2646d/client-lazy-components.2ce886f.cache-gantry-1565714987.min.js",
hash:"2ce886f1b462f7437012"
@jimwhimpey
jimwhimpey /support.js
Last activeApril 27, 2016 00:28
Methods currently supported in Flickr's JavaScript SDK
flickr.request().media().post()// Uploading media
flickr.request().media(mediaID).get()// Fetching media
flickr.request().media().search("puppies").get()// Searching media
flickr.request().people(personID).media().get()// Fetching photostreams
flickr.request().people(personID).favorites().media().get()// Fetching favorites
flickr.request().people(personID).albums().get()// Fetching albums
flickr.request().media(mediaID).context(5).album(albumID).get()// Fetching album context
flickr.request().media(mediaID).context(5).photolist().get()// Fetching photolist context
flickr.request().media(mediaID).context(5).photosOf().get()// Fetching photos of context
flickr.request().media(mediaID).context(5).groupPool().get()// Fetching group pool context
@jimwhimpey
jimwhimpey /curl.sh
CreatedApril 26, 2016 23:26
Flickr API cURL request
curl'https://api.flickr.com/services/rest/' \
-d name=testing \
-d method=flickr.test.echo \
-d api_key=112d5d9e13e0c43e109233ff391f96ba
@jimwhimpey
jimwhimpey /photostream.js
CreatedApril 26, 2016 23:25
Flickr SDK example photostream request
flickr
.request()
.people("40575690@N00")// ID or path alias
.media()
.get()
.then(function(response){
// An array of media objects belonging to the person
},function(err){
// Any errors returned
});
@jimwhimpey
jimwhimpey /setup.js
CreatedApril 26, 2016 23:09
Setting up the Flickr SDK
varFlickr=require('flickr');
varflickr=newFlickr({
"apiKey":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"apiSecret":"xxxxxxxxxxxxxxxx",
"accessToken":"xxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx",
"accessTokenSecret":"xxxxxxxxxxxxxxxx"
});
@jimwhimpey
jimwhimpey /example-output.js
CreatedApril 4, 2016 19:11
Example of justified-layout output
{
"containerHeight":1269,
"boxes":[
{
"aspectRatio":0.5,
"top":10,
"width":170,
"height":340,
"left":10
},
@jimwhimpey
jimwhimpey /input-example.js
CreatedApril 4, 2016 18:43
Example of justified-layout input
[{
width:400,
height:300
},
{
width:300,
height:300
},
{
width:250,

Header 2

Header 3 ### (Hashes on right are optional)

Header 4

Header 5

sfasdfas

Markdown plus h2 with a custom ID ## {#id-goes-here}

Link back to H2

CREATETABLE `products` (
`id`int(10) unsignedNOT NULL AUTO_INCREMENT,
`merchant_id`int(11) DEFAULTNULL,
`merchant_name`text,
`merchant_product_id`text,
`name`text,
`url_merchant`text,
`url_affiliate`text,
`description`text,
`price_gbp` float DEFAULTNULL,
NewerOlder

[8]ページ先頭

©2009-2025 Movatter.jp