Skip to content

Instantly share code, notes, and snippets.

View MattIPv4's full-sized avatar
:shipit:
Commits go brrrr

Matt Cowley MattIPv4

:shipit:
Commits go brrrr
View GitHub Profile

cdnjs March 2019 Usage Stats

Information provided directly by Cloudflare for the cdnjs.cloudflare.com domain. ⛅️

Key Highlights

  • cdnjs served just under 160 billion requests in March.
  • During the month we used over 2.5 petabytes of bandwidth.
  • That is over 5 billion requests and 83 terabytes of data per day.

Library Highlights

  • jQuery (3.3.1) was the top library with nearly 4 billion requests for the single file.

cdnjs.com February 2019 Request Stats

Total number of requests

1,415,579,066 at a 1% sample. Roughly 141 billion for the month of February 2019. 🎉

Recalculated to be 30 days, this would put us at 1 billion requests more than last month. 🙌

Top 100 breakdown

Reminder: This breakdown is at a 1% sample

According to all known laws of aviation, there is no way a bee should be able to fly.
Its wings are too small to get its fat little body off the ground.
The bee, of course, flies anyway because bees don't care what humans think is impossible.
Yellow, black. Yellow, black. Yellow, black. Yellow, black.
Ooh, black and yellow!
Let's shake it up a little.
Barry! Breakfast is ready!
Coming!
Hang on a second.
Hello?
"""
Write a program which is going to simulate this dice game using a linked list.
"""
from random import randint
from typing import List
class LinkedListNode:
def __init__(self, value=None):
"""
========================
Testing Part 1
========================
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
[...]