rime.co
,*.rime.co
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
rime.co
, *.rime.co
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Any GitHub wiki can be cloned by appending wiki.git
to the repo url, so the clone url for
the repo https://myorg/myrepo/
is: [email protected]:myorg/myrepo.wiki.git
(for ssh) or https://github.com/my/myrepo.wiki.git
(for https).
You make edits, and commit and push your changes, like any normal repo. This wiki repo
is distinct from any clone of the project repo (the repo without wiki.get
appended).
I hereby claim:
To claim this, I am signing this object:
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
import pygame | |
import numpy as np | |
from pprint import pprint | |
import time | |
import math | |
notes = { | |
'g3':196.00, | |
'gs3':207.65, | |
'a3':220.00, |
<?php | |
// https://rbrundritt.wordpress.com/2009/07/21/determining-best-map-view-for-an-array-of-locations/ | |
// Calculates the best map view for a list of locations for a map | |
// | |
// locations = List of location objects | |
// map_width = Map width in pixels | |
// map_height = Map height in pixels | |
// buffer = Width in pixels to use to create a buffer around the map. This is to keep pushpins from being cut off on the edge | |
// | |
// Returns a MapViewSpecification with the best map center point and zoom level for the given set of locations |
img{ | |
min-width: 100%; | |
height: auto; | |
} | |
.content{ | |
position: absolute; | |
top: 0; | |
left: 0; | |
bottom: 0; |
I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.
If you want to roll up all of these into a single jQuery plugin check out Sharrre
Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.