User contributions for PeterHarding
Jump to navigation
Jump to search
- 12:46, 31 July 2024 diff hist +134 N OctoKit Created page with "=GitHub Support= * https://github.com/octokit * https://octokitpy.readthedocs.io/en/latest/ Category:GitHub Category:Python" current
- 10:00, 31 July 2024 diff hist +379 SwiftUI - Using Sliders current
- 09:59, 31 July 2024 diff hist +120 N Swift UI - Using Padding Created page with "=Padding= <pre> .padding() </pre> <pre> .padding(.horizontal, 50) </pre> Category:SwiftUI Category:Examples" current
- 09:24, 31 July 2024 diff hist +267 N 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 diff hist +1,052 N 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..." current
- 08:55, 31 July 2024 diff hist +126 SwiftUI - Useful References current
- 08:54, 31 July 2024 diff hist +201 SwiftUI - Useful References
- 08:51, 31 July 2024 diff hist +81 SwiftUI - Useful References
- 08:51, 31 July 2024 diff hist +90 SwiftUI - Useful References
- 08:50, 31 July 2024 diff hist +70 SwiftUI - Useful References
- 08:49, 31 July 2024 diff hist +77 SwiftUI - Useful References
- 08:48, 31 July 2024 diff hist 0 m SwiftUI - Useful References PeterHarding moved page SwiftUI - Useful Links to SwiftUI - Useful References without leaving a redirect
- 08:48, 31 July 2024 diff hist +7 SwiftUI - Useful References
- 08:48, 31 July 2024 diff hist +95 N SwiftUI - Useful References Created page with " * https://codingwithrashid.com/how-to-create-capsule-shape-in-swiftui/ Category:SwiftUI"
- 08:45, 31 July 2024 diff hist 0 m SwiftUI - Applying a Tap Gesture to an HStack PeterHarding moved page SwiftUI - Clickable HStack to SwiftUI - Applying a Tap Gesture to an HStack without leaving a redirect current
- 08:45, 31 July 2024 diff hist +373 N SwiftUI - Applying a Tap Gesture to an 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 diff hist +404 N 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" current
- 08:38, 31 July 2024 diff hist +229 N 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" current
- 08:35, 31 July 2024 diff hist +22 SwiftUI - Customize TextField Border with border Modifier current
- 08:34, 31 July 2024 diff hist +317 N 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:43, 18 December 2023 diff hist −30 The Use of slots in Python Classes current
- 08:43, 18 December 2023 diff hist +7 The Use of slots in Python Classes
- 08:42, 18 December 2023 diff hist +2,177 N 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 diff hist +37 N Category:VSCode Created page with "VSCode links, notes and references..." current
- 09:42, 20 May 2023 diff hist +194 VS Code current
- 09:40, 20 May 2023 diff hist +51 N VS Code Created page with "=Links= * https://vscode.com/ Category:VSCode"
- 09:39, 20 May 2023 diff hist +42 N Category:Eclipse Created page with "Eclipse IDE links, notes and references..." current
- 09:38, 20 May 2023 diff hist +38 Eclipse current
- 09:38, 20 May 2023 diff hist −99 Eclipse
- 09:36, 20 May 2023 diff hist +64 Java current
- 09:26, 20 May 2023 diff hist +24 Java
- 09:26, 20 May 2023 diff hist −1 Java
- 09:25, 20 May 2023 diff hist +57 Java
- 09:24, 20 May 2023 diff hist +35 Spring Boot current
- 09:23, 20 May 2023 diff hist +76 Spring Boot
- 09:22, 20 May 2023 diff hist +42 N Category:Spring Boot Created page with "Spring Boot links, notes and references..." current
- 09:21, 20 May 2023 diff hist +156 Spring Boot
- 09:17, 20 May 2023 diff hist +316 N 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"
- 09:14, 20 May 2023 diff hist −2 My Gatling Journey current
- 09:13, 20 May 2023 diff hist −12 My Gatling Journey
- 09:13, 20 May 2023 diff hist +585 N My Gatling Journey Created page with " https://gatling.io Gatling was being used to test a collection of SpringBoot Java applications running in AWS infrastructure. A mix of technologies were in use - https://en.wikipedia.org/wiki/Java_(programming_language) Java https://spring.io/projects/spring-boot Spring Boot, https://gradle.org/ Gradle, https://maven.apache.org/ Maven, https://www.jenkins.io/ Jenkins, https://www.docker.com/ Docker - it proved and interesting and challen..."
- 09:06, 20 May 2023 diff hist +25 My Journeys current
- 09:05, 20 May 2023 diff hist +63 My Journeys
- 09:04, 20 May 2023 diff hist +52 N Category:Functional Programming Created page with "Functional Programming links, notes and refernces..." current
- 09:04, 20 May 2023 diff hist +34 N Category:JVM Created page with "JVM links, notes and references..." current
- 09:04, 20 May 2023 diff hist +1 My Scala Journey current
- 09:03, 20 May 2023 diff hist +24 My Scala Journey
- 09:03, 20 May 2023 diff hist +264 N My Scala Journey Created page with " Started from a need to use https://gatling.io Gatling for performance testing in an enterprise role with services deployed to https://aws.amazon.com AWS infrastructure. Scala:Scala Category:Java Category:JVM Category:Functional Programing"
- 08:54, 20 May 2023 diff hist +1 My Journeys
- 08:54, 20 May 2023 diff hist −5 My Journeys