Skip to content

Instantly share code, notes, and snippets.

View Fiser12's full-sized avatar
馃幆
Focusing

Rub茅n Garc铆a Fiser12

馃幆
Focusing
View GitHub Profile
# Pol铆tica de Privacidad de Konect App
**脷ltima actualizaci贸n:** 12 de noviembre de 2025
Esta pol铆tica de privacidad describe c贸mo Konect App ("la Aplicaci贸n", "nosotros", "nuestro") recopila, usa y protege la informaci贸n del usuario.
Al usar nuestra Aplicaci贸n, aceptas la recopilaci贸n y el uso de informaci贸n de acuerdo con esta pol铆tica.
## 1. Informaci贸n que Recopilamos
{
"id":"8eea6dec-73d9-4790-b4cd-e1abdd67d658",
"title":"Our next event",
"description":"My event description,here you can set a default text for the event to define the main ideas",
"image":"https://i.ibb.co/7Cdw0SP/Generic-Meeting-image-1.png",
"content":{
"globalQuestionary":{
"rootNode":{
"type":"single",
"current":{
blueprint:
name: Zigbee2MQTT - WXKG02LM_rev2 2 button remote
description: Automate your WXKG02LM_rev2 using Zigbee2MQTT events.
domain: automation
input:
mqtt_topic:
name: MQTT Topic
description: The MQTT topic to subscribe to for button presses
default: 'zigbee2mqtt/[ESTUDIO] Escritorio Bot贸n/action'
selector:
blueprint:
name: Zigbee2MQTT - Tuya TS0043 3 button remote
description: Automate your Tuya TS0043 3 button remote using Zigbee2MQTT events.
domain: automation
input:
mqtt_topic:
name: MQTT Topic
description: The MQTT topic to subscribe to for button presses
default: 'zigbee2mqtt/[ESTUDIO] Boton Persiana/action'
selector:
@Fiser12
Fiser12 / fuctional-programing-contramap-es.md
Created February 7, 2024 20:48
Swift y programaci贸n funcional: Contramap

Swift y programaci贸n funcional: Contramap

La programaci贸n funcional ha introducido varios conceptos poderosos que pueden mejorar significativamente la claridad, concisi贸n y expresividad del c贸digo. Entre estos, los predicados y la funci贸n contramap ofrecen una manera elegante de construir l贸gica de validaci贸n y filtrado reutilizable y componible. En este art铆culo, exploraremos c贸mo estos conceptos pueden aplicarse en Swift para resolver problemas complejos de manera eficiente. Predicados y contramap: Una Introducci贸n

Un Predicate<A> es una estructura que encapsula una condici贸n que los elementos de tipo A deben cumplir. Esta condici贸n se representa mediante un closure que toma un elemento de tipo A y devuelve un valor booleano, indicando si el elemento cumple o no con la condici贸n especificada. La funci贸n contramap, por otro lado, permite transformar un Predicate<b> en un Predicate<a> , dada una funci贸n que convierte de A a B. Esto es particularmente 煤til cuando queremos aplicar un predi

@Fiser12
Fiser12 / semantic-commit-messages.md
Last active January 24, 2024 10:20 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@Fiser12
Fiser12 / AVLTree.swift
Created April 11, 2023 23:10
AVLTree in swift for store data in a efficient way
final class AVLTree<Element: Comparable> {
private var value: Element?
private var left: AVLTree<Element>?
private var right: AVLTree<Element>?
private var balanceFactor: Int8 = 0
private var height: Int
init() {
height = (value == nil) ? 0 : 1
//
// main.swift
// Philosofers problem with actors (monitors)
//
//
import Foundation
let TiempoDeComer: UInt64 = 2_000_000_000
let TiempoDePensar: UInt64 = 1_000_000_000
@Fiser12
Fiser12 / README.md
Created March 10, 2023 21:59 — forked from IsaacXen/README.md
(Almost) Every WWDC videos download links for aria2c.
@propertyWrapper
public struct AnyProxy<EnclosingSelf, Value> {
private let keyPath: ReferenceWritableKeyPath<EnclosingSelf, Value>
public init(_ keyPath: ReferenceWritableKeyPath<EnclosingSelf, Value>) {
self.keyPath = keyPath
}
@available(*, unavailable, message: "The wrapped value must be accessed from the enclosing instance property.")
public var wrappedValue: Value {