Skip to content

Instantly share code, notes, and snippets.

View MagedMohamedTurk's full-sized avatar

Maged Turkoman MagedMohamedTurk

View GitHub Profile
@MagedMohamedTurk
MagedMohamedTurk / helper.c
Created August 26, 2022 08:33
CS50 filter-less Solution
#include "helpers.h"
#include <math.h>
#include <stdio.h>
typedef struct
{
/* Constants Statement for Sepia Filter */
float RED;
float GREEN;
float BLUE;
@MagedMohamedTurk
MagedMohamedTurk / app.py
Last active April 14, 2022 10:17 — forked from thuwarakeshm/app.py
Dash app
import dash
from dash import dcc, html
from pandas.io.formats import style
import plotly.express as px
import pandas as pd
from dash.dependencies import Input, Output
app = dash.Dash(
__name__,
)