{"id":21179399,"url":"https://github.com/oil3/oil3.github.io","last_synced_at":"2026-02-17T06:01:40.422Z","repository":{"id":213928540,"uuid":"735280366","full_name":"Oil3/oil3.github.io","owner":"Oil3","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-10T09:29:25.000Z","size":674,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T13:13:06.364Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/Oil3.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-24T10:36:37.000Z","updated_at":"2025-05-10T09:29:28.000Z","dependencies_parsed_at":"2024-01-11T19:57:35.381Z","dependency_job_id":"4eb52f57-a68d-4a2f-a2af-1d8b7caf411f","html_url":"https://github.com/Oil3/oil3.github.io","commit_stats":null,"previous_names":["oil3/oil3.github.io"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Oil3/oil3.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oil3%2Foil3.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oil3%2Foil3.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oil3%2Foil3.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oil3%2Foil3.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Oil3","download_url":"https://codeload.github.com/Oil3/oil3.github.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oil3%2Foil3.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29535934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T05:00:25.817Z","status":"ssl_error","status_checked_at":"2026-02-17T04:57:16.126Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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-20T17:30:14.905Z","updated_at":"2026-02-17T06:01:40.381Z","avatar_url":"https://github.com/Oil3.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"| Modifier/Keyword | Description                                                                                                                               |\n|------------------|-------------------------------------------------------------------------------------------------------------------------------------------|\n| `private var`    | A variable that is accessible only within the scope of the enclosing declaration, such as a class or struct.                              |\n| `fileprivate var`| A variable that is accessible within the same source file.                                                                                |\n| `internal var`   | A variable that has internal access (default access level), meaning it's accessible within the same module.                               |\n| `public var`     | A variable that is accessible from any file within the same module and from any module that imports the module where the variable is defined. |\n| `open var`       | Similar to `public var`, but it also allows the variable to be overridden by subclasses outside the module.                              |\n| `var`            | A variable that can be read and written to. It has internal access by default.                                                            |\n| `let`            | A constant that is assigned a value only once and cannot be changed after it's set.                                                       |\n| `weak var`       | A variable with a weak reference to an object. It's used to prevent strong reference cycles in closures and between class instances.     |\n| `static var`     | A variable that is shared among all instances of a class or struct. It belongs to the type itself rather than any instance.               |\n| `class var`      | Similar to `static var`, but it allows subclasses to override the variable's value.                                                      |\n\n\n| Square symbol            | Description                                                                                                                       |\n|-------------------|-----------------------------------------------------------------------------------------------------------------------------------|\n| `🇲 (Method)`      | Indicates a method or a function. Methods are functions associated with a specific class, structure, or enumeration.             |\n| `🇨 (Class)`       | Represents a class. Classes are blueprint templates used to create instances of objects and can contain methods, properties, and initializers. |\n| `🇪 (Enum)`        | Indicates an enumeration type. Enumerations group related values and enable type-safe handling of those values.                  |\n| `🇸 (Struct)`      | Represents a struct. Structs are similar to classes but are value types and do not support inheritance.                          |\n| `🇵 (Protocol)`    | Indicates a protocol. Protocols define a blueprint of methods, properties, and other requirements for specific tasks or functionalities. |\n| `🇻 (Variable)`    | Represents a variable or a property. Variables are storage locations for data, while properties are variables associated with classes, structures, or enumerations. |\n| `🇹 (Type)`        | Used for type aliases and other type-related symbols. Type aliases define alternative names for existing types.                  |\n| `🇰 (Keyword)`     | Indicates a language keyword (e.g., `if`, `while`, `return`). Keywords are reserved words in Swift with special meaning.         |\n| `🇦 (Attribute)`   | Indicates an attribute (e.g., `@IBOutlet`, `@IBAction`). Attributes provide additional information about declarations or types.  |\n| `# (Preprocessor Directive)` | Represents a preprocessor directive in C and C++ (e.g., `#define`, `#import`). Preprocessor directives give instructions to the compiler before compilation. |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foil3%2Foil3.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foil3%2Foil3.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foil3%2Foil3.github.io/lists"}