Skip to content

Instantly share code, notes, and snippets.

View jaesungline's full-sized avatar

JaesungLine jaesungline

View GitHub Profile
@jonathantneal
jonathantneal / README.md
Last active March 24, 2025 17:47
Local SSL websites on macOS Sierra

Local SSL websites on macOS Sierra

These instructions will guide you through the process of setting up local, trusted websites on your own computer.

These instructions are intended to be used on macOS Sierra, but they have been known to work in El Capitan, Yosemite, Mavericks, and Mountain Lion.

NOTE: You may substitute the edit command for nano, vim, or whatever the editor of your choice is. Personally, I forward the edit command to Sublime Text:

alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"
@janodev
janodev / NutritionFacts+Builder.m
Last active June 21, 2023 05:26
Objective-C Builder pattern.
@interface NutritionFacts(Builder)
-(NutritionFactsBuilder*)builder;
@end
@implementation NutritionFacts(Builder)
-(NutritionFactsBuilder*)builder {
return [[NutritionFactsBuilder alloc]initWithNutritionFacts:self];
}
@end