Skip to content

Instantly share code, notes, and snippets.

View jaffreyjoy's full-sized avatar
👁️
Staring at progress bars...

Jaffrey jaffreyjoy

👁️
Staring at progress bars...
  • EdgeCortix
  • Hyderabad
  • 04:48 (UTC +05:30)
  • X @jaffreyjoy
View GitHub Profile
@jaffreyjoy
jaffreyjoy / distsys_a1_report.md
Last active January 28, 2024 10:52
Distributed Systems - Assignment 1 Report

Distributed Systems: Assignment - 1

Name: Jaffrey Joy
Roll no: 2022201006

Question 1B - NQueens

  • Premise

    Board size is denoted by $n$
    No. of processes is denoted by $p$
    A core is denoted by $c$
@jaffreyjoy
jaffreyjoy / deque.cpp
Created December 28, 2023 14:41
Raw Implementation of deque in cpp using 2 arrays
#include<iostream>
#include<string>
#include<stdexcept>
#include<typeinfo>
using namespace std;
#define ull unsigned long long
#define ll long long
#define INITIAL_CAPACITY 2
#define CAPACITY_SCALING_FACTOR 2
@jaffreyjoy
jaffreyjoy / bottomup_mergesort.cpp
Last active September 28, 2022 05:34
Basic Algos
#include<iostream>
using namespace std;
void print_arr(int* a, int l, int r){
for(int i=l; i<=r; i++)
cout << a[i] << " ";
cout << endl;
}
@jaffreyjoy
jaffreyjoy / ssd_hw_02.md
Last active September 8, 2022 15:33
SSD hw

Public

  • A variable is given public scope if it is supposed to be accessed outside the class.
  • Eg:- In a Stack class, we would want the method push() to be public.
    class Stack{
        push(){

        }
    }
@jaffreyjoy
jaffreyjoy / keybase.md
Created July 18, 2020 08:51
keybase.md

Keybase proof

I hereby claim:

  • I am jaffreyjoy on github.
  • I am jaffreyjoy (https://keybase.io/jaffreyjoy) on keybase.
  • I have a public key whose fingerprint is 4F88 04B5 D73A D212 014A FAE7 0BCD D355 C572 11FB

To claim this, I am signing this object:

@jaffreyjoy
jaffreyjoy / keybase_old.md
Last active July 18, 2020 08:51
keybase_old.md

Keybase proof

I hereby claim:

  • I am jaffrey98 on github.
  • I am jaffreyjoy (https://keybase.io/jaffreyjoy) on keybase.
  • I have a public key ASD1QpVolARdSsu-J3s9ZzXukjMuDCwil0g4aYqGNzmHaQo

To claim this, I am signing this object:

@jaffreyjoy
jaffreyjoy / Sprint-1.md
Last active January 2, 2019 07:57
Winter Internship Sprints

Invoice Customization

  • 3 beautiful invoice templates
  • Dynamic color theme selection
  • Dynamic Address
  • Color prop fix
  • Fix Layout
  • Custom Fonts
  • Company Logo

GSTR1

@jaffreyjoy
jaffreyjoy / run.md
Last active June 21, 2018 05:31
frappejs-accounting test setup

To run the project :

Run these commands in the root directory

  yarn build
  yarn server
@jaffreyjoy
jaffreyjoy / esoc-tasks.md
Last active May 20, 2018 07:11
Tasks assigned for ESOC '18.

Mail

  • send and receive email using IMAP
  • create and delete mail ( interface )

WebRTC

  • transmit simple data using webrtc
  • otp
  • firewall .....

Accounting + Inventory + CRM

@jaffreyjoy
jaffreyjoy / control.js
Last active February 1, 2018 19:18 — forked from shawn-kb/control.js
ugly buttons
import React from 'react';
import {
ScrollView,
StyleSheet,
Modal,
Text,
TextInput,
TouchableOpacity,
View,
Platform,