Giter Club home page Giter Club logo

atlantistalker's Introduction

This repository moved to GitLab: https://gitlab.com/ToKe79/atlantistalker

atlantistalker

Atlantis Talker is a talker based on NUTS. The talker runs as a service on a host machine and users can connect to the service using telnet protocol (e.g. telnet example.com 7000 when the talker is bound to port 7000 on the host machine).

The code in this repository is a copy of the code published on SourceForge as SVN by one of the original coders nicknamed Spartakus.

The code of the Atlantis Talkers, that runs at telnet talker.sk 7000, is not public.

configuration

Copy config.h.sample to config.h and edit config.h. Adjust DB* variables and path for temporary files storage. The path can be relative to the executable (in runtime folder) or absolute. I recommend using ramdisk for this purpose.

prepare database

Use your weapon of choice to create a database. Or create database using the command line:

$ sudo mysql -u root -h <your_dbhost> -p
> CREATE DATABASE `<your_dbname>`;
> GRANT ALL ON `<your_dbname>`.* to '<your_dbuser>'@'<host_where_talker_runs>' IDENTIFIED BY '<your_dbpass';
> FLUSH PRIVILEGES;
> QUIT

When the database and talker are on the same server, use localhost as host for both - <your_dbhost> and <host_here_talker_runs>. Then use the provided database dump to populate the database with data.

cat db_dump/dump.sql | mysql <your_dbname> -u <your_dbuser> -h <your_dbhost> -p [your_dbpass]

dependencies

On Debian based systems install these packages:

  • libxml2-dev
  • default-libmysqlclient-dev
  • build-essential
  • ccache

compilation

make HAVE_CONFIG=1 DEBUG=1

run

cd runtime
./atlantis

connect

From localhost:

telnet localhost 7000

From other hosts:

telnet <yourhostname> 7000

Talker uses two ports:

  • 7000 - for general use
  • 7001 - for "wizzes" login (if they want to login as "invisible" user

atlantistalker's People

Contributors

marado avatar toke79 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.