Skip to content

Instantly share code, notes, and snippets.

View rnz269's full-sized avatar

Rahul Nallappa rnz269

View GitHub Profile
@rnz269
rnz269 / maps.js
Created March 18, 2021 14:27 — forked from kmagiera/maps.js
import React, { Component } from 'react'
import { View, Image, StyleSheet, ScrollView, Text, Animated, StatusBar, PixelRatio } from 'react-native'
import Icon from 'react-native-vector-icons/MaterialIcons';
import MapView from 'react-native-maps';
const AMSTERDAM = {
latitude: 52.3702,
longitude: 4.8952,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
import React, { Component } from 'react'
import { View, Image, StyleSheet, ScrollView, Text, Animated, StatusBar } from 'react-native'
import Icon from 'react-native-vector-icons/MaterialIcons'
const IMG_SRC = { uri: "https://pulsations.files.wordpress.com/2010/05/randomdog.jpg" }
const IMG_HEIGHT = 200
const NAVBAR_HEIGHT = 64
class Twitter extends Component {
constructor(props) {
@rnz269
rnz269 / template.html
Created February 4, 2017 16:15 — forked from wrburgess/template.html
HTML Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title Text</title>
<link rel="stylesheet" href="[PATH or URL]">
</head>
<body>
@rnz269
rnz269 / intro_to_the_console.md
Last active January 26, 2017 01:41 — forked from wrburgess/intro_to_the_console.md
Intro to the Console

Intro to the Console for Rahul

  • cd (changes directory)

  • cd ~ (changes to home directory)

  • cd .. (moves up one directory)

  • ls (lists files in folder)