The Wayback Machine - https://web.archive.org/web/20210120081545/https://github.com/explore
Skip to content

Here's what's popular on GitHub today...

Game Off Highlights
Game Bytes

The theme for this year’s Game Off was ‘moonshot’ and the entries were out of this world! Fork and play some of the top-rated games.

Clojure logo
Popular topic
Clojure is a dynamic, general-purpose programming language.
App recommended by GitHub

BackHub

BackHub creates recurring backups of your repositories and metadata with daily snapshots.

Having a backup is essential in case of a disaster. However, most developers don't have one because it's a pain to write the script, set up and document the infrastructure and make sure it runs reliably every day.

With BackHub you don't have to worry about this. Set up reliable backups for your GitHub repositories in minutes and recover anytime in case of a disaster.

Trending repository
andygrove
andygrove commented Jul 25, 2020

Update the TPCH example to support query 6:

select
	sum(l_extendedprice * l_discount) as revenue
from
	lineitem
where
	l_shipdate >= date ':1'
	and l_shipdate < date ':1' + interval '1' year
	and l_discount between :2 - 0.01 and :2 + 0.01
	and l_quantity < :3;
Trending repository
Falci
Falci commented May 29, 2020

Is your feature request related to a problem? Please describe.
Problem: I'd like to dynamically import scripts as <script> tags.

Describe the solution you'd like
Proposal:

const useScript = ({ url, id, type = 'text/javascript', async = true }) => {
    const [ready, setReady] = React.useState(false);
    const [failed, setFailed] = React.useState(false);

    R
App recommended by GitHub

AppVeyor

Windows developers use AppVeyor to continuously run their tests and deploy apps to cloud or on-premise environments. AppVeyor CI can update the build status on your GitHub pull requests, upload build artifacts to project release and deploy successful builds. AppVeyor is not just a build tool, but it's the place of Windows CI knowledge accumulation - thanks to AppVeyor's vibrant community!

You can’t perform that action at this time.