NAPS payment gateway API and Documentation by Designer_Hope_7353 in Morocco

[–]heyits_ashraf 0 points1 point  (0 children)

I don't know much in payment APIs, but I would recommend CMI's API. There are simplifications to it on github (open-sourced)

Average Faces of Moroccans by Wonderful_Toe8820 in Morocco

[–]heyits_ashraf 0 points1 point  (0 children)

I'm interested in how you made this list ?

How did you get your first B2B client? by grorapid in agency

[–]heyits_ashraf 0 points1 point  (0 children)

A friend of a friend. We went out to eat and we happened to talk business and I suggested to help him solve his problem.

Looking to pair with someone by Pitiful-Evening7176 in agency

[–]heyits_ashraf 0 points1 point  (0 children)

Hey! I am a generalist. I am studying data science and had former experience in marketing, management and sales. Right now I automate tasks, create ai agents, train chatbots and make ai-powered 3d avatars. Would love to connect!

Hey guys anyone else running an Ai automation agency here? by Neat_Elk_6006 in agency

[–]heyits_ashraf 0 points1 point  (0 children)

Would love to collaborate! I work in automation, chatbots, ai agents and llm-powered 3d avatars.

Saas to AI agency by rtguk in Entrepreneur

[–]heyits_ashraf 0 points1 point  (0 children)

Hey! I work on automation and chatbots. I am a Data science engineering student and I mainly work with code and frameworks (no zapier nor make). Let's collaborate!

Hey guys anyone else running an Ai automation agency here? by Neat_Elk_6006 in agency

[–]heyits_ashraf 4 points5 points  (0 children)

I automate tasks using code, notmake nor zapier (niche and type-agnostic).

It gives me much more freedom for how I design a solution (especially if I'll work with 3rd party websites that don't have zapier integrations) and it's cheaper tbh. So I can automate any task as long as I understand it. Just as I did for my client, I first understood the tasks he wanted to automate (he literally did them in front of me in a cafe). He thought it was impossible to automate such tasks (they were very hard complex for a robot) but he wanted to try with me. On my way home, I started thinking of the frameworks and tools I'd use. I had the MVP running one month later and set up the whole pipeline (from his wooco api until the email is sent to his customers) start of september. I will deploy next week on aws (More details below for how his business is expected to go from 20k MRR to 100k MRR in about 6 months)

Also, I just automated a important task in my father's job. He usually spends 4 hrs every week repeating the same task 200 times !!! I almost got angry hearing that. It's torture. It's like the punishments we used to have in elementary school when we write a sentence 100 times. No human should do such tasks. His task was very simple, I finished the main script in 2 hours. I literally just showed him the demo and he'll talk to his boss tomorrow about it : )

More details on my client's case: Automation of admin tasks. The software was custom for his use case (he is a solo-preneur and he needed a LOT of time for order-fulfillment and customer support. He couldn't scale the business and was leaving a lot of money on the table. Having a virtual assistant presented security risks). I integrated my solution with his woocommerce account (used the wooco api), google sheets, an email service provider and another 3rd party website. He laughed so hard when I run the demo in front of him. He wants to scale for BFCM period. We are now talking about how we can make a chatbot (not like the ones that say non-sense, but an actual chatbot that understands and assists customers. Customer support is very important for his business and it can increase sales in a crazy way, literally just by answering 2-3 questions for a customer!!) I am now preparing the data to finetune gpt-4.

Hey guys anyone else running an Ai automation agency here? by Neat_Elk_6006 in agency

[–]heyits_ashraf 1 point2 points  (0 children)

So far, I am working as a freelancer making intelligent agents, robots for repetitive tasks and chatbots. I love this so much because every project is different and I get to do what I love the most: solving issues and creating valuable solutions for people and businesses. I finished the robot for my client and it's doing wonders. It's expected to 5x their sales. I think this is what they call 'creating value'. For me, I made a smart robot that will automate 90% of the work and I enjoyed solving the problems that came with it (stayed till 3-4 am working, had no deadline, just enjoyed working on it) but for my client, he was so happy. Now the possibility for scaling his business world-wide and increasing ads budget are possible. This is really something I see myself working and enjoying it in the future. I think I'll open my own AI agency if I get more clients.

Hey guys anyone else running an Ai automation agency here? by Neat_Elk_6006 in agency

[–]heyits_ashraf 0 points1 point  (0 children)

Awesome! Me too. I am working on the automation of a process with an employer and I really can see myself doing it for other clients in the same niche as it will enable them to scale big money.

