Skip to content

Instantly share code, notes, and snippets.

View kexoth's full-sized avatar

Aleksandar Kex Trpeski kexoth

View GitHub Profile
@kexoth
kexoth / History|-1172153b|entries.json
Last active July 27, 2022 20:21
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///Users/aleksandar.trpeski/Documents/tax-service/tests/app/transactions/adapters/avalara/create_transaction/test_fulfillment_discount.py","entries":[{"id":"dyTS.py","source":"searchReplace.source","timestamp":1654103958553},{"id":"ViJr.py","source":"searchReplace.source","timestamp":1654104020802},{"id":"aRWL.py","timestamp":1656335032686},{"id":"MvKE.py","timestamp":1656335239330}]}
@kexoth
kexoth / cloudSettings
Created June 23, 2018 16:09
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-06-23T16:09:03.264Z","extensionVersion":"v2.9.2"}
mutation {
create_psych_consultation(
input: {
is_draft: false
patient_id: 233623
date: "2018-07-17"
recommended_diagnoses: [{diagnosis_id: 11860}]
recommended_medications: [{
medication_id: 11861
date: "2018-07-17"
@kexoth
kexoth / LUA.lua
Created May 16, 2024 15:46 — forked from nilesh-tawari/LUA.lua
LUA cheatSheet
-- [[ Cheatsheet for LUA from http://www.newthinktank.com/2015/06/learn-lua-one-video/]]
-- Prints to the screen (Can end with semicolon)
print("Hello World")
--[[
Multiline comment
]]
-- Variable names can't start with a number, but can contain letters, numbers
@kexoth
kexoth / tiles.lua
Created July 29, 2024 13:02 — forked from KaffeDiem/tiles.lua
Isometric Tiles in Lua
-- Drawing the map as isometric tiles
self.tilesHovered = {} -- Reset the tilesHovered table every frame
for i = 1, #self.map do -- Loop trough rows
for j = 1, #self.map[i] do -- Loop through cols in the rows
if self.map[i][j] ~= 0 then -- If there is a tile to draw
local x =
self.x + -- Starting point
(j * ((self.tileWidth / 2) * self.scale)) - -- The width on rows
(i * ((self.tileWidth / 2) * self.scale)) -- The width on cols