{"id":32120332,"url":"https://github.com/hackathon-sidn/deno-kek","last_synced_at":"2025-10-20T19:02:19.551Z","repository":{"id":56657414,"uuid":"306847870","full_name":"hackathon-sidn/deno-kek","owner":"hackathon-sidn","description":"This 🦕 module is a collection of simple scripts that a developer might find handy. KEK aka Kommand linE utility for Kool developers.","archived":false,"fork":false,"pushed_at":"2020-10-26T21:30:15.000Z","size":38,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-10-05T02:54:34.106Z","etag":null,"topics":["cli","deno","hackathon","hacktoberfest","kek"],"latest_commit_sha":null,"homepage":"https://deno.land/x/kek","language":"TypeScript","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/hackathon-sidn.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}},"created_at":"2020-10-24T09:21:14.000Z","updated_at":"2020-10-26T21:30:17.000Z","dependencies_parsed_at":"2022-08-15T22:40:54.952Z","dependency_job_id":null,"html_url":"https://github.com/hackathon-sidn/deno-kek","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/hackathon-sidn/deno-kek","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackathon-sidn%2Fdeno-kek","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackathon-sidn%2Fdeno-kek/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackathon-sidn%2Fdeno-kek/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackathon-sidn%2Fdeno-kek/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackathon-sidn","download_url":"https://codeload.github.com/hackathon-sidn/deno-kek/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackathon-sidn%2Fdeno-kek/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280143860,"owners_count":26279881,"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","status":"online","status_checked_at":"2025-10-20T02:00:06.978Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","deno","hackathon","hacktoberfest","kek"],"created_at":"2025-10-20T19:02:05.552Z","updated_at":"2025-10-20T19:02:19.542Z","avatar_url":"https://github.com/hackathon-sidn.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kek - the deno module\n\u003c!-- aka. Kommandoexekutionskonsole / Krampfhafte Entwicklungs-Kooperation / Knowledge Extending Karate --\u003e\n\n[![nest badge](https://nest.land/badge-large.svg)](https://nest.land/package/kek)\n\n## Usage\n\nThis module is a collection of simple scripts that a developer might find handy.\nTo use it, simply type `deno run https://deno.land/x/kek/mod.ts --help` in your console and you will get an output like this:\n\n```console\n$ deno run https://deno.land/x/kek/mod.ts --help\nList of commands and their description:\n\n  test:         This command is for testing this deno module.\n  hex2string:   Converts a hex value to a string.\n  string2hex:   Converts a string to a hex value.\n  hex2int:      Converts hex to integer.\n  int2hex:      Converts integer to hex.\n  base64:       Converts the provided string to base64.\n  base64decode: Decodes a base64 encoded string.\n  md5:          Computes the MD5 checksum of a given string.\n  sha1:         Computes the SHA1 checksum of a given string.\n  hash:         Computes the hash of a given string.\n  cm2inch:      Converts cm to inch.\n  inch2cm:      Converts inch to cm.\n\nSyntax:\n  deno run https://deno.land/x/kek/mod.ts \u003ccommand\u003e\n```\n\nIf you want to know what a specific command can do and how to use it, simply type `deno run https://deno.land/x/kek/mod.ts COMMAND --help`.\n\nFor the command `test` this would result in the following:\n\n```console\n$ deno run https://deno.land/x/kek/mod.ts test --help\nThis command is for testing this deno module.\n\n    test simply responds with the given command line arguments.\n    This way you can check if the alias settings are correct and how we implemented them.\n```\n\n## Setting up an alias\n\n### Windows (PowerShell)\n\nIf you want to use _kek_ as a command in your PowerShell, simply do the following steps:\n\n1. Create a profile.ps1 file with the following input (you can change the version number of kek for your liking):\n\n```ps1\nfunction kekCommand {\n    deno run https://deno.land/x/kek/mod.ts $args\n}\n\nSet-Alias kek kekCommand\n```\n\n2. Save this file to either `$Home\\Documents` (C:\\Users\\yourname\\Documents) -- only your user will be able to use `kek` **OR** to `$PsHome` (C:\\Windows\\System32\\WindowsPowerShell\\v1.0) -- every PowerShell user will be able to use `kek`.\n3. Restart your PowerShell\n4. Profit\n\n### Linux (Bash)\n\nIf you want to use _kek_ as a command in your linux bash, simply do the following steps:\n\n1. Edit either the `~/.bash_aliases` or the `~/.bashrc` file\n2. Append the new alias as `alias kek='deno run https://deno.land/x/kek/mod.ts'` and save the file\n3. Profit\n\n### MacOS (zsh)\n\n\u003c!-- It doesn't have to be this way - use https://distrochooser.de/ to fix your problem --\u003e\n\ncoming soon...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackathon-sidn%2Fdeno-kek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackathon-sidn%2Fdeno-kek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackathon-sidn%2Fdeno-kek/lists"}