-
Getting Started Introduction
-
JavaScript Learn JavaScript: Introduction Cheatsheet | Codecademy Learn ES2015 · Babel
-
React Fundamentals
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 (c) Microsoft Corporation. | |
// Licensed under the MIT License. | |
import React, { useEffect, useMemo, useRef, useState } from "react"; | |
import { mergeStyles, IStyle } from "@fluentui/merge-styles"; | |
/** | |
* @private | |
*/ |
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
package main | |
import ( | |
"embed" | |
"io/fs" | |
"net/http" | |
) | |
//go:embed public | |
var content embed.FS |
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
# Docker & Docker Compose will need to be installed on the machine | |
# curl -fsSL https://get.docker.com -o /tmp/get-docker.sh | |
# sh /tmp/get-docker.sh | |
# curl -L "https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
# chmod 755 /usr/local/bin/docker-compose | |
# sudo systemctl enable docker | |
# sudo usermod -aG docker $USER | |
# sudo chmod 666 /var/run/docker.sock |
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
package main | |
import ( | |
"fmt" | |
"net/http" | |
"os" | |
"github.com/labstack/echo/v4" | |
"github.com/labstack/echo/v4/middleware" | |
"github.com/sirupsen/logrus" |
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
package main | |
import ( | |
"fmt" | |
"time" | |
"github.com/piquette/finance-go/quote" | |
) | |
func main() { |
Codeables and Generics are very powerful parts of Swift. They are pretty, simple, and very powerful!
If you aren't familiar with them, I encourage you to take a look! You can find detailed information about Generics and Codable here. [Generics]https://docs.swift.org/swift-book/LanguageGuide/Generics.html and [Codable]https://developer.apple.com/documentation/swift/codable
Take this example: you have to implement an API in your app. No big deal, right? Almost anybody can do that! Let me add the pod for Alamo... no, we're not taking that route, we're going to implement everything ourselves!
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
var supabase = SupabaseClient(supabaseUrl: "", supabaseKey: "") | |
supabase.auth.signIn(email: "[email protected]", password: "secret") { result in | |
switch result { | |
case let .success(session): | |
print(session) | |
case let .failure(error): | |
print(error.localizedDescription) | |
} | |
} |
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
func getTodos() -> Observable<Any> { | |
// If No Internet Connection Throws error | |
// if Reachability()!.connection == .none { | |
// // !!!! return data form cache here | |
// return Observable.error(RESTError(message: "No internet connection.", type: .warning)) | |
// } | |
return Observable.create { (observer) -> Disposable in |
NewerOlder