This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use the todoist API to get tasks from the current day | |
import todoist | |
from datetime import datetime | |
# Log user in; switch to OAuth eventually... | |
api = todoist.TodoistAPI() | |
def get_todays_tasks(email, password): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled, { css } from 'emotion/react' | |
import { space, width, fontSize, color, responsiveStyle } from 'styled-system' | |
export const display = responsiveStyle('display') | |
export const flex = responsiveStyle('flex') | |
export const order = responsiveStyle('order') | |
const wrap = responsiveStyle('flex-wrap', 'wrap', 'wrap') | |
const direction = responsiveStyle('flexDirection', 'direction') | |
const align = responsiveStyle('alignItems', 'align') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>PouchDB Replication</title> | |
</head> | |
<body> | |
<script src="https://unpkg.com/[email protected]/dist/pouchdb.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/pouchdb.memory.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xs, { Stream } from 'xstream'; | |
import { initModule, MyMsg } from './module_injecting'; | |
// Stuff | |
init( | |
xs.create({ | |
start: function(listener) { | |
someSource$.subscribe(msg => { | |
// do stuff with someSource$ to get it in shape |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
-- Using let..in, newWhatever and inline functions | |
import Dict exposing (Dict) | |
type alias Model = | |
{ something : String | |
, somethingElse : String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Three operations (loops for simplicity). | |
// We want to time the first two separately and all three of them together. | |
// Ideally, the ordering of starting the timers would not matter. | |
// This case fails because the timer for the first two loops is started first | |
var nanotiming = require('nanotiming') | |
try { | |
var performance = require('perf_hooks').performance | |
var timeFirstTwo = nanotiming('my-loop') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.scroll-canvas--dashboard { | |
background: linear-gradient(180deg, #f00000, #f00000 16.67%, #ff8000 16.67%, #ff8000 33.33%, #ffff00 33.33%, #ffff00 50%, #007940 50%, #007940 66.67%, #4040ff 66.67%, #4040ff 83.33%, #a000c0 83.33%, #a000c0) fixed; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unpublished* | |
publish -> Published | |
Published | |
unpublish -> Unpublished | |
event exists -> Event | |
no event exists -> No Event | |
Placeholder* | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
// Your code here... | |
function addGlobalStyle(css) { | |
var head, style; | |
head = document.getElementsByTagName('head')[0]; | |
if (!head) { return; } | |
style = document.createElement('style'); | |
style.type = 'text/css'; |
OlderNewer