Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Plugin Name: List of Random Posts Widget
* Description: Displays random post titles with links. Number of posts can be set between 1 and 10.
* Version: 1.2
* Author: Jeff Milner
* Author URI: https://jeffmilner.com
* Plugin URI: https://jeffmilner.com/index.php/2025/05/11/list-of-random-posts-widget/
*/
@jeffmilner
jeffmilner / Friend_FaceApp.swift
Last active April 14, 2025 03:24
Friend Face Challenge App; Friend_FaceApp.swift made for Day 60 - 100 Days of SwiftUI
//
// Friend_FaceApp.swift
// Friend Face
//
// Created by Jeff Milner on 2025-04-11.
//
import SwiftUI
@main
@jeffmilner
jeffmilner / User.swift
Last active April 14, 2025 03:25
Friend Face Challenge App; User.swift made for Day 60 - 100 Days of SwiftUI
//
// User.swift
// Friend Face
//
// Created by Jeff Milner on 2025-04-11.
//
import Foundation
struct User: Codable, Identifiable {
@jeffmilner
jeffmilner / UserDetailView.swift
Last active April 14, 2025 03:24
Friend Face Challenge App; UserDetailView.swift made for Day 60 - 100 Days of SwiftUI
//
// UserDetailView.swift
// Friend Face
//
// Created by Jeff Milner on 2025-04-11.
//
import SwiftUI
struct UserDetailView: View {
@jeffmilner
jeffmilner / ContentView.swift
Last active April 14, 2025 03:25
Friend Face Challenge App; ContentView.swift made for Day 60 - 100 Days of SwiftUI
//
// ContentView.swift
// FriendFace
//
// Created by Jeff Milner on 2025-04-11.
//
import SwiftUI
struct ContentView: View {