You can’t clone a Bitbucket repo using GithHub Desktop directly. Instead you would have to:
- Clone the Bitbucket repo locally via command line.
- Add the cloned repository to your GitHub Desktop app.
xquery version "3.0"; | |
(:~ | |
: Anonymous function recursion in XQuery | |
: | |
: @author Adam Retter <[email protected]> | |
:) | |
let $factorialHelper := function($f, $x) { | |
if($x eq 0) then |
Author | Title | ISBN | Binding | Year Published | |
---|---|---|---|---|---|
Jeannette Walls | The Glass Castle | 074324754X | Paperback | 2006 | |
James Surowiecki | The Wisdom of Crowds | 9780385503860 | Paperback | 2005 | |
Lawrence Lessig | The Future of Ideas | 9780375505782 | Paperback | 2002 | |
Larry Bossidy, Ram Charan, Charles Burck | Execution | 9780609610572 | Hardcover | 2002 | |
Kurt Vonnegut | Slaughterhouse-Five | 9780791059258 | Paperback | 1999 | |
Haruki Murakami | After the Quake | 9780375413902 | Paperback | 2003 | |
Nassim Nicholas Taleb | Fooled by Randomness | 9781587991905 | Paperback | 2005 | |
Robert A. Dahl | On Democracy (Yale Nota Bene) | 9780300194463 | Paperback | 2000 | |
Daniel Defoe | A Journal of the Plague Year | 9780140430158 | Paperback | 2001 |
import datetime | |
import logging | |
import socket | |
import ssl | |
YOUR_DOMAIN = 'serverlesscode.com' | |
WARNING_BUFFER = 14 | |
logger = logging.getLogger() | |
logger.setLevel(logging.INFO) |
// | |
// Phoneme.swift | |
import Foundation | |
class Phoneme { | |
private var isAVowelPhoneme = false; | |
private var phoneme = ""; |
#!/bin/bash | |
# | |
# An example hook script to verify what is about to be committed. | |
# Called by "git commit" with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. | |
# | |
# To enable this hook, rename this file to "pre-commit". | |
if git rev-parse --verify HEAD >/dev/null 2>&1 |
You can’t clone a Bitbucket repo using GithHub Desktop directly. Instead you would have to:
<?xml version="1.0"?> | |
<!-- | |
dirlist.xslt - transform nginx's into lighttpd look-alike dirlistings | |
I'm currently switching over completely from lighttpd to nginx. If you come | |
up with a prettier stylesheet or other improvements, please tell me :) | |
--> | |
<!-- | |
Copyright (c) 2016 by Moritz Wilhelmy <[email protected]> |
module namespace page = 'http://library.vanderbilt.edu/dpla'; | |
(: Just a quick example of searching the DPLA API | |
and returning a simple webpage. :) | |
declare | |
%rest:path("dpla/{$search}") | |
%rest:query-param("key", "{$key}") | |
%output:method("html") | |
function page:html($search as xs:string, $key as xs:string) |
(:~ | |
: Anonymous inline function with asynchronous evaluation in BaseX 8.4.1 beta | |
: | |
: @param $query Asynchronously evaluated query | |
: @return XQuery expression, followed by result of async HTTP request. | |
: | |
: BaseX Async Module: | |
: http://docs.basex.org/wiki/Async_Module | |
: | |
: Dimitre Novatchev on recursion with anonymous inline functions in XPath 3.0: |
xquery version "3.0"; | |
(:~ | |
This module contains helper functions for dealing with URLs. | |
When receiving webmention the post parameter 'source' is a URL pointing to the | |
origin of the mention. | |
Before we get and store a sanitized version of an HTML document the url links to | |
we want to able to |