{"id":22243346,"url":"https://github.com/galaco/stringtable","last_synced_at":"2026-01-20T21:33:59.395Z","repository":{"id":57494939,"uuid":"208178722","full_name":"Galaco/stringtable","owner":"Galaco","description":"Source Engine StringTable implementation","archived":false,"fork":false,"pushed_at":"2023-12-15T14:42:56.000Z","size":5,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-13T19:03:03.090Z","etag":null,"topics":["counter-strike-global-offensive","counter-strike-source","game-engine","source-engine","valve"],"latest_commit_sha":null,"homepage":"","language":"Go","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/Galaco.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":"2019-09-13T02:00:11.000Z","updated_at":"2023-03-13T08:51:07.000Z","dependencies_parsed_at":"2024-06-20T21:53:06.660Z","dependency_job_id":"50865c1d-8859-490e-b629-daacd76306a0","html_url":"https://github.com/Galaco/stringtable","commit_stats":{"total_commits":4,"total_committers":1,"mean_commits":4.0,"dds":0.0,"last_synced_commit":"86dae3b6d3b6630e53bc3f40541bd9ba6fa2950e"},"previous_names":["golang-source-engine/stringtable"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Galaco%2Fstringtable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Galaco%2Fstringtable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Galaco%2Fstringtable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Galaco%2Fstringtable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Galaco","download_url":"https://codeload.github.com/Galaco/stringtable/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247694884,"owners_count":20980731,"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":["counter-strike-global-offensive","counter-strike-source","game-engine","source-engine","valve"],"created_at":"2024-12-03T04:26:02.842Z","updated_at":"2026-01-20T21:33:59.384Z","avatar_url":"https://github.com/Galaco.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![GoDoc](https://godoc.org/github.com/galaco/stringtable?status.svg)](https://godoc.org/github.com/galaco/stringtable)\n[![Go report card](https://goreportcard.com/badge/github.com/galaco/stringtable)](hhttps://goreportcard.com/report/github.com/galaco/stringtable)\n[![GolangCI](https://golangci.com/badges/github.com/galaco/stringtable.svg)](https://golangci.com/r/github.com/galaco/stringtable)\n[![codecov](https://codecov.io/gh/galaco/stringtable/branch/master/graph/badge.svg)](https://codecov.io/gh/galaco/stringtable)\n[![CircleCI](https://circleci.com/gh/galaco/stringtable.svg?style=svg)](https://circleci.com/gh/galaco/stringtable)\n\n# Stringtable\n\n\u003e Stringtable is an indexed lookuptable containing 0 or more strings.\n\n\n### Usage\n\nStringtable is a simple package. You can either:\n\n* Create a new table\n* Create a table from existing stringtable data (e.g. TexDataString* BSP lumps)\n\nHere is a simple example:\n\n```go\n\npackage main\n\nimport \"github.com/galaco/stringtable\"\n\nfunc main() {\n    table := stringtable.New()\n    val := \"foo\"\n    index := table.AddString(val)\n\n    s,err := table.FindString(index)\n    if err != nil {\n        panic(err)\n    }\n    if s != val {\n        panic(\"returned string doesnt match stored\")\n    }\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgalaco%2Fstringtable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgalaco%2Fstringtable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgalaco%2Fstringtable/lists"}