// Enter code snippet here
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
https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/ | |
https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/#adding-your-ssh-key-to-the-ssh-agent |
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
// | |
// Copyright 2012 Square Inc. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software |
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
List of tabs I had open at the end of the video: | |
https://otter.ai/conversation/222KSWVHZ6GQNL4O/Z3JvdXA%253D?a=MjEyNDU%253D | |
https://www.youtube.com/upload | |
https://www.youtube.com/watch?v=VBL7e3NtPTI&feature=youtu.be | |
https://www.youtube.com/user/nobani88/videos | |
https://www.youtube.com/watch?v=4D7VB_t0uLE | |
https://www.youtube.com/watch?v=3Sz2-6RNkjY | |
https://www.youtube.com/watch?v=jey_CzIOfYE | |
https://www.youtube.com/watch?v=xRJ91lVQyRA |
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
i: | |
Ayyy yo. | |
Wanna do a cool experiment? | |
Stephen Sharikov: | |
Perfect timing | |
What’s up? I’ve got a bit of time | |
i: | |
Glad to hear it | |
Okay |
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
* Something about glob and double-convert and the build failing on Xcode | |
https://github.com/facebook/react-native/issues/21168#issuecomment-422431294 |
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 React from 'react' | |
import { FlatList, View, Share } from 'react-native' | |
import firestore from '@react-native-firebase/firestore' | |
import PostItem from './PostItem' | |
import ShowNewPostsButton from './ShowNewPostsButton' | |
export default class PostsList extends React.PureComponent { | |
// Staged posts are posts that have been added remotely but not shown yet. | |
state = { posts: {}, staged: {} } |
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 React, { useState, useEffect } from 'react' | |
import { | |
SafeAreaView, | |
View, | |
FlatList, | |
StyleSheet, | |
Text, | |
Dimensions | |
} from 'react-native' |
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 Foundation | |
import Alamofire | |
// I __think__ this actually does work, I was just providing an inavlid token. | |
// I've now used the upload-video.py script below that generates a token in the folder you run the script (as long as you've got credentials setup in that directory) | |
// Using that token, this script works. Now I just need to figure out how to add the name, description, tags, etc. | |
func postVideoToYouTube(callback: (Bool) -> Void){ | |
let url = "https://www.googleapis.com/upload/youtube/v3/videos?part=id" |