Skip to content

Instantly share code, notes, and snippets.

View Ishaan28malik's full-sized avatar
🎯
Focusing

Championrunner Ishaan28malik

🎯
Focusing
View GitHub Profile
@Ishaan28malik
Ishaan28malik / Keylogger.md
Last active August 27, 2019 09:44
Python Projects
__  ____  ____   ____   ____   ____   ____   ____
  _              _
 | |            | |
 | | _____ _   _| | ___   __ _  __ _  ___ _ __
 | |/ / _ \ | | | |/ _ \ / _` |/ _` |/ _ \ '__|
 |   <  __/ |_| | | (_) | (_| | (_| |  __/ |
 |_|\_\___|\__, |_|\___/ \__, |\__, |\___|_|
            __/ |         __/ | __/ |
           |___/         |___/ |___/
@Ishaan28malik
Ishaan28malik / AboutMe.gif
Last active September 16, 2019 07:24
Myself
AboutMe.gif
@Ishaan28malik
Ishaan28malik / Amap.png
Last active August 27, 2019 09:44
Markets Map
Amap.png
@Ishaan28malik
Ishaan28malik / Storyboard-Animations-All.md
Last active November 23, 2021 12:45
Generating storyboard animations from Scripts (Disney Research)

Storyboard-Animations

Generating storyboard animations from Scripts

text-to-animation system

img

Paper resources

%PDF-1.4
%äüöß
2 0 obj
<</Length 3 0 R/Filter/FlateDecode>>
stream
x�=��
1 E����v���0�~������߷��d�{r"X�
��²�G
��
�^�Y��AS!��0X�r�bVhl���8��(O�vN�3J�$o�z 6��Сw���$ɝj�O��Q��N�f��˒(
* Zustand
import create from 'zustand';
import produce from 'immer';
const useStore = create((set) => ({
counter: 0,
increment: () => {
set(produce((state) => {
state.counter += 1;
}));
@Ishaan28malik
Ishaan28malik / Notes.md
Last active September 15, 2023 08:53
Angular Vs React Vs Vue

Angular by default runs at Port:4200

  • It works with interacting with html file seperately unlike your React or vue
  • Material UI was first launched for Angular and most famous is PrimeNg
  • Build Size => 151KB
  • State management in Angular => @Input/@Output properties / or within the component
  • State management library Example => ngrx

React by default runs on PORT:3000

  • It works on JSX so no html and css you can create other file .
  • Build Size => 500KB