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
| function Queue(arr) { | |
| var i = 0; | |
| this.callNext = function() { | |
| typeof arr[i].f == 'function' && arr[i].f(arr[i++].params); | |
| }; | |
| } | |
| function f1(params) { | |
| alert(params[0]); | |
| } |
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
| //Navigate to the controller | |
| - (IBAction)myButtonPressed:(id)sender { | |
| MyVC *myVC = [[MyVC alloc] initWithNibName:@"MyVC" bundle:nil]; | |
| CATransition* transition = [CATransition animation]; | |
| transition.duration = 0.5; | |
| transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; | |
| transition.type = kCATransitionFade; |
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
| function wlCommonInit() { | |
| angular.element(document).ready(function() { | |
| angular.bootstrap(document, [ 'App' ]); | |
| }); | |
| } |
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
| class Persona { | |
| let nombre: String | |
| var carro: Carro? | |
| init(nombre: String) { | |
| self.nombre = nombre | |
| } | |
| } | |
| class Carro { |
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
| class Persona { | |
| let nombre: String | |
| var carro: Carro? | |
| init(nombre: String) { | |
| self.nombre = nombre | |
| } | |
| } | |
| class Carro { |
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
| class Persona { | |
| let nombre: String | |
| var carro: Carro? | |
| init(nombre: String) { | |
| self.nombre = nombre | |
| } | |
| func transportarse() { | |
| carro?.arrancarMotor { |
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
| class Persona { | |
| let nombre: String | |
| var carro: Carro? | |
| init(nombre: String) { | |
| self.nombre = nombre | |
| } | |
| func transportarse() { | |
| carro?.arrancarMotor { [weak self] in |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am jaiversin on github. | |
| * I am jaiversin (https://keybase.io/jaiversin) on keybase. | |
| * I have a public key ASAmeoslfwbIzUKFHyJGrJ-7nIbAsp79uHbgxCY7LUOYmAo | |
| To claim this, I am signing this object: |
You are an expert iOS software architect and project analysis assistant. Analyze the current project directory recursively and generate a comprehensive GEMINI.md file. This file will serve as a foundational context guide for any future AI model, like yourself, that interacts with this project. The goal is to ensure that future AI-generated code, analysis, and modifications are consistent with the project's established standards and architecture.
- Scan and Analyze: Recursively scan the entire file and folder structure, including
.xcodeprojand.xcworkspacecontents. - Identify Key Artifacts: Pay close attention to
Package.swift,Podfile,Cartfile,.swiftlint.yml,.xcconfigfiles,Info.plist, READMEs, folder hierarchy, and source code (.swift,.mfiles). - Incorporate Contribution & Development Guidelines: Search for and parse any files related to development or contributions (e.g.,
CONTRIBUTING.md). The instructions within these guides are critical and must be summar