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
@import url(https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css);
.menu ul li a:not(.inline_menu_link) {color: #fff !important;}
#p_thread_view_container > .p-threads_view { background-color: #222; }
#p_thread_view_container > .p-threads_view .p-threads_view_header__permalink { color: #e6e6e6 !important; }
#p_thread_view_container > .p-threads_view .p-threads_view__default_background { background-color: #222; }

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

cdnjs April 2019 Usage Stats

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

Key Highlights

  • cdnjs served over 160 billion requests in April 2019.
  • During the month we used over 2.6 petabytes of bandwidth to serve these requests.
  • That is over 89 terabytes of data and 5 billion requests each day.

Library Highlights

  • jQuery (3.3.1) was once again the top library with over 6 billion requests for the single file.
"""
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)
[...]