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
<?php if(!defined('KIRBY')) exit ?> | |
title: Event | |
pages: false | |
files: true | |
fields: | |
title: | |
label: Title | |
type: text | |
course: |
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
//: Playground - noun: a place where people can play | |
// From That Thing in Swift | |
// https://thatthinginswift.com | |
import UIKit | |
import XCPlayground | |
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true |
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
{ | |
"title": "Benutzer editieren", | |
"responseUrl": "https://...", | |
"action": "POST", | |
"sections": [ | |
{ | |
"title": "Name", | |
"rows": [ | |
{ | |
"id": "first_name", |
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
// | |
// ScrollingStackView.swift | |
// ScrollingStackView | |
// | |
// Created by Andreas Alfarè on 14.08.18. | |
// Copyright © 2018 Andreas Alfarè. All rights reserved. | |
// | |
import UIKit |
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
extension String { | |
// NARROW NO-BREAK SPACE | |
// Unicode: U+202F, UTF-8: E2 80 AF | |
static let narrowNoBreakSpace = "\u{202F}" | |
//MEDIUM MATHEMATICAL SPACE | |
//Unicode: U+205F, UTF-8: E2 81 9F | |
static let mediumMathematicalSpace = "\u{205F}" | |
//HAIR SPACE |
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
// | |
// ContentView.swift | |
// Product | |
// | |
// Created by Andreas Alfarè on 12.03.21. | |
// | |
import SwiftUI | |
struct IdentifiableIndices<Base: RandomAccessCollection> |
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
#snipcart .snipcart-cart-button, | |
#snipcart .snipcart-item-line__image { | |
border-radius: 8px | |
} | |
#snipcart .snipcart-modal__logo { | |
margin-left: auto; | |
margin-right: auto; | |
max-height: 40px | |
} |