All public logs
Jump to navigation
Jump to search
Combined display of all available logs of PeformIQ Upgrade. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 07:21, 25 November 2024 PeterHarding talk contribs created page Category:Spatial Computing (Created page with "Spatial Computing links, notes and references...")
- 07:20, 25 November 2024 PeterHarding talk contribs created page Category:Lidar (Created page with "LIDAR related links, notes and references...")
- 09:27, 24 November 2024 PeterHarding talk contribs created page Apple RoomPlan Demo App (Created page with "= The RoomPlan Example App = This demo app appeared first in the WWDC22 session - [https://developer.apple.com/wwdc22/10127 10127: Create parametric 3D scans with RoomPlan] It has seem some enhancement since then. WWDC23 session [https://developer.apple.com/wwdc22/10192 10192: Explore enhancements to RoomPlan] = Doco = * https://developer.apple.com/documentation/RoomPlan * https://developer.apple.com/documentation/roomplan/scanning-the-rooms-of-a-single-structure [...")
- 09:20, 24 November 2024 PeterHarding talk contribs created page Category:Technology (Created page with "Technology links, notes and references...")
- 09:20, 24 November 2024 PeterHarding talk contribs created page Category:VR (Created page with "Virtual Reality links, notes and references...")
- 09:20, 24 November 2024 PeterHarding talk contribs created page Category:AR (Created page with "Augmented Reality links, notes and references...")
- 09:19, 24 November 2024 PeterHarding talk contribs created page Category:VisionPro (Created page with "VisionPro links, notes and references...")
- 09:19, 24 November 2024 PeterHarding talk contribs created page Apple Vision Pro Notes (Created page with "= Links = * https://en.wikipedia.org/wiki/Apple_Vision_Pro = Apple Documentation = Sources of information provided by Apple * Xcode Documentation * Developer App on macOS * ChatGPT Category:Apple Category:VisionPro Category:AR Category:VR Category:Technology")
- 12:46, 31 July 2024 PeterHarding talk contribs created page OctoKit (Created page with "=GitHub Support= * https://github.com/octokit * https://octokitpy.readthedocs.io/en/latest/ Category:GitHub Category:Python")
- 09:59, 31 July 2024 PeterHarding talk contribs created page Swift UI - Using Padding (Created page with "=Padding= <pre> .padding() </pre> <pre> .padding(.horizontal, 50) </pre> Category:SwiftUI Category:Examples")
- 09:24, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Using Sliders (Created page with "=Using Sliders = See - https://developer.apple.com/documentation/swiftui/slider <pre> Slider(value: $bottomTrailing, in: 0...200, step: 5, minimumValueLabel: Text("0"), maximumValueLabel: Text("200")) {}.padding() </pre> Category:SwiftUI Category:Examples")
- 09:22, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Using Labels (Created page with "=SwiftUI Labels= See - https://developer.apple.com/documentation/swiftui/label <pre> Label("Lightning", systemImage: "bolt.fill") </pre> <pre> Label("Lightning", systemImage: "bolt.fill") .labelStyle(.titleOnly) </pre> Label Styles - .titleOnly, .iconOnly and .titleAndIcon <pre> struct RedBorderedLabelStyle: LabelStyle { func makeBody(configuration: Configuration) -> some View { Label(configuration) .border(Color.red) } } </pre> <pre...")
- 08:48, 31 July 2024 PeterHarding talk contribs moved page SwiftUI - Useful Links to SwiftUI - Useful References without leaving a redirect
- 08:48, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Useful Links (Created page with " * https://codingwithrashid.com/how-to-create-capsule-shape-in-swiftui/ Category:SwiftUI")
- 08:45, 31 July 2024 PeterHarding talk contribs moved page SwiftUI - Clickable HStack to SwiftUI - Applying a Tap Gesture to an HStack without leaving a redirect
- 08:45, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Clickable HStack (Created page with "= Implementing a Tap Gesture on an HStack = <pre> struct ContentView: View { var body: some View { HStack { Image(systemName: "square.fill") Text("Tap me...") } .contentShape(Rectangle()) .onTapGesture { print("HStack tapped...") } } } </pre> Category:SwiftUI Category:Examples")
- 08:42, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Working with Images (Created page with "=Some Examples= == Basics == <pre> Image(systemName: "globe.fill") .foregroundColor(.green) </pre> == Colour Multiplication == <pre> Image("lion") .colorMultiply(.yellow) </pre> == Applying Colour Filters == <pre> Image("lion") .hueRotation(.degrees(30)) .saturation(0.6) .contrast(2) </pre> == Next == <pre> </pre> <pre> </pre> Category:SwiftUI Category:Examples")
- 08:38, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Generic parameter ‘Content’ could not be inferred (Created page with " = Generic Parameter ‘Content’ Could Not Be Inferred = * https://forums.swift.org/t/why-generic-parameter-content-could-not-be-inferred-its-just-one-expression-very-simple/35923/1 Category:SwiftUI Category:Examples")
- 08:34, 31 July 2024 PeterHarding talk contribs created page SwiftUI - Customize TextField Border with border Modifier (Created page with " =Customize TextField Border with border Modifier= <pre> struct ContentView: View { @State private var text = "" var body: some View { TextField("Enter text", text: $text) .padding(10) .border(Color.blue, width: 2) .padding() } } </pre> Category:SwiftUI")
- 08:42, 18 December 2023 PeterHarding talk contribs created page The Use of slots in Python Classes (Created page with "=The Use of __slots__ in a Python Class In Python, the __slots__ attribute is a mechanism that allows you to explicitly declare a set of attributes for a class. This declaration restricts the creation of new attributes in instances of that class, which can help in reducing memory overhead and improving attribute access speed. Here's a basic overview of how __slots__ works: # Memory Optimization: When you create an instance of a class, Python creates a dictionary to st...")
- 09:43, 20 May 2023 PeterHarding talk contribs created page Category:VSCode (Created page with "VSCode links, notes and references...")
- 09:40, 20 May 2023 PeterHarding talk contribs created page VS Code (Created page with "=Links= * https://vscode.com/ Category:VSCode")
- 09:39, 20 May 2023 PeterHarding talk contribs created page Category:Eclipse (Created page with "Eclipse IDE links, notes and references...")
- 09:22, 20 May 2023 PeterHarding talk contribs created page Category:Spring Boot (Created page with "Spring Boot links, notes and references...")
- 09:17, 20 May 2023 PeterHarding talk contribs created page Spring Boot (Created page with "=Links= * https://spring.io/ * https://spring.io/projects/spring-boot * https://www.ibm.com/topics/java-spring-boot * https://azure.microsoft.com/en-us/resources/cloud-computing-dictionary/what-is-java-spring-boot/ * https://www.baeldung.com/spring-boot-testing * * * category:Spring Boot category:Java")