Skip to content

Instantly share code, notes, and snippets.

View yusuphjoluwasen's full-sized avatar

GuruKing yusuphjoluwasen

View GitHub Profile
@yusuphjoluwasen
yusuphjoluwasen / TextEditorView.Swift
Last active April 15, 2024 19:07
A Custom SwiftUI TextEditor View
struct TextEditorView: View {
@Binding var text:String
var height:CGFloat = 120
var body: some View {
ZStack(alignment: .topLeading) {
// Background rectangle with color
Rectangle()
.fill(Color.gray.opacity(0.1))
.frame(maxWidth: .infinity, minHeight: height)
.cornerRadius(10)
@yusuphjoluwasen
yusuphjoluwasen / media.json
Created June 4, 2023 09:51 — forked from deepakpk009/media.json
sample free video urls
{
"categories": [
{
"name": "Movies",
"videos": [
{
"description": "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org",
"sources": [
"http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
],
@yusuphjoluwasen
yusuphjoluwasen / project-ideas01.md
Created July 21, 2020 06:52 — forked from MWins/project-ideas01.md
Back end Projects - list

Project Ideas

Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.

I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.

If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.

Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.