Skip to content

Instantly share code, notes, and snippets.

View tom-ludwig's full-sized avatar
:octocat:
114% Productivity

Tom Ludwig tom-ludwig

:octocat:
114% Productivity
View GitHub Profile
@tom-ludwig
tom-ludwig / Webview.swift
Created August 24, 2021 18:47 — forked from joshbetz/Webview.swift
A simple SwiftUI Webview
import SwiftUI
import WebKit
struct ContentView: View {
var body: some View {
Webview(url: URL(string: "https://google.com")!)
}
}
struct Webview: UIViewRepresentable {
@tom-ludwig
tom-ludwig / rust-xp-01-s3.rs
Created October 11, 2024 13:18 — forked from jeremychone/rust-xp-01-s3.rs
Rust Quick Example to connect to S3 and Minio bucket server
#![allow(unused)] // silence unused warnings while exploring (to comment out)
use std::{error::Error, str};
use s3::bucket::Bucket;
use s3::creds::Credentials;
use s3::region::Region;
use s3::BucketConfiguration;
// Youtube Walkthrough - https://youtu.be/uQKBW8ZgYB8