Aug

AI unmasked: How is nmodes different



nmodes is the only platform offering businesses their own AI that represents their brand. Other platforms are one-size-fit-all solutions that make it difficult for businesses to let AI know their sales process, customers, product details. nmodes gives every company an AI assistant that knows their business and grows together with it. 

In addition, nmodes AI is laughingly easy to use - there is no need to be technically savvy because all communication happens in natural language. 

Also, nmodes platform offers data privacy better than any other AI solution. nmodes unique architecture makes us the only conversational AI company that does not own customers' data.  

 
Interested in reading more? Check out our other blogs:

Is Anonymity the Future of the Internet?

Right now we're in a world that sees  transparency as the new form of integrity. Right now we're in a world that understands that reputation is everything. Loyalty is somewhat fleeting as consumers, armoured with this incessant flow of knowledge from the web, have the ability to make swift  judgements and decisions about individuals, companies and governments, often times to the detriment of the target.

The emergence of social media has forced companies to stop hiding from behind that veil of corporate spin and address the very things that the web has thrown at them. Nothing is secret any longer. Even secrets that were once held secure behind invulnerable fortresses now have a strong probability of materializing today.

Is transparency as a norm working? Or, are the results of transparency surfacing a new order that will create yet another tier of acceptance from the masses?

"Anonymity is Authenticity"

Following the death of Rahteah Parsons, who, after being assaulted by 4 boys, was tormented relentlessly by classmates and other kids on social networks; and also following the suicide of Hannah Smith, who experienced the same torment, it's clear the internet has evolved to an era that has given free reign to voice an opinion and use like-minded affiliations to express and further spread that opinion. In these cases, anonymous profiles proliferated the incessant stream of hateful attacks that eventually wore down both girls' defences.

And while I originally argue that anonymity was a cowardice state that allowed people to be and feel comfortable being the anti-self that runs away from accountability, my stance has seen another side of this coin.

Anonymity is Safe

It becomes clear that humans, while inherently social, are discriminating of the things we disclose and to those to whom we share. 

If transparency breeds contempt, then anonymity should build acceptance

The freedom to express opinion and judgement without feeling guarded, or without fearing others linking you to a statement is indeed liberating. And while this free reign may take the form of a soapbox soliloquy or criticisms (and perhaps bullying attacks) against opposing views, there is a large segment of users who want the ability to share a secret, or have a place to vent their frustrations or challenges -- without the fear of reprisal.

Despite revelations from Snowden and the NSA that nothing on the net is private, this does not stop the wave of user adoption for applications like SnapChat, Whisper or Secret.

Here are some recent stats for Snapchat from Mashable

;

I've recently downloaded Whisper and my experience has been more than liberating. It has allowed me an outlet to record my hopes, desires and more importantly, my anger and not-for-public emotions. Being judged in real life or on social takes its toll. If my reputation precedes me, then I will be discriminating about what I say in places where my content and identity are linked.

Popular opinion just doesn't matter. It's irrelevant. But I want to track progress in my life: my emotions, my dark moments, my personal observations, my milestones -- all in my own digital diary.

Why shouldn't users have the option to keep part of their identities secret and separate?

It's up to the next generation

This new medium has created is an endless volatile loop of positive and negative reinforcement. While transparency has extreme benefits, there are just as many negative consequences that have come as a result of creating this honesty within social channels. Society continues to send the wrong message to Millennials and GenZers, warning them to be more discerning and to suppress who they really are as individuals... warning them of the potential consequences should they venture down the wrong path.

How we communicate today poses tremendous issues for this younger generation. Their experiences are grounded in the fear of being vulnerable... fear of being misjudged... fear of not being accepted... fear of being punished. When the next generation grows up, it'll be up to them to shape the landscape and determine how to balance the impacts of transparency and anonymity.

READ MORE

Building Facebook Messenger chatbot: what they forgot to tell you.

                                     

There are lots of written tutorials and online videos on this subject.

Yet many of them omit important details of the bot building process. These details may vary from one user to another and are difficult to describe in a unilateral fashion. Consequently it is easier for tutorial writers not to mention them at all. We try here to fill the gap and provide some additional clarity.

1. Creating Facebook app.

One of the first steps in building a Facebook Messenger bot is creating a Facebook App. It requires a business Facebook page. This might seem obvious to avid social users yet worth mentioning: a business Facebook page can only be created from a personal Facebook page. If you already have a business Facebook page move on to the next step. If you have a personal Facebook page go on and create a business page. If you are among the lucky ones that live without Facebook presence now is your chance to become like everybody else.

2. Getting SSL certificate.

Next you need to setup a webhook. Your web application is hosted on a web server and the webhook’s role is to establish connection between Facebook and your web application via your web server. In order for the webhook to work you need SSL certificate because Facebook supports only secure connections (HTTPS) to external web servers. So first, you need to purchase it. The costs change from one company to another but it is important to buy a reliable certificate otherwise Facebook might reject it. All major ISP companies offer SSL products. Second, you need to install it on your web server. The installation process can be tricky. Sometimes you can get technical help from the ISP company that sold you the certificate (as a rule of thumb, the bigger the brand the better their technical support is supposed to be. But the cost may be higher too). You can also rely on popular tools, such as keytool command utility, assuming you know how to use them. In any case, it might be a good idea to allocate several days, up to a week, for this step when planning your project.

3. Choosing the server environment.

Your options are (almost) unlimited. Many online tutorials use Heroku which is a cloud-based web application platform, but a simple Tomcat web server would suffice too. Your decisions should be based on your business requirements.  A lightweight server such as Tomcat is a good fit when it comes to web centric, user facing applications. If backend integration comes into play, a web application server should be considered.

Your choice of programming languages is also broad. PHP is one popular option, Java is another but the list by no means ends here. Your chatbot app communicates with Facebook using POST requests, so any language that supports web protocols will work. Again, make decisions having your business goals in mind.

READ MORE