Skip to content

Instantly share code, notes, and snippets.

View ukaleem's full-sized avatar
🏠
Working from home

Kaleem Ullah ukaleem

🏠
Working from home
View GitHub Profile
@ukaleem
ukaleem / wordpress.sh
Created May 28, 2023 06:51 — forked from ashokveerasamy/wordpress.sh
AWS EC2 Wordpress
#!/bin/bash
yum update -y
yum install httpd php php-mysql -y
cd /var/www/html
echo "healthy" > healthy.html
wget https://wordpress.org/wordpress-5.1.1.tar.gz
tar -xzf wordpress-5.1.1.tar.gz
cp -r wordpress/* /var/www/html/
rm -rf wordpress
rm -rf wordpress-5.1.1.tar.gz
@ukaleem
ukaleem / Home.jsx
Created October 20, 2022 15:35 — 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';