Check if text is in something - Discord Js - discord

developers! I'm making a Roblox Verification bot and I need to see if there is text located inside of a user's blurb.
I've tried a few things, the issue is, I don't want them to just set the blurb to the code, I'll explain.
If I do
if(emojis === blurb){
//do stuff
}
then it'll only work if the blurb is exactly the code.
I want it to trigger if the emojis are inside the blurb at all.
So if the emojis are 😀💯🔹 and their blurb is: "Bob ate an apple 😀💯🔹", the code will trigger.
Any help is appreciated, thank you!

Ah, I've fixed it!
The correct code is:
if(blurb.includes(emojiList)){
// do something
{

Related

can someone help me with discord.js emotes?

So I wanted my bot to detect if the message is an emote, if it is, detects if it's the :smile: emote if it is for example write :smile: anybody can help me? I'm pretty new to discord.js and would really appreciate it if, someone helped me
You can simply implement multiple if-statements inside your message event, for your :smile: example it would look like this:
if(message.content === "😄") return message.channel.send("😄");
You can get the emoji as I displayed in my code, by typing \:smile: in a Discord chat. So for 😂 it would be \:joy:.

Can we use gauge/gage in Ionic ? (Cordova)

This is my first post here, so I'm sorry if I'm not in the good section.
My "simple" question is, can we add a gage/gauge (I don't now the exact english spelling), in a Ionic project ?
A thing like that:
https://www.youtube.com/watch?v=w2qrYL0Le24
Or an other exemple:
http://crisbeto.github.io/angular-svg-round-progressbar/
I already tried to insert gauge like that in my project but the gauge never appears, so please, can you help me ?
(The goal is to show to an user a speed for exemple or the batterie life of his smartphone, any importance, juste a jauge who can be incremented or decremented)
Can you explain me please how it works, for example via a Codepen or anything else. I had already tried to search response but I solve anything on that.
I'm french and I am sorry for my language, but thanks in advance for you'r help !
Thanks.
I was able to get this to work:
https://github.com/frapontillo/angular-gage
You must also have the JustGage library and Raphael. Take a look at the example to see it in action. I was able to even make it work in the http://creator.ionic.io app by adding the scripts of angular-gage, JustGage and Raphael (just add a js and paste in the scripts).

How to customize pull to refresh in codename one?

I would like to change the language of the pull to refresh. I've already added a locale file and added two properties which I read in a post:
pull.down <---- Working OK
pull.release <---- Still showing English (should be in Spanish)
I don't know the property which shows "Updating" but I also need it to know.
Please could you help me to know where I can see the properties?
In the initVars method I used:
Hashtable h = res.getL10N("Localization (L10N) 1", "es");
UIManager.getInstance().setBundle(h);
Thank you in advance for your help.
To change the Updating text, do this:
pull.refresh=YourUpdatingText
Note that you have to enter the english and spanish version of the texts.
Change your localization code to the following:
Hashtable h = res.getL10N("1", "es");
UIManager.getInstance().setBundle(h);
Follow #Shai Almog's tutorial in this video for localization.

How to display dynamic marker label info from database

For the past month or so I have been trying to solve this problem. I checked the website extensively, including all tutorials I could find, and even bought a book. I previously posted but have had no luck. Hopefully I have more info to get some help.
Basically I have a map in my FileMaker database. Everything works fine, except for one thing I would like to change. When I roll over each marker I would like to see the label show the customers name, instead of the static "Marker 1", "Marker 2", etc.
I included a link to dropbox that has the html, the MarkersArray custom function and hopefully all the info that's passed to the Html that may be needed. Through much trial and terror, I can't figure out how to make it happen. Any help or guidance would be greatly appreciated.
Thanks
Steve
https://dl.dropboxusercontent.com/u/71328624/GoogleMapsDocs/html.txt
https://dl.dropboxusercontent.com/u/71328624/GoogleMapsDocs/ss1geo.png
instantiate a variable that calculates the company name inside of your for loop. replace "Marker" +i with the variable.

Face detection code doesnt work

I am currently trying to find the face in a particular image.I am following
this website :
http://www.cognotics.com/opencv/servo_2007_series/part_2/index.html.
I am following the code in this page.But i dont seem to see the option/part
of the code to include my image[ am i supposed to change the argv[1] part in the code to my own image inorder to read my image]
Can someone guide me?
Or is there any better face detection code available?
Thanks
You are supposed to pass your picture as a command line argument.

Resources