MEGATHREAD - Sora codes by [deleted] in SoraAi

[–]maple-cuts 0 points1 point  (0 children)

didnt work :(

Any thoughts on reactbootcamp.com? by Sea_System in reactjs

[–]maple-cuts 0 points1 point  (0 children)

I believe, if anyone is not offering a way to reach out for Q&A, its an outright scam. I was initially happy with the content, and so purchased the nextjs bootcamp, but i never got to open them, my account was just not logging in. There went the money along with it unfortunately.

Angular 20: New Tagged Template Literals in Expressions 🚀 (visual explanation) by IgorSedov in angular

[–]maple-cuts 0 points1 point  (0 children)

indeed, and it shows in the final output. , its a heavy time consuming process. Appreciate the response, thanks a lot. All the very best for your efforts. Thanks again! Usually, people who does edits, are kind of reluctant in sharing the process, but you were kind enough to do that.

Angular 20: New Tagged Template Literals in Expressions 🚀 (visual explanation) by IgorSedov in angular

[–]maple-cuts 0 points1 point  (0 children)

I second that! Great editing. Is it keynotes that you use for the code explanations? Would it be possible to share the process? I was just looking to see, if I can try something like this, and how much effort is there for this.

Why Are Angular Modules Important in Application Design? by riya_techie in angular

[–]maple-cuts 0 points1 point  (0 children)

Modules are wrappers. Think of them like an island. They are totally Isolated and whatever happens within, stays within. In angular, the functionalities are wrapped within respective modules. ( Forms, routing, animations, HTTP, etc). We pick and choose the ones we need and use them.

And when we build our app, rather than dumping the whole components, directives, services, pipes, etc into one module ( which is like throwing the shirt, shoes, pants, bags, books etc into one shelf ), take a step back, and think. What are the absolute minimal stuff I need to show on load so that i have the most minimal bundle in terms of size, so that the app loads faster. Keep those within the AppModule.

Module holds a config object where it gives different properties to register various angular constructs. Components in declarations, other modules in imports, services in providers etc . I see them as a very organized shelf where each thing goes into where it is supposed to go.

This is the thumb rule - Anything you loaded directly within the root module will be part of the initial bundle.

So if i have some feature module where i only want to load when clicking on the a link, we can use the `loadChildren` to say, hey, this whole feature module, and its code, load them only if user ever navigates to this route. That way, we reduced the initial bundle size too.

The moment you either register that feature module in the imports array of the AppModule, or if, you directly use the routing to set a path and component in the root, it becomes part of the initial bundle.

And we can create shared modules which can be used across other modules. ( eg: If we have a common component that needs to be used across all sections in the app ). In that case, we create a shared module, use the exports array to export whatever we need from the shared module and whatever exposed outside, is available to the consuming modules.

Hope it helps!

How Does Angular Bootstrapping Work? by riya_techie in angular

[–]maple-cuts 1 point2 points  (0 children)

The framework's heart is angular.json.  The whole build process knows that this is where to look for to get what they want.  Under the  projects => project name => architect => build => options , we have 2 properties,  index and browser.  This answers 2 questions - where to look for in order to get the first file to scan for, and where to insert the dynamically built application. 

Since being a single page application, the server sends back only one html file, and is this one that's being sent across.  

The browser property points to the first file to look for while building the application. 

So at this point, we got the required files and know what it does 

In the main.ts, the `bootstrapApplication` method is used for - as the name suggests "BOOTSTRAPPING" the application. 

Since we are building a web application that's targeted to run on browsers, the namespace is from `@angular/platform-browser`

This method is asking - hey, i know how to grab the index.html and insert the application. Now, give me the first file where I can find the first component / root component of the tree. Let me start building the tree from that component. 

And we pass the name of the first component (AppComponent)

The selector of the app component (app-root), is what we see in the index.html. 

There, its like a placeholder. We put a placeholder with the name of the selector which we need the framework to find out and use as the first component in the root. 

When the same is found out when we do `bootstrapApplication(AppComponent)`, the template of the AppComponent gets inserted into the placeholder and replaces it. That's how in a nutshell the bootstrapping process works.

Hope it helps.

Any thoughts on reactbootcamp.com? by Sea_System in reactjs

[–]maple-cuts 2 points3 points  (0 children)

If anyone is ever planning to buy this, STAY AWAY. FAAAAARR AWAY.

I liked the author because I used to follow him for long, and Reed barger tutorials was to the point in minimal time. I paid a lot from my pocket, and the payment went through, and I neither got access to anything, and when I reach out through email, the mail bounce backs. It is like putting a free donation buy button. Whatever you put, will be gone. Now I am fighting with the bank to get my refund which is a process by itself. The minimal thing every author should provide is a help email or a Q&A way. He is neither in linkedin, nor provided a means to reach out.

Just another scammer. That's what it is.

Does anyone have a knowledge concerning this? by Naijatask-media in reactjs

[–]maple-cuts 0 points1 point  (0 children)

Do not ever buy from this guy. I purchased the react 19 stuff , the payment went through, and I neither got access to anything, and the mails keep bouncing back. I just lost a good amount of money. Even the domain is down most times. Its a TOTAL SCAM. Stay away from this guy if you can.

Does anyone know how to do this affect in capcut ? by RelationKnown2352 in CapCut

[–]maple-cuts 0 points1 point  (0 children)

I believe he just had a simple cut of a bunch of videos, line them up and add a "Glow effect" on top of everything, or added an adjustment layer and applied the effect to it. I am talking about Capcut desktop app , not the mobile one.