Name |
---|
https://github.com/autopkg/recipes.git |
https://github.com/autopkg/keeleysam-recipes.git |
https://github.com/autopkg/hansen-m-recipes.git |
https://github.com/autopkg/scriptingosx-recipes.git |
function createExcludedMap(excludes) { | |
return excludes.reduce((map, pair) => { | |
const values = map.get(pair.k); | |
if (values) { | |
values.push(pair.v); | |
return map.set(pair.k, values); | |
} | |
return map.set(pair.k, [pair.v]); |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Facebook DOM Traversal</title> | |
</head> | |
<body> | |
<div id="rootA"> | |
<div> |
/* | |
Inputs | |
------- | |
(1): Empty array | |
-- | |
[] | |
=> [] | |
(2): Flattened already | |
-- |
- emotion.sh/docs/introduction
- github.com/emotion-js/emotion
- 9.1k stars
- 216 open issues
- 80kb bundle size
- Comparison with styled-components
- Companies that use emotion
// Write debounce, then debounce a scroll event | |
function onScrollFunction(arg) { | |
console.log('scrolling ' + arg); | |
} | |
function debounce(fn, wait) { | |
let timeout; | |
return function(...args) { |
Privacy Policy
Victor Roussekov built the Spaceship Expo app as a Free app. This SERVICE is provided by Victor Roussekov at no cost and is intended for use as is.
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Spaceship Expo unless otherwise defined in this Privacy Policy.
# ## Introduction | |
# | |
# This file installs many apps, including office suites, multimedia suites, | |
# programming langauges, unix utilities, sysadmin tools, and fonts. | |
# | |
# This file is organized in meaningful sections because we want to | |
# make it easy for you to pick and choose sections that you want. | |
# | |
# There are many TODO items in this file. If you want, help us | |
# describe these and organize them into the relevant sections. |
from datetime import datetime | |
import requests | |
from requests.auth import HTTPBasicAuth | |
import pandas as pd | |
from airflow import DAG | |
from airflow.operators.python import PythonOperator | |
from airflow.models.variable import Variable | |
from airflow.providers.google.cloud.transfers.local_to_gcs import ( |