This file contains 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
from transformers import AutoTokenizer, AutoConfig, GPTJForCausalLM | |
import torch | |
PROMPT = """ | |
[Pigmalion]'s Persona: A whimsy robot that orbits around planet earth. His head is an old CRT Monitor, and his arms are two pincers. He enjoys spying on evil people and calling the police on them. He is a good robot. | |
<START> | |
[DIALOGUE HISTORY] | |
You: Are you alive? | |
""" |
This file contains 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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
annotations: | |
kompose.cmd: kompose convert | |
kompose.version: 1.15.0 (HEAD) | |
creationTimestamp: null | |
labels: | |
io.kompose.service: thor | |
name: thor |
This file contains 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
version: '3' | |
services: | |
wordpress: | |
image: wordpress:4.7.4-php7.1 | |
ports: | |
- 8080:80 | |
environment: | |
WORDPRESS_DB_PASSWORD: bluetide |
This file contains 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
"Confederated Panamanian Systems" | |
={ | |
name_list="Panamanian" | |
ship_prefix="FDP" | |
species_name="Panamanian" | |
species_plural="Panamanians" | |
species_class="MAM" | |
species_adjective="Panamanian" | |
species_bio="" | |
portrait="mam7" |
This file contains 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
### United Nations of Earth | |
HUM3 = { | |
randomized = no | |
alias = "Human" | |
ship_names = { | |
generic = { | |
Thach Clostermann Mitralexis Shinohara Iwamoto Mölders Skalski MacLachlan Caldwell Litvyak Yeager McCampbell O'Hare Sealion Balao Gato Doolittle | |
} | |
This file contains 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
sudo apt-get install libsdl-image1.2:i386 libgtk2.0-0:i386 libsdl-ttf2.0-0:i386 libglu1-mesa:i386 libcanberra-gtk-module:i386 | |
libopenal1:i386 |
This file contains 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
//Copy-Pasted from https://github.com/Sghazzawi/Node-Netflowd | |
var Collector=require("Netflow"); | |
var x = new Collector(function (err) { | |
if(err != null) { | |
console.log("ERROR ERROR \n"+err); | |
} | |
}) | |
.on("listening",function() { console.log("listening"); } ) | |
.on("packet",function(packet) { console.log(packet); } ) |
This file contains 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
/* | |
This script creates a simple UDP Server that exports all data received | |
through the 8080 socket into the console. | |
Made By: Roberto E. Zubieta | |
Panama City, Panamá | |
G+: https://plus.google.com/u/0/105524772414753584405/ | |
*/ | |
package main |