Skip to content

Instantly share code, notes, and snippets.

View jdnichollsc's full-sized avatar
🏠
Working from home

J.D Nicholls jdnichollsc

🏠
Working from home
View GitHub Profile
@jdnichollsc
jdnichollsc / Kotlin-Demo.kt
Last active March 22, 2019 23:58
Android - Kotlin
interface Demo {
val context:Context
fun alert(mensaje:String)
{
Toast.makeText(context, message, Toast.LENGTH_SHORT).show()
}
}
object SimpleSingleton {
    val answer = 42;
@jdnichollsc
jdnichollsc / React Native - iOS.md
Last active March 22, 2019 14:04
React Native - Tips
  • Get root navigation controller
AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
UIViewController *rootController = [[delegate window] rootViewController];
UINavigationController *rootNavigationController = (UINavigationController *)rootController;
  • Present view controller
UIViewController *ctrl = [UIViewController new];
@jdnichollsc
jdnichollsc / index.js
Created February 23, 2019 05:43
Get areas of shapes - Hackerrank
const getArea = (shape, values) => {
let area = -1
switch(shape) {
case "square":
area = Math.pow(values[0], 2);
break;
case "rectangle":
area = values[0] * values[1];
break;
case "circle":
@jdnichollsc
jdnichollsc / Termux-config.md
Last active November 20, 2024 16:32
Run React Native apps in x86_64 devices using Termux and TermuxArch and running in a Linux chroot

Ok, if you're a newbie like me this is the process (After enable the termux storage permissions):

Initialize TermuxArch

startarch

Create a backup of your pacman configuration

tar zcf mirrorlist.tar.gz /etc/pacman.d/
cp /etc/pacman.conf storage/downloads/pacman.conf
cp /etc/pacman.d/mirrorlist storage/downloads/mirrorlist
@jdnichollsc
jdnichollsc / Tools
Created January 4, 2019 05:53
Unity Links
## Free
- NuGet For Unity - https://assetstore.unity.com/packages/tools/utilities/nuget-for-unity-104640
- HTTP and REST Client for Unity - https://github.com/proyecto26/RestClient
- Native sharing API (Save media, thumbnail for videos) - https://github.com/olokobayusuf/NatShare-API
- RTS camera - https://assetstore.unity.com/packages/tools/camera/rts-camera-43321
## Other
- Arrow to pointer (card games) - https://assetstore.unity.com/packages/tools/gui/arrow-for-tcg-97386
@jdnichollsc
jdnichollsc / App.js
Last active December 20, 2018 16:15
RenderIfAuthenticated - React Native component to validate if the user has a valid token
import { createStackNavigator } from 'react-navigation'
import LoginComponent from './components/Login'
import HomeComponent from './components/Home'
import SplashComponent from './components/Splash'
import { renderIfAuthenticated } from './components/Auth'
const Main = createStackNavigator(
{
LoginComponent: { screen: LoginComponent },
@jdnichollsc
jdnichollsc / ABC.md
Last active December 7, 2024 17:45
The Job Interview Guide

The Job Interview Guide 💼

And English is a Work in Progress ⌛

@jdnichollsc
jdnichollsc / home-observable.ts
Last active November 5, 2019 20:55
SQLite plugin with Ionic Framework 3 - Using service pattern
import { Component, OnInit, OnDestroy } from '@angular/core'
import { IonicPage, NavController, LoadingController } from 'ionic-angular'
import { interval, Subject } from 'rxjs'
import { switchMap, map } from 'rxjs/operators'
import { OfflineService } from '../../providers'
@IonicPage()
@Component({
@jdnichollsc
jdnichollsc / Podfile
Last active March 14, 2019 06:10
React Native Podfile configuration
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'MyApp' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'RCTActionSheet',
@jdnichollsc
jdnichollsc / config.json
Last active August 13, 2018 07:16
MyBot - config.json
{
"MicrosoftAppId": "MyMicrosoftAppId",
"MicrosoftAppPassword" : "MyMicrosoftAppPassword",
"AzureWebJobsStorage": "DefaultEndpointsProtocol=https;AccountName=mystorage;AccountKey=mystoragekey",
"LuisAppId_English": "64defde4-ba25-4f83-a41d-eb1ce452e40e",
"LuisAppId_Spanish": "6022d5aa-4d16-4a87-bdcd-df87b3a9620a",
"LuisAPIKey": "e36aac94e6c54b7c83512820263d1b40",
"LuisAPIHostName": "westus.api.cognitive.microsoft.com"
}