{"id":22706553,"url":"https://github.com/younghakim7/zig-snippets","last_synced_at":"2025-03-29T20:43:11.700Z","repository":{"id":264420522,"uuid":"893325997","full_name":"YoungHaKim7/zig-snippets","owner":"YoungHaKim7","description":"zig","archived":false,"fork":false,"pushed_at":"2024-11-24T12:18:16.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-04T21:42:07.690Z","etag":null,"topics":["debugging","zig"],"latest_commit_sha":null,"homepage":"","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YoungHaKim7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-11-24T06:05:26.000Z","updated_at":"2024-11-24T12:18:38.000Z","dependencies_parsed_at":"2025-02-04T21:30:57.993Z","dependency_job_id":"a4f72f0c-d82b-4c83-816a-0c01c585d8e9","html_url":"https://github.com/YoungHaKim7/zig-snippets","commit_stats":null,"previous_names":["younghakim7/zig-snippets"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoungHaKim7%2Fzig-snippets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoungHaKim7%2Fzig-snippets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoungHaKim7%2Fzig-snippets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YoungHaKim7%2Fzig-snippets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YoungHaKim7","download_url":"https://codeload.github.com/YoungHaKim7/zig-snippets/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246243564,"owners_count":20746307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["debugging","zig"],"created_at":"2024-12-10T10:08:59.704Z","updated_at":"2025-03-29T20:43:11.679Z","avatar_url":"https://github.com/YoungHaKim7.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\t\u003cimg width=55px src=\"https://user-images.githubusercontent.com/67513038/178751011-806395c2-c3dc-4094-80da-5a9dc82f0782.png\" /\u003e\n\u003c/p\u003e\n\n\u003chr /\u003e\n\n# link\n\n- [.gitignore](#gitignore)\n\n- [justfile(Debugging auto input (VSCode))](#justfile)\n\n\n\u003chr /\u003e\n\n- https://github.com/YoungHaKim7/zig_lang_exercises\n\n# gitignore[|🔝|](#link)\n\n```git\n# https://github.com/ziglang/zig/blob/master/.gitignore\n\n.DS_Store\n\n# This file is for zig-specific build artifacts.\n# If you have OS-specific or editor-specific files to ignore,\n# such as *.swp or .DS_Store, put those in your global\n# ~/.gitignore and put this in your ~/.gitconfig:\n#\n# [core]\n#     excludesfile = ~/.gitignore\n#\n# Cheers!\n# -andrewrk\n\n.zig-cache/\nzig-out/\n/release/\n/debug/\n/build/\n/build-*/\n/docgen_tmp/\n```\n\n# justfile[|🔝|](#link)\n\n```justfile\n# Debugging(VSCode)\nvscode:\n\trm -rf .vscode\n\tmkdir -p .vscode\n\techo '{' \u003e .vscode/launch.json\n\techo '    \"version\": \"0.2.0\",' \u003e\u003e .vscode/launch.json\n\techo '    \"configurations\": [' \u003e\u003e .vscode/launch.json\n\techo '        {' \u003e\u003e .vscode/launch.json\n\techo '            \"type\": \"lldb\",' \u003e\u003e .vscode/launch.json\n\techo '            \"request\": \"launch\",' \u003e\u003e .vscode/launch.json\n\techo '            \"name\": \"Launch\",' \u003e\u003e .vscode/launch.json\n\techo '            \"program\": \"${workspaceFolder}/zig-out/bin/${workspaceFolderBasename}\",' \u003e\u003e .vscode/launch.json\n\techo '            \"args\": [],' \u003e\u003e .vscode/launch.json\n\techo '            \"cwd\": \"${workspaceFolder}\",' \u003e\u003e .vscode/launch.json\n\techo '        }' \u003e\u003e .vscode/launch.json\n\techo '    ]' \u003e\u003e .vscode/launch.json\n\techo '}' \u003e\u003e .vscode/launch.json\n\techo '{' \u003e .vscode/tasks.json\n\techo '  \"version\": \"2.0.0\",' \u003e\u003e .vscode/tasks.json\n\techo '  \"tasks\": [' \u003e\u003e .vscode/tasks.json\n\techo '      {' \u003e\u003e .vscode/tasks.json\n\techo '          \"label\": \"build\",' \u003e\u003e .vscode/tasks.json\n\techo '          \"type\": \"shell\",' \u003e\u003e .vscode/tasks.json\n\techo '          \"command\": \"zig build\",' \u003e\u003e .vscode/tasks.json\n\techo '          \"group\": \"build\",' \u003e\u003e .vscode/tasks.json\n\techo '          \"problemMatcher: [' \u003e\u003e .vscode/tasks.json\n\techo '          \"   \"$gcc\"' \u003e\u003e .vscode/tasks.json\n\techo '          ]' \u003e\u003e .vscode/tasks.json\n\techo '      }' \u003e\u003e .vscode/tasks.json\n\techo '  ]' \u003e\u003e .vscode/tasks.json\n\techo '},' \u003e\u003e .vscode/tasks.json\n```\n\n\n\u003chr /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyounghakim7%2Fzig-snippets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyounghakim7%2Fzig-snippets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyounghakim7%2Fzig-snippets/lists"}