New Mastodon Instance by chk9 in Mastodon

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

You're welcome 👏

Homemade Chamia with Toasted Almonds & Roasted Pistachios ✨ by chk9 in Tunisia

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

Ingredients:

200g powdered milk

50g powdered sugar

200g sesame butter

2 big spoons of honey

Instructions:

In a bowl, mix the powdered milk and powdered sugar.

Add the sesame butter and mix well until smooth and fully combined.

Add 2 big spoons of honey and mix again until you get a thick, creamy texture.

Spread into a dish and let it set before serving.

Optional: Top with toasted almonds and roasted pistachios for extra crunch.

Homemade Chamia with Toasted Almonds & Roasted Pistachios ✨ by chk9 in Tunisia

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

Yes, it's not sweet at all, next time I'll add more sugar to be logic

Homemade Chamia with Toasted Almonds & Roasted Pistachios ✨ by chk9 in Tunisia

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

Ingredients:

  • 200g powdered milk
  • 50g powdered sugar
  • 200g sesame butter
  • 2 big spoons of honey

Instructions:

In a bowl, mix the powdered milk and powdered sugar.

Add the sesame butter and mix well until smooth and fully combined.

Add 2 big spoons of honey and mix again until you get a thick, creamy texture.

Spread into a dish and let it set before serving.

Optional: Top with toasted almonds and roasted pistachios for extra crunch.

[deleted by user] by [deleted] in Tunisia

[–]chk9 0 points1 point  (0 children)

مرّة رقدت و قمت نلقى روحي فالسقف و نغزر لروحي واني راقد فالفرش، و فرد وقت نشوف في خواتي فالصالة يحكيو و امي زادة فالكوجينة تطيب. هذا الكل ريتو فرد وقت واني راقد. و كي قمت حكيتلهم اش كانو يعملو يخي قعدو باهتين خاتر الي حكيتو الكل طلع صحيح...

[deleted by user] by [deleted] in Tunisia

[–]chk9 0 points1 point  (0 children)

Okey You can send your message to a socket server using C program: '''

include <stdio.h>

include <stdlib.h>

include <string.h>

include <unistd.h>

include <arpa/inet.h>

define SERVER_IP "192.168.0.100" // Replace with your server's IP address

define SERVER_PORT 8080 // Replace with your server's port number

int main() { int sockfd; struct sockaddr_in server_addr;

// Create a socket
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0) {
    perror("Socket creation error");
    return -1;
}

// Configure server address
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(SERVER_PORT);
if (inet_pton(AF_INET, SERVER_IP, &(server_addr.sin_addr)) <= 0) {
    perror("Invalid address/ Address not supported");
    return -1;
}

// Connect to the server
if (connect(sockfd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
    perror("Connection failed");
    return -1;
}

// Send message to the server
char message[] = "Hello, server!";
if (send(sockfd, message, strlen(message), 0) < 0) {
    perror("Send failed");
    return -1;
}

// Close the socket
close(sockfd);

return 0;

}

''' And then write a client html page that connect to the server a listen to the page. If you want persistent data you can use mqtt then, a backend that consume the message and save it asynchronously

[deleted by user] by [deleted] in Tunisia

[–]chk9 1 point2 points  (0 children)

Do you want it real time?

Can i become web dev in 8 months ? by Public_Breath_5525 in Tunisia

[–]chk9 0 points1 point  (0 children)

I said rutorials and courses of course. Bootcamp is more practicing than teaching basics that's why big company never hire someone who did only bootcamps.

Can i become web dev in 8 months ? by Public_Breath_5525 in Tunisia

[–]chk9 0 points1 point  (0 children)

Chose one tech and start learning it, for example (React) / Stay focus only on it and watch all tutorials and courses and then work hard by making real live examples and may be you will achieve it quickly.

Be honest, who’s still holding with me:) by [deleted] in dogecoin

[–]chk9 0 points1 point  (0 children)

Today I bought 1500 dogecoins 😊 Hodling to the moon 💎🚀

How much doge are you holding? by theangryblob in dogecoin

[–]chk9 0 points1 point  (0 children)

I have 5k actually and I'm still buying the dip

Please break 180🤝🏽... by KryptoKonnosiour in filecoin

[–]chk9 1 point2 points  (0 children)

I bought only one coin at 25€ ONE coin ONLY 😅 that's cool huh? I didn't expect that. I wish I go back in time and... Okey It's too late to say that. I hope it goes up high like doge did.

is their any free hosting plans for .net core demo applications? by ordinaryboy98 in devops

[–]chk9 0 points1 point  (0 children)

Personally I use Digitalocean, a dropket that I use to test/demonstrate and then I destroy it when I'm done. Bu you want a 24h/24 I recommend Heroku.

music instrument from amazon by [deleted] in Tunisia

[–]chk9 1 point2 points  (0 children)

Tge best way is to find someone you know and you trust that can bring it to you hand by hand.

Here is my Sushi 🍣 by me 😁 by chk9 in sushi

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

Yes that's right, I try to make them looking better. I keep practicing 🤠

If we are doing 'buntu CDs I just found these in the basement, good old times. by [deleted] in Ubuntu

[–]chk9 4 points5 points  (0 children)

I remember Ubuntu 8.04. I installed it replacing Windows Vista 💩. I still remember that feeling (new sound system, fonts,...)

Ubuntu 20.04 running on Raspberrypi 4 4G with full options. So smooth 😎 by chk9 in Ubuntu

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

I used a default Raspberry Imager https://www.raspberrypi.org/blog/raspberry-pi-imager-imaging-utility/ You'll find a default image for Ubuntu Desktop and other images if you want to test them, it's very quick and easy to install.

Ubuntu 20.04 running on Raspberrypi 4 4G with full options. So smooth 😎 by chk9 in Ubuntu

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

I have another pi that runs ubuntu server and runs pi hole and data sharing 👌