Undefined Symbols for architecture x86_64: Compiling problems

There’s no mystery here, the linker is telling you that you haven’t defined the missing symbols, and you haven’t. Similarity::Similarity() or Similarity::~Similarity() are just missing and you have defined the others incorrectly, not etc. etc. The second one is a function called readData, only the first is the readData method of the Similarity class. To be clear about … Read more

How can a Discord bot create a hyperlink in a Discord message in an embed or in general?

Jakye is right. Only bots can achieve this (but not in field titles, beware). Just do [link text here](url here). This embed description results in: this in the embed. Clicking on it directs you to countrycode.org. Using .addField(): If you want a bot’s message to just be a hyperlink, you need to make an embed, and only … Read more

How to create an HTML button that acts like a link

HTML The plain HTML way is to put it in a <form> wherein you specify the desired target URL in the action attribute. If necessary, set CSS display: inline; on the form to keep it in the flow with the surrounding text. Instead of <input type=”submit”> in above example, you can also use <button type=”submit”>. The only difference is that the <button> element allows children. You’d … Read more

How can a Discord bot create a hyperlink in a Discord message in an embed or in general? [closed]

Jakye is right. Only bots can achieve this (but not in field titles, beware). Just do [link text here](url here). This embed description results in: this in the embed. Clicking on it directs you to countrycode.org. Using .addField(): If you want a bot’s message to just be a hyperlink, you need to make an embed, … Read more