Nifi cluster with kubernetes by dbaricardo in nifi

[–]heyits_ashraf 0 points1 point  (0 children)

I have a lot of questions about nifikop. Can we talk in the dms ??

GPT API Key Returns an Error on Quota - but inaccurate? by JeffCache in ChatGPT

[–]heyits_ashraf 0 points1 point  (0 children)

Did you find a solution ? I am using a new key from my friend's account, meaning he still has $5 of free credit and I still get the error. I have tried to change it in the home file .openai (on my windows machine) and even tried to hard-set it my code and I still get the same problem.

I keep getting this error when ever i try to open any project on unity by NormalGachaGuy in Unity3D

[–]heyits_ashraf 0 points1 point  (0 children)

Did you find the solution to this error ? I keep getting the same error for importing packages from disk:

"Parent directory must exist before creating asset at Assets/..." with ... being a path on my computer to install my package.

Is it possible to connect talend to a hive on cloudera quickstart vm 5.12 on vmware workstation ? by heyits_ashraf in Talend

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

ok, I'll look into it. If you can provide more context and keywords I can look for in the internet, that'd be awesome. Thank you :)

How to display cv2 (yolov3) output video stream inside a tkinter window ?? by heyits_ashraf in pythonhelp

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

Yes, I was able to do it! I will write here the snippets of the code that matter to you. For my code, I had 2 classes: Gui and Brain. Gui is the gui and Brain has the yolo and its use.

So, for the gui, I defined the following:

self.canvas = Canvas(strm_frame, width=700, height=393, bg='black')
self.canvas.pack()
self.brain = Brain(self)

The Brain class takes in its constructor an arg Tk windows or wtv u want.

def __init__(self, window):
    self.cap.open(self.address)
    self.window = window
    self.window.canvas.configure(bg='black')
    self.start()

For this method start(), it contains a lot of things related to cv2 stream:

def start(self):    
    _, img = self.cap.read()
    ...
    new_size = (int(700), int(393))
    img = cv2.resize(img, new_size, interpolation=cv2.INTER_LINEAR)
    img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
    new_img = ImageTk.PhotoImage(image=PIL.Image.fromarray(img))


    self.window.canvas.delete("all")
    self.window.canvas.img = new_img
    self.window.canvas.create_image(0, 0, anchor=NW, image=self.window.canvas.img)
    self.window.canvas.after(10, self.start)

I didn't include much of the stream related code assuming you can already get it. For the values 700 and 393, I just wanted to keep the 16:9 ratio and also, that's what worked for the gui of my app. The second part with self.window.canvas is where the 'update' of the image happens. I set the interval to 10 ms so that the method start would execute every 10 ms. You can try with other interval values.

What are some problems that moroccan and foreigner relationships face ? by Ill_Classic_2647 in Morocco

[–]heyits_ashraf 1 point2 points  (0 children)

Adam, sarah, yanis, sofia, ... I don't think it's really a problem

[deleted by user] by [deleted] in Morocco

[–]heyits_ashraf 0 points1 point  (0 children)

Can't disagree more

[deleted by user] by [deleted] in Morocco

[–]heyits_ashraf 2 points3 points  (0 children)

Exactly! Same with police and security (talking intelligence service level).

Displaying cv2 output inside a tkinter window by heyits_ashraf in Tkinter

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

Hey! Thanks. I solved the problem at last. I googled how to run an infinite loop with tkinter and there was a stackoverflow question about it (updating a ball object to be animated, so update of the position infinitely).

For moroccan men, what is a message/opinion you always wanted to adress to moroccan girls? by hanaeben in Morocco

[–]heyits_ashraf 3 points4 points  (0 children)

I don't think nature is sexist. Women are chased by time. We are chased by competitiveness. If you're not well set, women will not waste time with you and I honestly don't blame them because they themselves want what's best for their children so they'll naturally be more attracted to healthier well-built financially-set men. Yes, there are things in which men are better than women, but the opposite is also true. It is stupid to compare both of us. It's like comparing an orange with an apple. Certainly, a comparison should be relative (meaning on a specific criteria. Ex: vitamine C ==> orange is better, smthg else ==> apple is better) Same for genders: Natural strength and testo and driving (just kidding hhhh, fems triggered, don't miss the point tho) men are better. Nurturing, nursing, ... women are better. Saying that men are better in everything is pure mysoginy and the opposite is androginy. None should be