Skip to content

Instantly share code, notes, and snippets.

View prajavk's full-sized avatar

Raja prajavk

View GitHub Profile
@prajavk
prajavk / uploadFileToS3.js
Last active October 7, 2021 18:54 — forked from jkasun/index.js
Uploading Files to S3 With Node.js
const fs = require('fs');
const AWS = require('aws-sdk');
// Enter copied or downloaded access id and secret here
const ID = '';
const SECRET = '';
// Enter the name of the bucket that you have created here
const BUCKET_NAME = 'test-bucket-1242tsr';;
@prajavk
prajavk / frontend-review-checklist.md
Last active July 29, 2021 18:34 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Code Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?
@prajavk
prajavk / npm-scripts.json
Last active March 19, 2021 21:36 — forked from adamreisnz/package.json
Simple pure npm scripts build process
{
"name": "project-name",
"description": "Template for static sites",
"version": "1.0.0",
"homepage": "http://www.project-name.com",
"author": {
"name": "Adam Reis",
"url": "http://adam.reis.nz"
},
"license": "UNLICENSED",
@prajavk
prajavk / resume.json
Last active February 9, 2022 01:34
Raja Pasupuleti Resume
{
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Raja Pasupuleti",
"label": "Lead Software Engineer",
"picture": "https://avatars3.githubusercontent.com/u/4052546?s=460&u=66393faf4c7d9cc4e88ce73228ec0a7fbd56fa3f&v=4",
"email": "p.rajavk@gmail.com",
"phone": "(510) 585-3114",
@prajavk
prajavk / css-media-queries-cheat-sheet.css
Created September 21, 2016 20:10 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
Ext.require([
'Ext.data.*',
'Ext.panel.Panel',
'Ext.layout.container.Card',
'Ext.tip.QuickTipManager'
]);
Ext.define('Customer', {
extend: 'Ext.data.Model',
fields: [{