Open in app

Sign In

Write

Sign In

Nicky Liu
Nicky Liu

31 Followers

Home

About

Published in The Startup

·May 2, 2022

Basics of HTML and CSS

Just about everyone has used the internet before, in fact, you might even be using it right now! A web page is like a black box that displays information, takes some clicks and input, and magically spits out whatever you are looking for. Well after reading this article, how a…

HTML

23 min read

Basics of HTML and CSS
Basics of HTML and CSS
HTML

23 min read


Apr 5, 2020

Basics of jQuery

jQuery is a way of manipulating the DOM (Document Object Model) on a website using JavaScript. First you set up a basic html document. <html> <head> </head> <body> </body> </html> Add some paragraphs and buttons which we will be using later to the body: <body> <p id="paragraph1" class="class1">Paragraph 1</p>…

Jquery

7 min read

Jquery

7 min read


Published in The Startup

·Jan 12, 2020

Basics of React.js

Once you know JavaScript, you can immediately cause changes in your browser by manipulating the DOM. You can use JavaScript or jQuery to add or remove elements or change values when things are clicked and create an interactive website. However, DOM manipulation requires some excessive steps. If you want to…

React

9 min read

React

9 min read


Published in The Startup

·Nov 23, 2019

Basics of PHP

This article will explain some of the basics of PHP and how to use it. Create a folder. php_test CD into the folder and create a new file inside it named: info.html First set up a basic HTML page inside of info.html. <html> <head> </head> <body> <h1>hi</h1> …

Web Development

6 min read

Web Development

6 min read


Published in Future Vision

·Sep 1, 2019

Node.js API with MongoDB

My previous article on the basics of Node.js (https://medium.com/future-vision/basics-of-node-js-46bf6e7a1a3b) explained some of the basics of Node.js as well as how it might function as an API. This article will go more in depth and combine Node.js with MongoDB to make a full-on backend api involving accounts. 1. Create a folder…

Java Script

4 min read

Node.js and Express API
Node.js and Express API
Java Script

4 min read


Published in Future Vision

·Aug 14, 2019

Basics of Node.js

Node.js is a runtime environment for executing JavaScript code based on Google’s JavaScript Engine, V8 — Node.js is basically like going to your console inside of a web browser. It is good for building APIs, and is one of the few ways to create a backend using JavaScript. One of the main benefits is that Node.js is asynchronous, meaning that when fetching from an API rather…

Nodejs

4 min read

Basics of Node.js
Basics of Node.js
Nodejs

4 min read


Published in The Startup

·Jul 17, 2019

Basics of SQL

SQL stands for Structured Query Language, and is used to communicate with a database. This article will go through some of the basics of SQL! 1. Create Database CREATE DATABASE database_name CREATE DATABASE hero_database 2. Create Table CREATE TABLE table_name ( id INTEGER PRIMARY KEY, name TEXT, age INTEGER ); …

Programming

4 min read

Programming

4 min read


Published in The Startup

·Jun 26, 2019

Basics of Java

Some of the basic concepts when getting started with Java! 0. Printing Stuff System.out.println(statement); Prints out whatever the statement is to the console. This is Java’s version of puts/prints/console.log. Variables Variables are written using camel case. variable variableTwo When declaring a variable it you should include its data type. There…

Programming

16 min read

Programming

16 min read


Published in The Startup

·Jun 18, 2019

Routing in React

I will go over how to set up routing in react! React routing works by manipulating your window. If you open up the console and type “window.history” you get back something like: History {length: 4, scrollRestoration: "auto", state: null} You can change the state by doing: window.history.pushState({newState: "This is a…

React

5 min read

React

5 min read


Published in Future Vision

·Jun 11, 2019

Basics of using Apollo in React

Hello! Previously I wrote an article on how to set up a GraphQL server using Ruby on Rails (https://medium.com/@nickyliu91/setting-up-graphql-with-ruby-on-rails-f0494e6e35c0). Now I will go over how to connect it to a React.js application using Apollo! Install Apollo and all of its dependencies. npm install apollo-boost react-apollo graphql-tag --save At this point…

React

9 min read

React

9 min read

Nicky Liu

Nicky Liu

31 Followers
Following
  • Avi Parshan

    Avi Parshan

  • Yves Sinkgraven

    Yves Sinkgraven

  • Alexey Balchunas

    Alexey Balchunas

  • Gourav Modi

    Gourav Modi

  • Neil Guo

    Neil Guo

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech