Skip to content

Instantly share code, notes, and snippets.

View mortymacs's full-sized avatar

Morteza (Mort) NourelahiAlamdari mortymacs

View GitHub Profile
@mortymacs
mortymacs / main.go
Created November 7, 2023 16:34
Find what data type is behind the any in Go
package main
import "fmt"
func GetData() any {
a := map[string]any{
"name": map[string]any{
"age": 1,
},
}
@mortymacs
mortymacs / enable-if.cc
Created November 4, 2023 19:59
Sample std::enable-if in c++
#include <iostream>
#include <string>
#include <type_traits>
// Custom data structures.
struct Car{
std::string name;
};
struct Bike{
std::string name;
@mortymacs
mortymacs / sample.sh
Created November 4, 2023 19:52
Temporal CLI sample commands
# Create a namespace
$ tctl --ns <NAMESPACE> n re
# Get namespace description.
$ tctl --ns <NAMESPACE> n desc
# Send a request to the workflow.
$ tctl workflow run --taskqueue <TASK-QUEUE> --workflow_type <WORKFLOW-NAME> --input '{"name": "something", "foo": "bar"}'
# Get list of workflows.
@mortymacs
mortymacs / main.go
Created November 1, 2023 09:34
DynamoDB sample Go code
package main
import (
"fmt"
"log"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/dynamodb"
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute"
@mortymacs
mortymacs / a-question.md
Created September 18, 2023 08:58 — forked from boxofrox/a-question.md
How to compute the SHA256 hash for a new Nix package?

How does one find the sha256 of a new package?

I read that I should put a garbage sha256 into my package file, build it, and nix will report the correct sha256 I should use.

I put sha256 = "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" into my package file as the garbage sha256.

When I built the package, the error reports:

@mortymacs
mortymacs / run.sh
Created September 6, 2023 10:31
Go add jsonapi tags
gomodifytags --add-tags jsonapi --transform camelcase -override -all -w --file pricing_plan_subscription_dto.go
@mortymacs
mortymacs / sample chain.go
Created August 31, 2023 09:51
sample method chain
package main
import "fmt"
type Client struct {
URL string
// Methods
User *User
Post *Post
@mortymacs
mortymacs / sample.go
Created August 24, 2023 09:12
Check Go interface without using reflect
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
type Actioner interface {
Delete() string
}
@mortymacs
mortymacs / sample.go
Created August 24, 2023 08:59
Check Go data type without using reflect
package main
import "fmt"
type Actioner interface {
Delete() string
}
type User struct {
Name string
@mortymacs
mortymacs / sample.lua
Created May 19, 2023 19:42
Attach LSP if current directory has "go.mod" file.
local Path = require("plenary.path")
local lsp = require("lspconfig")
if Path:new("go.mod"):exists() then
print("load go")
lsp.gopls.setup()
end