{"id":19844564,"url":"https://github.com/repsychling/julia-tips","last_synced_at":"2026-03-04T19:31:39.343Z","repository":{"id":110422073,"uuid":"241281245","full_name":"RePsychLing/Julia-Tips","owner":"RePsychLing","description":"A few tips on how to be more productive in Julia","archived":false,"fork":false,"pushed_at":"2020-02-19T08:12:24.000Z","size":5,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-28T22:50:31.338Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RePsychLing.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-18T05:35:16.000Z","updated_at":"2020-02-18T05:35:23.000Z","dependencies_parsed_at":"2023-03-13T13:54:20.522Z","dependency_job_id":null,"html_url":"https://github.com/RePsychLing/Julia-Tips","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RePsychLing/Julia-Tips","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RePsychLing%2FJulia-Tips","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RePsychLing%2FJulia-Tips/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RePsychLing%2FJulia-Tips/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RePsychLing%2FJulia-Tips/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RePsychLing","download_url":"https://codeload.github.com/RePsychLing/Julia-Tips/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RePsychLing%2FJulia-Tips/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30090521,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T18:31:08.343Z","status":"ssl_error","status_checked_at":"2026-03-04T18:31:07.708Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T13:04:40.325Z","updated_at":"2026-03-04T19:31:39.314Z","avatar_url":"https://github.com/RePsychLing.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Julia Tips\n\n## Adding Julia to the PATH\n\n[Getting Started with Julia](https://en.wikibooks.org/wiki/Introducing_Julia/Getting_started#Getting_started) is a good resource to figuring out how to add Julia to your PATH.\n\nLinux,\n```\nsudo ln -fs path/to/the/binaries/for/julia/bin/julia /usr/local/bin/julia\n```\n\nMac,\n```\nln -fs \"/Applications/Julia-1.3.app/Contents/Resources/julia/bin/julia\" /usr/local/bin/julia\n```\n\nFor Windows (see [How to Add Julia Program to System's Path in Windows 10](https://www.youtube.com/watch?v=UDvviyjdJFU)).\n\n## The Package Manager\n\n- Project\n  - Package\n  - Application\n- Project Structure\n  - *Project.toml*\n  - *Manifest.toml*\n  - `src/ModuleName.jl`\n  - `test/runtests.jl`\n  - `docs/make.jl`\n- Environments\n  - Shared\n  - Best Practices\n- Registry ([General](https://github.com/JuliaRegistries/General))\n- `DEPOT_PATH`\n\n\n## The Pkg CLI\n\n- `status` (`st`)\n- `activate`\n- `add`\n- `develop`\n- `rm`\n- `update` (`up`)\n- `instantiate`\n- `precompile`\n\n## Environmental Variables\n- `JULIA_NUM_THREADS`\n\n## Miscellaneous\n- Docstrings\n- Modules\n\n## Git Ignore\n`~/.gitignore_global`\n\n```\n# Julia ---\n# Files generated by invoking Julia with --code-coverage\n*.jl.cov\n*.jl.*.cov\n\n# Files generated by invoking Julia with --track-allocation\n*.jl.mem\n\n# System-specific files and directories generated by the BinaryProvider and BinDeps packages\n# They contain absolute paths specific to the host computer, and so should not be committed\ndeps/deps.jl\ndeps/build.log\ndeps/downloads/\ndeps/usr/\ndeps/src/\n\n# Build artifacts for creating documentation generated by the Documenter package\ndocs/build/\ndocs/site/\n\n# File generated by Pkg, the package manager, based on a corresponding Project.toml\n# It records a fixed state of all packages used by the project. As such, it should not be\n# committed for packages, but should be committed for applications that require a static\n# environment.\nManifest.toml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frepsychling%2Fjulia-tips","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frepsychling%2Fjulia-tips","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frepsychling%2Fjulia-tips/lists"}