Skip to content

Instantly share code, notes, and snippets.

View studentiyot's full-sized avatar

mazal studentiyot

View GitHub Profile
@Nivratti
Nivratti / directory-structure-deep-learning
Last active July 14, 2025 09:13
Directory structure for deep learning projects
project_name/
├── data/ # All data-related directories and files
│ ├── raw/ # Original, immutable data dump
│ ├── processed/ # Data transformed for modeling, such as TFRecords or HDF5
│ ├── interim/ # Temporary processed datasets, possibly smaller or for prototyping
├── docs/ # Project documentation
│ ├── api/ # API reference
│ ├── design_docs/ # Design documents, architectural choices
@grifx
grifx / 0000_hello_world.md
Last active June 18, 2025 16:36
Create your own roadmaps from roadmap.sh with checkboxes on GIST

Hello,

My SO is learning coding. I wanted a convenient way for her to consume the content from roadmap.sh.

I hope it can help someone else.

If you want your own roadmap:

  1. Fork or Copy-paste the md files you are interested in your own gist.
@lpheller
lpheller / tldr-global-gitignore-ds-store.sh
Created November 11, 2020 08:51
Globally ignore .DS_Store files
# Quick and easy one line command to setup a global .gitignore file and ignore macOS .DS_store files globally
git config --global core.excludesfile "~/.gitignore" && echo .DS_Store >> ~/.gitignore
@johnfoderaro
johnfoderaro / httpd.conf
Created December 24, 2016 15:09
Default httpd.conf file - macOS Sierra 10.12.2 - /etc/apache2/httpd.conf
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure