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 | |
import ( | |
"fmt" | |
"log" | |
"github.com/Sirupsen/logrus" | |
"github.com/jinzhu/gorm" | |
_ "github.com/jinzhu/gorm/dialects/postgres" | |
) |
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 | |
import ( | |
"fmt" | |
"time" | |
"google.golang.org/cloud/storage" | |
) | |
const ( |
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
client-1.example.com:0 | |
client-2.example.com:429496729 | |
client-3.example.com:858993458 | |
client-4.example.com:1288490187 | |
client-5.example.com:1717986916 |
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 fr.pinguet62.util; | |
/** | |
* Wrapper for hexavigesimal representation and conversions.<br /> | |
* {@code 0} = {@code "A"}<br/> | |
* {@code 25} = {@code "Z"}<br/> | |
* {@code 26} = {@code "AA"}<br/> | |
* {@code 27} = {@code "AB"}<br/> | |
* {@code 730} = {@code "ABC"} | |
*/ |
OlderNewer