title: Automating optimisations with Gulp date: 2015-03-18T10:06:55+00:00 permalink: /gulp/advanced-tasks excerpt: "Gulp is a powerful task runner, that when used correctly, can vastly improve your workflow." categories:
- gulp tags:
- gulp
- npm
| import { Link, Stack } from "expo-router"; | |
| import { StyleSheet, Text, View } from "react-native"; | |
| export default function NotFoundScreen() { | |
| return ( | |
| <> | |
| <Stack.Screen options={{ title: "Oops!" }} /> | |
| <View style={styles.container}> | |
| <Text style={styles.title}>This screen doesn't exist.</Text> |
| { | |
| "expo": { | |
| "name": "expo-app", | |
| "slug": "expo-app", | |
| "version": "1.0.0", | |
| "orientation": "portrait", | |
| "icon": "./assets/images/icon.png", | |
| "scheme": "myapp", | |
| "userInterfaceStyle": "automatic", | |
| "newArchEnabled": true, |
| { | |
| "expo": { | |
| "name": "expo-app", | |
| "slug": "expo-app", | |
| "version": "1.0.0", | |
| "orientation": "portrait", | |
| "icon": "./assets/images/icon.png", | |
| "scheme": "myapp", | |
| "userInterfaceStyle": "automatic", | |
| "newArchEnabled": true, |
| {"lastUpload":"2017-10-19T09:23:32.280Z","extensionVersion":"v2.8.3"} |
| // Take a photo on load | |
| takePhoto(); | |
| setInterval(() => { | |
| // Take a photo every X minutes, defined in the ENV | |
| takePhoto(); | |
| }, 1000 * 60 * parseInt(process.env.PHOTO_INTERVAL, 10)); |
| FROM resin/%%RESIN_MACHINE_NAME%%-node:slim | |
| # switch on systemd init system in container | |
| ENV INITSYSTEM on | |
| COPY . /usr/src/app | |
| WORKDIR /usr/src/app | |
| # Copies the package.json first for better caching on later pushes | |
| COPY package.json package.json |
title: Automating optimisations with Gulp date: 2015-03-18T10:06:55+00:00 permalink: /gulp/advanced-tasks excerpt: "Gulp is a powerful task runner, that when used correctly, can vastly improve your workflow." categories:
I hereby claim:
To claim this, I am signing this object:
| <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script><div id="dc-vadio-wrapper" class="dc-video-on"></div> | |
| <script id="jsbin-javascript"> | |
| // Define base url | |
| var url = "https://www.vadio.com:443/embed.php?id=dc-vadio-wrapper&stream="; | |
| // Get current hour | |
| var hour = new Date().getHours; | |
| // Select the appropriate stream | |
| var stream; |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |