Skip to content

Instantly share code, notes, and snippets.

CREATE TABLE `Department` (
`deptID` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`department` text NOT NULL
);
CREATE TABLE `Employee` (
`empID` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`empName` text NOT NULL,
`empAge` integer NOT NULL,
`dept` integer NOT NULL,
package eve
import (
"encoding/json"
"fmt"
"log"
"github.com/go-resty/resty"
)
/* SLMagic - A very dangerous app. Stay back!
SLMagic (slmagic) is a small app designed to ease the burden of
corporation management for the CEOs of corporations that are a
part of Eve Online's player-ran GSF. If you have no idea what
I'm talking about, this program would be useless to you.
slmagic is designed to be ran as a cron task, perhaps once a
week. It's designed for any basic linux system, no guarantees
that it will work on Windows, but it's possible.
/* SLMagic - A very dangerous app. Stay back!
SLMagic (slmagic) is a small app designed to ease the burden of
corporation management for the CEOs of corporations that are a
part of Eve Online's player-ran GSF. If you have no idea what
I'm talking about, this program would be useless to you.
slmagic is designed to be ran as a cron task, perhaps once a
week. It's designed for any basic linux system, no guarantees
that it will work on Windows, but it's possible.
package main