This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package eve | |
import ( | |
"encoding/json" | |
"fmt" | |
"log" | |
"github.com/go-resty/resty" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main |