This file contains hidden or 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
| sudo cp -r /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/12.0\ \(16A5318d\) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/ |
This file contains hidden or 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
| // | |
| // UIView+BFRShimmer.h | |
| // BFRUtils | |
| // | |
| // Created by Jordan Morgan on 8/14/18. | |
| // Copyright © 2018 Buffer. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
This file contains hidden or 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
| # A Best in Class Checklist | |
| A boiled down checklist adapted from this [post](https://www.swiftjectivec.com/a-best-in-class-app/), created by @jordanmorgan10. | |
| > To use this, create a Github Issue in your own repo, and simply copy and paste this text. | |
| ## iOS Core Technology | |
| _Things any iOS app can benefit from_ | |
| - [ ] iCloud Sync | |
| - [ ] Focus Filter Support |
This file contains hidden or 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
| // | |
| // SSListItemMediaTableViewCell.m | |
| // Spend Stack | |
| // | |
| // Created by Jordan Morgan on 2/23/18. | |
| // Copyright © 2018 Jordan Morgan. All rights reserved. | |
| // | |
| #import "SSListItemMediaTableViewCell.h" | |
| #import "SSListItemImageView.h" |
This file contains hidden or 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
| // | |
| // SidebarSearchView.swift | |
| // | |
| // Created by Jordan Morgan on 6/30/21. | |
| // | |
| import SwiftUI | |
| struct SidebarSearchView: NSViewRepresentable { | |
| typealias NSViewType = NSSearchField |
This file contains hidden or 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 { createClient } from 'npm:@supabase/supabase-js@2'; | |
| // Initialize client... | |
| const supabase = createClient(Deno.env.get('SUPABASE_URL') ?? '', Deno.env.get('SUPABASE_SERVICE_ROLE_KEY') ?? ''); | |
| Deno.serve(async (req)=>{ | |
| // Only accept POST requests | |
| if (req.method !== 'POST') { | |
| return new Response('Method Not Allowed', { | |
| status: 405 | |
| }); | |
| } |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| { | |
| "contentTypes": [ | |
| { | |
| "sys": { | |
| "space": { | |
| "sys": { | |
| "type": "Link", | |
| "linkType": "Space", | |
| "id": "3k7cygmwfm7x" | |
| } |
OlderNewer