diff options
author | elioat <hi@eli.li> | 2022-11-26 18:15:23 -0500 |
---|---|---|
committer | elioat <hi@eli.li> | 2022-11-26 18:15:23 -0500 |
commit | 601c05b0141abc625d0748d6ad3814a4afeb54dc (patch) | |
tree | 1a78402e076690c87542106cdaf267c46616f9f7 | |
download | hard-way-601c05b0141abc625d0748d6ad3814a4afeb54dc.tar.gz |
*
-rw-r--r-- | .gitignore | 105 | ||||
-rw-r--r-- | README.md | 5 |
2 files changed, 110 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..63579c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,105 @@ +# Created by https://www.toptal.com/developers/gitignore/api/emacs,macos,xcode +# Edit at https://www.toptal.com/developers/gitignore?templates=emacs,macos,xcode + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### Xcode ### +## User settings +xcuserdata/ + +## Xcode 8 and earlier +*.xcscmblueprint +*.xccheckout + +### Xcode Patch ### +*.xcodeproj/* +!*.xcodeproj/project.pbxproj +!*.xcodeproj/xcshareddata/ +!*.xcodeproj/project.xcworkspace/ +!*.xcworkspace/contents.xcworkspacedata +/*.gcno +**/xcshareddata/WorkspaceSettings.xcsettings + +# End of https://www.toptal.com/developers/gitignore/api/emacs,macos,xcode \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..896a7b2 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# hard way + +...maybe if I make a repository for it I'll actually work my way through a tutorial book and actually *learn* me some C. + +Planning to tackle things using a literate style. \ No newline at end of file |