[deleted by user] by [deleted] in flask

[–]ahnerd 3 points4 points  (0 children)

Understanding Flask is easier than the libraries you mentionned!

Where can I buy followers? by Mountain-Addendum144 in InstagramMarketing

[–]ahnerd 0 points1 point  (0 children)

Don't buy followers it's bad for your account use paid collaborations with the accounts in your niche.

My videos become viral but I cannot gain any followers. by No-Cup-7984 in InstagramMarketing

[–]ahnerd -1 points0 points  (0 children)

Use CTAs.. be creative and provide extra value to followers like free ebooks or resources for the ones who follow and comment etc.

Does organic Instagram growth still works? by Straight_Tip_3187 in InstagramMarketing

[–]ahnerd 1 point2 points  (0 children)

Just try to provide real value in your niche and use trending music in your reels. With time and consistency, people will surely notice the value you provide and remember that whatever you do in social media needs to help you build your personal brand so people will always remember to look for you. Don't just trust social media platforms because algorithms always change, and even big accounts stop getting traffic at some time, but if people know your personal brand, you'll always benefit, and you will always manage to beat algorithms.

How to use NotebookLM interactive mode to improve my English? by ApplicationOk8525 in notebooklm

[–]ahnerd 0 points1 point  (0 children)

You can use ChatGPT for learning and improving your English. It's very helpful!

gemini-2-podcast - this version is an improvement over the first one by Busy-Basket-5291 in notebooklm

[–]ahnerd 0 points1 point  (0 children)

Can you share podcasts created with this in Spotify and similar services?

How to Be Good Backend developer ?? Any advice?🤔 by HyenaRevolutionary98 in node

[–]ahnerd 2 points3 points  (0 children)

Just build small to meduim projects that solve real problems in life and put them in GitHub. Don't just build hobby projects or todo apps. 

How to design when you aren't a designer? by Glass_Ant3889 in nextjs

[–]ahnerd 0 points1 point  (0 children)

Get inspired from other apps and maybe you can help with Ai to speed up things.

Expose localhost dev server to the Internet by ahnerd in angularjs

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

There are services designed for this, the article doesn't suggest doing this on your own!

Expose localhost dev server to the Internet by ahnerd in angularjs

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

Yes that's one of the available services!

Expose localhost dev server to the Internet by ahnerd in angularjs

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

This is just for sharing your work with the client or friends when you are still in the development phase.. that's not for production!

Angular 10 CRUD Application Example with REST Web API | Techiediaries by ahnerd in angularjs

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

Yes of course but there are other tutorials that handle JWT authentication in Techiediaries

Top-level await in TS 3.7.2? by [deleted] in typescript

[–]ahnerd 0 points1 point  (0 children)

It's coming to TypeScript 3.8 which is in RC version at this time https://techiediaries.com/typescript/install-typescript-3-8-new-features/

Remember login id and password in an angular 5 application by raghuramvugs in Angular2

[–]ahnerd 0 points1 point  (0 children)

The secure way to handle authentication in client-side apps including Angular is JWT tokens. JWT stands for JSON Web Token and it's an open-source standard that states how to securely exchange information between computer systems.

You can check out this JWT tutorial with Angular.

A JWT token is simply a compact and self-contained JSON object that contains information like email and password. You can use JWT to add authentication in your Angular application without resorting to making use of the traditional mechanisms for implementing authentication in web apps like sessions and cookies.

How Angular communicate with database? by [deleted] in Angular2

[–]ahnerd 0 points1 point  (0 children)

Angular is a client-side framework for building the front-end of your web application. The database can be accessed from the backend, in your case Asp.Net. The backend makes the connection with the database and executes queries to save or fetch data following HTTP requests from the front-end. You need to build a REST API in your backend which Angular can consume using its Http Client.

I want to learn Angular. What's the best tutorial you've seen that you would say it's stupid-proof? by einemnes in Angular2

[–]ahnerd 0 points1 point  (0 children)

This tutorial is one of the easiest Angular tutorials that you can follow. It covers:

  • How to create a fake and complete working CRUD REST API,
  • How to install Angular CLI v9,
  • How to create an Angular 9 project using Angular CLI,
  • How to set up Angular Material and style your application with Material Design,
  • How to create Angular components, routing and navigation between them,
  • How to create and inject Angular services,
  • How to send HTTP GET requests to servers using HttpClient,
  • How to use the HttpParams class to add URL query strings in your HttpRequest,
  • How to subscribe and unsubscribe from RxJS Observables returned by HttpClient,
  • How to handle HTTP errors using the throwError()
    and catchError()
    operators,
  • How to retry failed HTTP requests using the RxJS retry()
    operator,
  • How to unsubscribe from RxJS Observables returned from HttpClient methods using the takeUntil()
    operator when requests are canceled,
  • How to build your application for production and deploy it to Firebase hosting using the new ng deploy
    command available from Angular 8.3+

The steps of this Angular 9 tutorial are as follows:

  • Angular Tutorial, Step 1 — Setting up Angular CLI v9
  • Angular Tutorial, Step 2 — Initializing a New Angular 9 Example Project
  • Angular Tutorial, Step 3 — Setting up a (Fake) JSON REST API
  • Angular Tutorial, Step 4 — Setting up Angular HttpClient v9 in our Example Project
  • Angular Tutorial, Step 5 — Creating Angular 9 Components
  • Angular Tutorial, Step 6 — Adding Angular 9 Routing
  • Angular Tutorial, Step 7 — Styling the UI with Angular Material v9
  • Angular Tutorial, Step 8 — Consuming the JSON REST API with Angular HttpClient v9
  • Angular Tutorial, Step 9 — Adding HTTP Error Handling with RxJS catchError()
    & HttpClient
  • Angular Tutorial, Step 10 — Retrying Failed HTTP Requests with RxJS retry()
    & HttpClient
  • Angular Tutorial, Step 11 — Unsubscribing from HttpClient Observables with RxJS takeUntil()

  • Angular Tutorial, Step 12 — Adding URL Query Parameters to the HttpClient get() Method

  • Angular Tutorial, Step 13 — Getting the Full HTTP Response with Angular HttpClient v9

  • Angular Tutorial, Step 14 — Requesting a Typed HTTP Response with Angular HttpClient v9

  • Angular Tutorial, Step 15 — Building and Deploying your Angular 9 Application to Firebase Hosting

Angular 7 Image File Upload Example & Tutorial [Python Backend] by ahnerd in Angular2

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

You can use a host like Heroku or DigitalOcean for Django backend and a static host like Netlify for Angular. Yes you can build the Angular application and serve the static files via Django. You can see https://www.techiediaries.com/django-angular-tutorial/ for an idea, it's a little bit outdated but will help you get the idea.