This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta charset="UTF-8"> | |
| <title>SAPUI5 Template</title> | |
| <script id="sap-ui-bootstrap" | |
| src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js" |
This file contains hidden or 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
| Verifying that +denisenepraunig is my blockchain ID. https://onename.com/denisenepraunig |
This file contains hidden or 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
| 'use babel'; | |
| import SimpleUrlDecoderView from './simple-url-decoder-view'; | |
| import { CompositeDisposable } from 'atom'; | |
| export default { | |
| subscriptions: null, | |
| activate(state) { |
This file contains hidden or 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
| import Foundation | |
| import Combine | |
| var storage = Set<AnyCancellable>() | |
| struct Cat: Codable { | |
| let name: String | |
| let age: Int | |
| } |
This file contains hidden or 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
| import SwiftUI | |
| struct DotIndicator: View { | |
| @State private var isLoading = false | |
| var body: some View { | |
| HStack(spacing: 10) { | |
| ForEach(0...4, id: \.self) { index in | |
| Circle() | |
| .frame(width: 20, height: 20) |
This file contains hidden or 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
| // | |
| // ShortCutTrainer.swift | |
| // xcode-shortcut-trainer | |
| // | |
| // Created by Denise Nepraunig on 04.04.21. | |
| // | |
| import SwiftUI | |
| struct ShortCutTrainer: View { |
This file contains hidden or 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
| // | |
| // BreathAnimation.swift | |
| // breathing-animation | |
| // | |
| // Created by Denise Nepraunig on 17.05.21. | |
| // | |
| // Code is based on this tutorial: | |
| // https://www.youtube.com/watch?v=KUvkJOhpB9A | |
| // Thanks Adam :-) |
This file contains hidden or 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
| import Foundation | |
| public struct Stack<Element> { | |
| private var storage = [Element]() | |
| public init() {} | |
| public init(_ elements: [Element]) { | |
| storage = elements | |
| } |
This file contains hidden or 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
| import SwiftUI | |
| struct ContentView: View { | |
| @State private var numberString = "0" | |
| private var numberInt: Int { | |
| Int(numberString) ?? 0 | |
| } | |
| private var numberHex: String { |
OlderNewer