This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
#!/bin/bash | |
gitlab_user="git" | |
if [[ "$(whoami)" == "$gitlab_user" ]] | |
then | |
echo "Searching for errors and corecting them" | |
else | |
echo "Nope, wrong user. Trying to login as $gitlab_user" | |
su "$gitlab_user" -c "$0" |
print("UPDATE AUG 2023: this script is beyond old and broken") | |
print("You may find interesting and more up to date resources in the comments of the gist") | |
exit() | |
from slacker import Slacker | |
import json | |
import argparse | |
import os | |
# This script finds all channels, private channels and direct messages |
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project: