Skip to content

Instantly share code, notes, and snippets.

# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
We can't make this file beautiful and searchable because it's too large.
dateRep,day,month,year,cases,deaths,countriesAndTerritories,geoId,countryterritoryCode,popData2019,continentExp,Cumulative_number_for_14_days_of_COVID-19_cases_per_100000
27/10/2020,27,10,2020,199,8,Afghanistan,AF,AFG,38041757,Asia,2.90207416
26/10/2020,26,10,2020,65,3,Afghanistan,AF,AFG,38041757,Asia,2.71806583
25/10/2020,25,10,2020,81,4,Afghanistan,AF,AFG,38041757,Asia,2.79955524
24/10/2020,24,10,2020,61,2,Afghanistan,AF,AFG,38041757,Asia,2.58663132
23/10/2020,23,10,2020,116,4,Afghanistan,AF,AFG,38041757,Asia,2.45256811
22/10/2020,22,10,2020,135,2,Afghanistan,AF,AFG,38041757,Asia,2.35004918
21/10/2020,21,10,2020,88,2,Afghanistan,AF,AFG,38041757,Asia,2.17392693
20/10/2020,20,10,2020,87,5,Afghanistan,AF,AFG,38041757,Asia,2.10558098
19/10/2020,19,10,2020,59,4,Afghanistan,AF,AFG,38041757,Asia,2.25804502
code city country lat lon
ZNZ ZANZIBAR TANZANIA -6.13 39.31
TYO TOKYO JAPAN 35.68 139.76
AKL AUCKLAND NEW ZEALAND -36.85 174.78
BKK BANGKOK THAILAND 13.75 100.48
DEL DELHI INDIA 29.01 77.38
SIN SINGAPORE SINGAPOR 1.36 103.75
BSB BRASILIA BRAZIL -15.67 -47.43
RIO RIO DE JANEIRO BRAZIL -22.90 -43.24
YTO TORONTO CANADA 43.64 -79.40
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<template>
<base-dropdown
:name="name"
:dropdown-ref="name"
:active="active"
dropdown-class="left-0 top-1 h5 overflow-y-scroll">
<span slot="label" class="fw6 sans-serif">{{ label }} <i class="ml2 zmdi zmdi-caret-down"></i></span>
<div slot="options">
<ul class="list ma0 pl0">
<li @click="setParentTeam('')" class="pointer hover-bg-black-05 bb b--black-10 pa3 w5">All MLB</li>
@nonlocalize
nonlocalize / DiscogsTest.php
Created September 28, 2015 14:41
First foray into TDD with some very basic tests for a custom CMS/website I'm making for a client.
<?php
use App\guyj\Discogs\Discogs;
class DiscogsTest extends \TestCase
{
public function setUp()
{
$this->discogs = new Discogs('guy-j-dizzy-moments-diaspora');
}
object(HelloSign\SignatureRequest)[619]
protected 'resource_type' => string 'signature_request' (length=17)
protected 'signature_request_id' => null
protected 'requester_email_address' => null
protected 'is_complete' => boolean false
protected 'has_error' => boolean false
protected 'files_url' => null
protected 'signing_url' => null
protected 'details_url' => null
protected 'cc_email_addresses' =>
<?php
use YourProject\Services\Mailers\UserMailer;
class UsersController extends BaseController
{
protected $mail;
function __construct(UserMailer $mail)
{
<?php
namespace YourProject\Services\Mailers;
class UserMailer extends Mailer
{
protected $user;
function __construct()
{
<?php
namespace YourProject\Services\Mailers;
abstract class Mailer
{
public function emailTo($person, $view, $data, $subject)
{
\Mail::send($view, $data, function($message) use($person, $subject)
{