All Projects → yegor256 → netbout

yegor256 / netbout

Licence: other
Private talks made easy

Programming Languages

java
68154 projects - #9 most used programming language
XSLT
1337 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to netbout

Im service
golang im server
Stars: ✭ 1,694 (+4135%)
Mutual labels:  messaging, messenger
Sum
SUM - Secure Ultimate Messenger
Stars: ✭ 154 (+285%)
Mutual labels:  messaging, messenger
Timy Messenger
Timy - open source mobile app for groups to communicate and organize themselves. Built with flutter.
Stars: ✭ 1,745 (+4262.5%)
Mutual labels:  messaging, messenger
Broid Kit
Bot framework powered by Broid
Stars: ✭ 58 (+45%)
Mutual labels:  messaging, messenger
Acts As Messageable
Gem that allows communication between the models.
Stars: ✭ 242 (+505%)
Mutual labels:  messaging, conversation
Chat Sdk Android
Chat SDK Android - Open Source Mobile Messenger
Stars: ✭ 1,496 (+3640%)
Mutual labels:  messaging, messenger
Jsqmessagesviewcontroller
An elegant messages UI library for iOS
Stars: ✭ 11,240 (+28000%)
Mutual labels:  messaging, messenger
Messagekit
A community-driven replacement for JSQMessagesViewController
Stars: ✭ 5,036 (+12490%)
Mutual labels:  messaging, messenger
Chatlayout
ChatLayout is an alternative solution to MessageKit. It uses custom UICollectionViewLayout to provide you full control over the presentation as well as all the tools available in UICollectionView. It supports dynamic cells and supplementary view sizes.
Stars: ✭ 184 (+360%)
Mutual labels:  messaging, messenger
React Messenger
Chat UX components built with React, inspired by Facebook Messenger
Stars: ✭ 167 (+317.5%)
Mutual labels:  messaging, messenger
Chat Sdk Ios
Chat SDK iOS - Open Source Mobile Messenger
Stars: ✭ 813 (+1932.5%)
Mutual labels:  messaging, messenger
FacebookChatStatistics
Statistics of any Facebook Messenger conversation
Stars: ✭ 49 (+22.5%)
Mutual labels:  messenger, conversation
Integrations
Connect your App to Multiple Messaging Channels with the W3C Open standard.
Stars: ✭ 721 (+1702.5%)
Mutual labels:  messaging, messenger
Applozic Ios Sdk
iOS Real Time Chat & Messaging SDK
Stars: ✭ 104 (+160%)
Mutual labels:  messaging, messenger
Chat
Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots
Stars: ✭ 8,238 (+20495%)
Mutual labels:  messaging, messenger
Messaging Apis
Messaging APIs for multi-platform
Stars: ✭ 1,754 (+4285%)
Mutual labels:  messaging, messenger
Messenger
Open source, native iOS Messenger, with realtime chat conversations (full offline support).
Stars: ✭ 4,264 (+10560%)
Mutual labels:  messaging, messenger
Messenger
iOS - Real-time messaging app 🎨
Stars: ✭ 491 (+1127.5%)
Mutual labels:  messaging, messenger
Webapp
Tinode web chat using React
Stars: ✭ 156 (+290%)
Mutual labels:  messaging, messenger
iGap-iOS
iGap Client for iOS Source Code
Stars: ✭ 18 (-55%)
Mutual labels:  messaging, messenger

EO principles respected here Managed by Zerocracy DevOps By Rultor.com We recommend RubyMine

Build Status PDD status Maven Central Coverage Status Hits-of-Code

License Availability at SixNines

Netbout.com is a communication platform that enables smoothless integration of humans and software agents in a conversation-centered environment.

Try it at www.netbout.com.

The original idea behind Netbout is explained in USPTO patent application US 12/943,022.

Functionality

A user is able to login, using one of the following social/federated methods: Facebook, Google+ and Github. A user is able to logout.

When user logs in for the first time, he must create a new "alias" inside Netbout. The system checks the validity of the alias and makes sure each alias is unique in the entire system.

A user can start a new "bout", which is a conversation between a few users.

A user can post a message to a bout and read all other messages, posted by other users, in reverse chronological order (the most recent messages on the top).

A user can invite other users to the bout, knowing just their aliases.

A user can attach a file to a bout. Any attached file can be deleted. A user can download any attached file.

How to test?

If you're a manual tester and want to contribute to a project, please login to Netbout.com, create an account and do whatever you think is reasonable to reveal functional and non-functional problems in the system. Each bug you find, report in a new Github issue.

Please, read these articles before starting to test and report bugs: Five Principles of Bug Tracking, Bugs Are Welcome, and Wikipedia's Definition of a Software Bug Is Wrong.

How to contribute?

If you're a software developer and want to contribute to the project, please fork the repository, make changes, and submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven (3.1 or higher!) build before submitting a pull request:

$ mvn clean install -Pqulice

If your default encoding is not UTF-8, some of unit tests will break. This is an intentional behavior. To fix that, set this environment variable in console (in Windows, for example):

SET JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8

Similarly, on Linux:

export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF-8"

Run locally and test it

Want to run it locally? Simple as that:

$ mvn clean install -Phit-refresh -Dport=8080

In a minute the site is ready at http://localhost:8080

In case you are looking for an even quicker startup or experience failing tests, but still want to run the site, you can skip the tests by running:

$ mvn clean install -DskipTests -Phit-refresh -Dport=8080

Integration tests

It is highly recommended to run integration tests to guarantee that your changes will not break any other part of the system. Follow these steps to execute integration tests:

  1. Open your browser's console and go to network view;
  2. Access the netbout server you want to test with and log in (if you are not). You may access production site http://www.netbout.com/ or your local snapshot http://localhost:8080;
  3. On network monitor of your browser, select the connection that requested main page www.netbout.com.
  4. On that request, search for the response headers.
  5. You will find a key named Set-Cookie on that response.
  6. The value of that header, contains a lot of other key values content. Search for content of PsCookie variable and copy that content.
  7. Go back to you console and run the following code, replacing the ${cookie_value} for the content that you copied from PsCookie, replacing the ${netbout_server} for the site that you accessed:
$ mvn clean install -Dnetbout.token=${cookie_value} -Dnetbout.url=${netbout_server}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].