Skip to content

Instantly share code, notes, and snippets.

View manojd929's full-sized avatar
🎯
Focusing

Manoj Dinesh manojd929

🎯
Focusing
View GitHub Profile
@manojd929
manojd929 / Resume.md
Last active June 25, 2023 04:38
Manoj Dinesh - Resume

Manoj Dinesh

Contact Info

+91-9900421568 | manojthetechguy@gmail.com | Github | LinkedIn | Portfolio | Youtube

Professional Work Experience

Software Engineer 3
PayPal (Feb 2021 - Current)
  • Developed Front-end web application for PayPal Merchants for managing their Transactions and Reports
@manojd929
manojd929 / cardio.js
Last active November 26, 2018 09:23
JS - Cardio Simple Cool Problems from Traversy Media
// Anagram Check
const anagram = (str1, str2) => helper(str1) === helper(str2);
const helper = (str) => str.toLowerCase().split('').sort().join('');
console.log('Anagram: ', anagram('Dormitory', 'DirtyRoom'));
const getChunkArray = (arr, len) => {
const chunkArray = [];
let i = 0;
@manojd929
manojd929 / markdown-crash-course.md
Created July 22, 2018 18:44
crash course for markdown - Brad Traversy youtube video reference

Heading 1

Heading 2

Heading 4

This text is italic This text is italic

package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
)
type content struct {
@manojd929
manojd929 / assignment2.py
Last active September 23, 2018 07:46
CRUD, mean, std deviation subject - student
import math
class ClassRoom:
students = { }
mean = 0
stdDeviation = 0
def get_total_students(self):
return len(self.students)
@manojd929
manojd929 / assignment1.py
Created September 23, 2018 07:36
check eligibility for marks
def getBestTwoTestScores(score1, score2, score3):
if score1 >= score2:
x = score1
if score2 >= score3:
y = score2
else:
y = score3
if score2 >= score3:
x = score2
// Reference: https://levelup.gitconnected.com/learn-redux-by-building-redux-from-scratch-dcbcbd31b0d0
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div>Random Count: <span id="count"></span></div>
@manojd929
manojd929 / this.js
Created November 25, 2018 08:08
this-js
var obj = {
a: 5,
b: 10,
add: function() {
return this.a + this.b;
},
};
console.log('1: ', obj.add());
var another = obj.add;
@manojd929
manojd929 / mongodb-crash-course.txt
Created November 25, 2018 13:40
MongoDB crash course notes - Brad Traversy
MongoDB
NoSQL Database - Document Database Type in NoSQL
Data is stored in json like syntax
Good to use when there is no ton of inter connected relations
Database, Collections, Document
data/db folder inside MongoDB
@manojd929
manojd929 / div-center.html
Created November 26, 2018 11:52
css problems - centering a div
<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
.outer {
background-color: blue;