Skip to content

Instantly share code, notes, and snippets.

View rvsp's full-sized avatar
💻
Focusing

Venkatasubramanian rvsp

💻
Focusing
View GitHub Profile
@rvsp
rvsp / index.html
Created September 25, 2021 08:48
B251 WE CRUD flow
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
@rvsp
rvsp / index.html
Created September 11, 2021 14:06
reference
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css"
rel="stylesheet"
@rvsp
rvsp / chubb-mysql-task.txt
Last active January 14, 2022 09:46
mysql task
The Following are the tables has to be in your database & model deisgn:
users
codekata
attendance
topics
tasks
company_drives
mentors
students_activated_courses
courses
[
{
"Name": "venkat",
"Email": "venkat@guvi.in",
"javascript": "4",
"Score": "5",
"Total": "9"
},
{
"Name": "anand",
@rvsp
rvsp / module-1.txt
Last active December 1, 2022 02:37
B261 WD
Tasks - July 20, 2021
1) List 5 difference between Browser JS(console) v Nodejs
2) watch & summary 5 points - https://www.youtube.com/watch?v=SmE4OwHztCc&ab_channel=JSConf
3) To read - https://stackoverflow.com/questions/5641997/is-it-necessary-to-write-head-body-and-html-tags
4) Execute the bellow code and write your description in txt file
typeof(1)
typeof(1.1)
typeof('1.1')
typeof(true)
typeof(null)
@rvsp
rvsp / index.html
Last active July 3, 2021 06:58
B23 WE - DOM manipulation example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
</head>
@rvsp
rvsp / module-1.txt
Last active February 6, 2023 16:49
Module-1 Notes/Task links
June 16, 2021
to read - https://stackoverflow.com/questions/5641997/is-it-necessary-to-write-head-body-and-html-tags
task
create a simple html file containing of elements that helps to build a rough portfolio
doc for the difference between <div>, <article>, <section> tag?
write a doc for the following below
typeof(1)
typeof(1.1)
typeof('1.1')
typeof(true)
@rvsp
rvsp / index.html
Created May 12, 2021 05:06
B232 sample snippet of Bootstrap & DOM Manipulation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.css">
@rvsp
rvsp / index.html
Last active March 31, 2021 06:37
product json
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
</head>
@rvsp
rvsp / node-folder-structure.md
Created January 5, 2021 17:22
NodeJS Folder structure

What is your folder-structure preference for a large-scale Node.js project?

0: Starting from Rails

This is the reference point. All the other options are based off this.

|-- app
|   |-- controllers
|   |   |-- admin