Skip to content

Instantly share code, notes, and snippets.

@georgeOsdDev
Created April 7, 2025 06:47
Show Gist options
  • Save georgeOsdDev/e2ab9ce5b40b026966d3cdf9586e1dd4 to your computer and use it in GitHub Desktop.
Save georgeOsdDev/e2ab9ce5b40b026966d3cdf9586e1dd4 to your computer and use it in GitHub Desktop.
My JAKH query2
// https://github.com/microsoft/just-another-kusto-hacker/tree/main
datatable(i1:string , i2:string)[
"😚","πŸ˜‡",
"😈","πŸ˜‹",
"πŸ˜ƒ","πŸ˜‹",
"πŸ˜‹","πŸ˜‹",
"πŸ˜€","πŸ˜€",
"😁","πŸ˜…",
"😁","😍",
"πŸ˜‡","😌",
"πŸ˜‹","πŸ˜‹",
"😚","πŸ˜‰",
"πŸ˜„","πŸ˜‹",
"😁","πŸ˜‚",
"πŸ˜€","πŸ˜€",
"😜","πŸ˜‡",
"😈","πŸ˜‹",
"πŸ˜ƒ","πŸ˜‹",
"πŸ˜‹","πŸ˜‹",
"πŸ˜‡","😌",
"πŸ˜€","πŸ˜€",
"😚","πŸ˜‰",
"😁","πŸ˜…",
"😁","πŸ˜„",
"πŸ˜‡","πŸ˜‹",
"πŸ˜„","πŸ˜‹",
"😁","πŸ˜‚",
]
| extend i1 = unicode_codepoints_from_string(i1)[0] - 0x1F600, i2 = unicode_codepoints_from_string(i2)[0] - 0x1F600
| extend a = array_concat(pack_array(" "), datetime_list_timezones())
| summarize result = strcat_array(make_list(substring(a[i1], i2, 1)), "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment