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
| *** | |
| { | |
| public partial class App : Application | |
| { | |
| public App() | |
| { | |
| //open an actual form template... | |
| //InitializeComponent(); | |
| //MainPage = new MainPage(); |
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
| using Xamarin.Forms; | |
| using System.Diagnostics; //the library! | |
| namespace CsharpMob | |
| { | |
| public partial class CsharpMobPage : ContentPage | |
| { | |
| public CsharpMobPage() | |
| { | |
| Debug.WriteLine("Hello, world!"); //on debug mode, no console :p |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace SoloLearn | |
| { | |
| class Program | |
| { |
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
| . Adapter | |
| AdapterView has an adapter. An adapter has data | |
| AdapterView <-- Adapter <-- data | |
| . viewholder | |
| . relacion?, como funciona? |
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
| react | |
| de FB e insta, | |
| . objetivo, experto en mobile devices! | |
| . un appsita en react! la de bjj! | |
| . empiezo con mod de app boba | |
| wow la muestro aqui le saco plata, y me sirve para montarme en siguiente nave! | |
| . entender modelo UI, modelo logica 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
| linter JS | |
| apm install linter-xo | |
| debug ReactNative | |
| apm install nuclide |
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
| Log.d("mk", "chapas"); | |
| //call pelada | |
| // final OkHttpClient client = new OkHttpClient(); | |
| //with stetho, | |
| final OkHttpClient client = new OkHttpClient.Builder().addNetworkInterceptor(new StethoInterceptor()).build(); | |
| final Request request = new Request.Builder() | |
| .url("http://www.mocky.io/v2/573336c90f0000902cead88d") |
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
| const fs = require('fs'); | |
| const AWS = require('aws-sdk'); | |
| const s3 = new AWS.S3({ | |
| accessKeyId: 'aaa', | |
| secretAccessKey: 'bbb+oeyjn8zGANuDyCIY', | |
| region: 'ap-southeast-2' | |
| // accessKeyId: process.env.AWS_ACCESS_KEY, | |
| // secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY, |
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
| // const aws = require('aws-sdk'); | |
| const AWS = require('aws-sdk'); | |
| const fs = require('fs'); | |
| const s3 = new AWS.S3({ | |
| accessKeyId: 'AA', | |
| secretAccessKey: 'BB+oeyjn8zGANuDyCIY', | |
| region: 'ap-southeast-2' | |
| // accessKeyId: process.env.AWS_ACCESS_KEY, |
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
| const AWS = require("aws-sdk"); | |
| //security settings to use after advice from devOps will be CHANGED!! | |
| AWS.config.update({ | |
| accessKeyId: 'accessKey###', | |
| secretAccessKey: 'secretAccessKey###', | |
| region: 'us-east-1' | |
| }); | |
| const ses = new AWS.SES({ apiVersion: "2010-12-01" }); |