Skip to content

Instantly share code, notes, and snippets.

View JuliestJu's full-sized avatar
🤓
Working from home, 🏋🏽‍♀️, 📚,🧠

Julia JuliestJu

🤓
Working from home, 🏋🏽‍♀️, 📚,🧠
View GitHub Profile
@kunikullaya
kunikullaya / Date+Extension.swift
Created January 18, 2017 05:21
Date Extension for Swift
import Foundation
extension Date {
func toString(format: String = "yyyy-MM-dd") -> String {
let formatter = DateFormatter()
formatter.dateStyle = .short
formatter.dateFormat = format
return formatter.string(from: self)
}
@MOOOWOOO
MOOOWOOO / py-gitignore
Last active February 5, 2026 10:35
python pycharm gitignore
# Created by .ignore support plugin (hsz.mobi)
### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so