Skip to content

Instantly share code, notes, and snippets.

View Cyebukayire's full-sized avatar
🎯

Peace Cyebukayire

🎯
View GitHub Profile
@rain-1
rain-1 / LLM.md
Last active September 13, 2024 08:42
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

@Cyebukayire
Cyebukayire / Home.jsx
Created February 28, 2022 05:40 — forked from adrianhajdin/Home.jsx
Build and Deploy a Modern Full Stack Social Media App | FULL COURSE
import React, { useState, useRef, useEffect } from 'react';
import { HiMenu } from 'react-icons/hi';
import { AiFillCloseCircle } from 'react-icons/ai';
import { Link, Route, Routes } from 'react-router-dom';
import { Sidebar, UserProfile } from '../components';
import Pins from './Pins';
import { userQuery } from '../utils/data';
import { client } from '../client';
import logo from '../assets/logo.png';
@Cyebukayire
Cyebukayire / App.css
Created February 28, 2022 05:27 — forked from adrianhajdin/App.css
/* CHAT STYLES */
* {
font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
letter-spacing: 0.5px;
}
.ce-chat-list {
background-color: rgb(240, 240, 240) !important;
@adrianhajdin
adrianhajdin / Home.jsx
Created December 20, 2021 19:44
Build and Deploy a Modern Full Stack Social Media App | FULL COURSE
import React, { useState, useRef, useEffect } from 'react';
import { HiMenu } from 'react-icons/hi';
import { AiFillCloseCircle } from 'react-icons/ai';
import { Link, Route, Routes } from 'react-router-dom';
import { Sidebar, UserProfile } from '../components';
import Pins from './Pins';
import { userQuery } from '../utils/data';
import { client } from '../client';
import logo from '../assets/logo.png';
/* CHAT STYLES */
* {
font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
letter-spacing: 0.5px;
}
.ce-chat-list {
background-color: rgb(240, 240, 240) !important;
@MohamedRamadanSaad
MohamedRamadanSaad / files
Created May 31, 2015 23:39
Files i/o in C++ all operations insert , delete, view , update
#include<iostream.h>
#include<fstream.h>
class Inventory{
public:
char Prouduct_id[5];
char Prouduct_name[10];
char Prouduct_ammount[5];