- Gramática Básica
- Vocabulario Común
- Comprensión de Lectura
- Referencias:
- "English Grammar in Use" - Raymond Murphy
- "Oxford English Grammar Course" - Michael Swan, Catherine Walter
This file contains 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 Cocoa | |
protocol ApplicationTimeTrackerDelegate: AnyObject { | |
func timeTracker(_ tracker: ApplicationTimeTracker, didUpdateFrontmostApplication: Application, withTotalSeconds: UInt) | |
func timeTracker(_ tracker: ApplicationTimeTracker, didFinishTrackingApplication: Application, withTotalSeconds: UInt) | |
} | |
class ApplicationTimeTracker: NSObject { | |
private var trackings: [BundleIdentifier: Tracking] = [:] | |
private var applications: [String: Application] = [:] |
This file contains 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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
This file contains 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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
This file contains 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
computed: { | |
citiesWithPayOnDelivery() { | |
if (this.paymentMethods[0] && this.paymentMethods[0].valores !== '') { | |
return JSON.parse(this.paymentMethods[0].valores) | |
}else { | |
return [] | |
} | |
}, | |
cityLabelsWithPayOnDelivery: { | |
get() { |
This file contains 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 java.util.ArrayList; | |
public class parqueadero { | |
private ArrayList<Puesto> c; | |
public parqueadero() |
This file contains 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
package yava; | |
import java.util.Scanner; | |
public class DomiciliosYava { | |
double [] sueldos= new double[3]; | |
double [] domicilios= new double[sueldos.length]; | |
int i; | |
Scanner leer= new Scanner(System.in); |
This file contains 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
package mundo; | |
import java.util.Scanner; | |
public class Campeonato { | |
String [] equipos; | |
int [][] tabla; | |
int maxEquipos; | |
int [] puntos; | |
int [] partidosGanados; |
NewerOlder