Skip to content

Instantly share code, notes, and snippets.

View RyuuzakiJulio's full-sized avatar
😈
#doYouEvenCodeBro

Ryuuzaki Julio RyuuzakiJulio

😈
#doYouEvenCodeBro
View GitHub Profile
@chris-redbeed
chris-redbeed / UIColorToColor.swift
Last active March 6, 2024 22:05
SwiftUI - UIColor to Color
// Convert UIColor to Color
import SwiftUI
extension UIColor {
var color: Color {
get {
let rgbColours = self.cgColor.components
return Color(
red: Double(rgbColours![0]),
@tadija
tadija / FontNames-iOS-17.4.swift
Last active January 11, 2025 00:45
iOS - All Font Names
/*
*** Academy Engraved LET ***
AcademyEngravedLetPlain
---------------------
*** Al Nile ***
AlNile
AlNile-Bold
---------------------
*** American Typewriter ***
AmericanTypewriter
@mburst
mburst / rss_reader.php
Created March 24, 2013 03:58
RSS Feed Reader in PHP
<html>
<head>
<title>RSS Feed Reader</title>
</head>
<body>
<?php
//Feed URLs
$feeds = array(
"http://maxburstein.com/rss",
"http://www.engadget.com/rss.xml",