Skip to content

Instantly share code, notes, and snippets.

View imralpharvin's full-sized avatar
🙈
On a job search

Ralph Arvin De Castro imralpharvin

🙈
On a job search
View GitHub Profile
@imralpharvin
imralpharvin / reactJS.md
Created September 13, 2020 20:46
ReactJS
@imralpharvin
imralpharvin / bash.md
Last active September 13, 2020 20:24
bash notes

Linux bash commands

User administration

su -

Super user Goes to directory root

su
@imralpharvin
imralpharvin / jQuery.md
Created September 13, 2020 20:17
jQuery notes

jQuery

purpose of jQuery

make it much easier to use JavaScript on your website.

uses

  • HTML/DOM manipulation
  • CSS manipulation
  • HTML event methods
  • Effects and animations
@imralpharvin
imralpharvin / javascript.md
Created September 13, 2020 20:15
Javascript notes

Javascript

  • Program the behaviour of web pages

script

<script>
  • Where to put Js code in head or body

Link HTML and JS

@imralpharvin
imralpharvin / html.md
Last active September 13, 2020 20:10
HTML Notes

HTML

Terminology to know

  • Elements
  • Tags
  • Attributes

Declaration

@imralpharvin
imralpharvin / css.md
Last active September 13, 2020 20:01
CSS Notes

CSS

External CSS

<link rel="stylesheet" type="text/css" href="mystyle.css">

CSS External References (better than inline)

<link rel="stylesheet" href="https://www.w3schools.com/html/styles.css">
@imralpharvin
imralpharvin / c.md
Created September 13, 2020 19:56
C

C

GNU Makefile

Build tool to compile programs

CC          =	gcc
CFLAGS      =	-Wall -std=c99 -g

Compile GCC

@imralpharvin
imralpharvin / bootstrap.md
Created September 13, 2020 19:53
Bootstrap

Bootstrap

Website: Bootstrap

HTML head

<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity_no="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity_no="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity_no="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
 
@imralpharvin
imralpharvin / androidstudio.md
Created September 13, 2020 19:40
Android Studio

Android Studio

Starting a project

Creates xml and java files

  • Java - code
  • Xml - visual component
  • Java folder - main code
  • Res folder - folders for visuals
  • Res/values - import
  • Manifests folder - for emulator
@imralpharvin
imralpharvin / notesdirectory.md
Last active September 13, 2020 20:47
Notes Directory