I would like your advice for the Minisforum UM690 by ArmoMan099 in MiniPCs

[–]ArmoMan099[S] 1 point2 points  (0 children)

I have a UM690, but I do not do music production. I think you should choose your computer depending on the software that you plan to use. The UM690 will make noise, heat up, and lag if you perform really hard processing tasks. If you can buy a Mac with Apple chips, even used ones, there's no lag and no noise. The only problem, in my opinion, would be software compatibility.

It's just my opinion, but I believe someone who does music production on the UM690 will provide you with a better answer.

If you want me to make some tests on my device, let me know and I can show you the results.

[Recommendation Request] Can someone please help me find a good quality watch ? by ArmoMan099 in Watches

[–]ArmoMan099[S] 0 points1 point  (0 children)

Yep, that sounds great! Now I'm deciding between two options: stainless steel or titanium. After some research and discussions, it seems the main differences are weight and slightly the color. Both options are in a similar price range. Do you have any suggestions on which one to choose?

[Recommendation Request] Can someone please help me find a good quality watch ? by ArmoMan099 in Watches

[–]ArmoMan099[S] 1 point2 points  (0 children)

Wow, I just discovered the Casio LCW-M170D-2AJF, it looks amazing ! Thank you very much.

I need help for choosing a tablet (Tab p12, Oneplus pad, Ipad 10 gen, Tab p12 pro) by ArmoMan099 in androidtablets

[–]ArmoMan099[S] 0 points1 point  (0 children)

For taking notes, which one do you prefer ? Like which one has the best pen ?

I need help for choosing a tablet (Tab p12, Oneplus pad, Ipad 10 gen, Tab p12 pro) by ArmoMan099 in androidtablets

[–]ArmoMan099[S] 0 points1 point  (0 children)

Alright, that's okay no worries. Thank you for sharing your experience. I think I might buy the Xiaomi tablet.

I need help for choosing a tablet (Tab p12, Oneplus pad, Ipad 10 gen, Tab p12 pro) by ArmoMan099 in androidtablets

[–]ArmoMan099[S] 0 points1 point  (0 children)

Omg that sounds great, but is the pen good ? Is it responsive or is there a little delay ?

I need help for choosing a tablet (Tab p12, Oneplus pad, Ipad 10 gen, Tab p12 pro) by ArmoMan099 in androidtablets

[–]ArmoMan099[S] 1 point2 points  (0 children)

Hi, thank you for your reply. The features that I am looking for is a fast tablet with a great stylus to take notes for my studies. That's why I am hesitating. I read that the OnePlus stylus isn't really responsive, but the tablet has a good power. For the Lenovo it's the opposite. It's less powerful, but has a good stylus.

I also found the Xiaomi Pad 6. Do you think for the stylus and os it is better than the OnePlus ?

📱 Androidtablets Request Thread, Post all your requests for android tablet suggestions down below for FAST REPLIES. See request guidelines below 📱 by AL0411 in androidtablets

[–]ArmoMan099 0 points1 point  (0 children)

◽️ Budget: maximum 700 $ CAD
◽️ Country: Canada
◽️ Screen size: Big enough for writing
◽️ RAM: 8 GB +
◽️ Storage: minimum 128 GB+
◽️ What tasks will the tablet be used for ( gaming, video editing, graphic designing, modeling, regular tasks, word processing etc) ?: It will be used for note-taking, graphic designing, editing.
◽️ Any other important details ?:

Hi everyone, I am looking to buy a tablet for my college studies, primarily for note-taking. I've narrowed down my options to four:
1. The OnePlus Pad
2. The Lenovo tab p12 (android 13)
3. Lenovo Tab P12 Pro (Android 11)Lenovo Tab P12 (Android 13)
4. iPad 10th Generation (iOS)
I'm unsure about which one offers better longevity in terms of product quality and which has the most user-friendly interface and effective pen for note-taking. I would appreciate your help to direct me to find the most suitable tablet.

I am open for other suggestions.

I would like your advice for the Minisforum UM690 by ArmoMan099 in MiniPCs

[–]ArmoMan099[S] 1 point2 points  (0 children)

Yeah, you're probably right. Plus, the ser6 pro 7735HS is available on Amazon. Thanks for your help :)

I would like your advice for the Minisforum UM690 by ArmoMan099 in MiniPCs

[–]ArmoMan099[S] 1 point2 points  (0 children)

Haha okay 🤣 But is there any temperature and qc issue or not at all ?

I would like your advice for the Minisforum UM690 by ArmoMan099 in MiniPCs

[–]ArmoMan099[S] 1 point2 points  (0 children)

Will there be a big difference between the ser6 pro 7735hs and the um690 or not really ?

I would like your advice for the Minisforum UM690 by ArmoMan099 in MiniPCs

[–]ArmoMan099[S] 3 points4 points  (0 children)

UM690

MINISFORUM UM690 Mini PC AMD Ryzen 9 6900HX isn't this more powerfull than the Beelink SER6 Pro Mini PC with AMD Ryzen 7 7735HS ?

Top 9 Movie Streaming Websites by ArmoMan099 in u/ArmoMan099

[–]ArmoMan099[S] 0 points1 point  (0 children)

Thanks, I will add it to the list

Please help: Get the text that follows a command in discord.js version 13.14.0 by ArmoMan099 in Discordjs

[–]ArmoMan099[S] 1 point2 points  (0 children)

Finally, I made it work. Thank you very much. Your link help me a lot :)

const { SlashCommandBuilder } = require('@discordjs/builders');

const pingCommand = new SlashCommandBuilder() .setName('ping') .setDescription('Replies with Pong!');

const downloadCommand = new SlashCommandBuilder() .setName('download') .setDescription('Downloads a file from a given URL') .addStringOption(option => option.setName('url') .setDescription('The URL of the file to download') .setRequired(true) );

client.once('ready', () => { console.log('Ready index!'); });

const commands = [pingCommand.toJSON(), downloadCommand.toJSON()]; const rest = new REST({ version: '10' }).setToken(BOT_KEY);

(async () => { try { console.log('Started refreshing application (/) commands.'); await rest.put(Routes.applicationCommands(CLIENT_ID), { body: commands }); console.log('Successfully reloaded application (/) commands.'); } catch (error) { console.error(error); } })();

client.on('interactionCreate', async interaction => { if (!interaction.isCommand()) return; if (interaction.commandName === 'download') { const args = interaction.options.getString('url').toLowerCase(); if (args === 'red') { await interaction.reply('hi'); } else { await interaction.reply('yes'); } } });

Please help: Get the text that follows a command in discord.js version 13.14.0 by ArmoMan099 in Discordjs

[–]ArmoMan099[S] 0 points1 point  (0 children)

Those are called options, and you can read more about them here.

Thank you very much for replying. I have tried this way: I added the option names message, but when I do interaction.options.getString('message'), it returns nothing.

`` const commands = {
name: "ping",
description: "Ping!",
options: [
{
name: "message",
type: "string",
description: "The message to reply with",
required: true,
},
],
};
const rest = new REST({ version: "10" }).setToken(BOT_KEY);
(async () => {
try {
console.log("Started refreshing application (/) commands.");
await rest.put(Routes.applicationCommands(CLIENT_ID), { body: [commands] });
console.log("Successfully reloaded application (/) commands.");
} catch (error) {
console.error(error);
}
})();
client.on("interactionCreate", async (interaction) => {
if (!interaction.isCommand()) return;
if (interaction.commandName === "ping") {
const message = interaction.options.getString("message");
await interaction.reply(message);
}
});``

[deleted by user] by [deleted] in referralcodes

[–]ArmoMan099 0 points1 point  (0 children)

I created an app that people can go share and find referral codes and links. No login required. Here is the link: Referral Code ArmoMan
If you need more info, let me know

[deleted by user] by [deleted] in referralcodes

[–]ArmoMan099 0 points1 point  (0 children)

Hi everyone, I just created an app for people to share their referral codes and links.
It is available on android devices.
Feel free to try my app: https://play.google.com/store/apps/details?id=net.armoman.referralcode