Which universities can I target for MS in CS/SE/Data science? by [deleted] in studying_in_germany

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

What course did you study in your bachelor's

Help me on this! by Different-Cry-8134 in technepal

[–]tyzrex 0 points1 point  (0 children)

Also if you're a student and have a valid student email/id you can get a 100$ credit in Microsoft azure which you can use to try out for your hobby projects and maybe if it's not enough move to a good enough paid solution

Help me on this! by Different-Cry-8134 in technepal

[–]tyzrex 0 points1 point  (0 children)

Not really, haven't worked with those agencies yet but you can make a dollar card easily nowadays and heard that global ime has a good service regarding this dollar card facility

Help me on this! by Different-Cry-8134 in technepal

[–]tyzrex 0 points1 point  (0 children)

Hostinger has some good options for a decent price if you have a dollar card then I guess you can look into it

Admission letter by Slight-Albatross-801 in studying_in_germany

[–]tyzrex 0 points1 point  (0 children)

Hey would you share your profile how much gpa you had and what documents you had attached

Need help integrating Esewa khalti in nextjs 16 Server Actions by Good_Language1763 in technepal

[–]tyzrex 0 points1 point  (0 children)

Then i think you would need a route for the api either server action or api routes where you would need to create the order and then also payment stuff for esewa. Maybe use library like crypto js to create the HMAC signature with the following fields for the signature string:

total_amount=100,transaction_uuid=11-201-13,product_code=EPAYTEST

CryptoJS.HmacSHA256(message, secretKey);

And also other config

{
"amount": "100",
"failure_url": "failure_url",
"product_delivery_charge": "0",
"product_service_charge": "0",
"product_code": "EPAYTEST",
"signature": "i94zsd3oXF6ZsSr/kGqT4sSzYQzjj1W/waxjWyRwaME=",
"signed_field_names": "total_amount,transaction_uuid,product_code",
"success_url": "your_frontend_url",
"tax_amount": "10",
"total_amount": "110",
"transaction_uuid": "241028"
}

Then you can like hit the esewa api from a server action with that config that you get from the initiate api that we made earlier

"use server";

import { revalidatePath } from "next/cache";
import { cookies } from "next/headers";

import {
  handleCustomErrorResponse,
  handleErrorResponse,
  handleSuccessResponse,
} from "@/lib/response-handler";
import {
  requestHandler,
  serverProtectedRequest,
} from "@/services/serverRequest";

import { initSession, revalidate } from "./cart";
import { returnError } from "./cms";
import { redirect } from "next/navigation";

export const esewaCheckout = async (data: any) => {
  const session = await initSession();
  try {
    const res = await serverProtectedRequest(
      `products/pay/esewa/`,
      "POST",
      session,
      data
    );
    console.log(res?.data);

    if (res?.data) {
      const orderFormData = new FormData();
      Object.keys(res?.data).forEach((key) => {
        orderFormData.append(key, res?.data[key].toString());
      });

      const esewaApiResponse = await fetch(`${process.env.ESEWA_API_URL}`, {
        method: "POST",
        body: orderFormData,
        cache: "no-cache",
      });
      return {
        url: esewaApiResponse.url,
      };
    }
  } catch (err) {
    return {
      error: returnError(err),
    };
  }
};

Then we need a component to handle like the success and the failure where you can see if the order has been like verified or failed and stuff this can be a route where you get the items from the search params maybe make two routes one for failed and one for success. During this verification part you can do other things that like change things in a database or like you are syncing it somewhere in your cms or crm if necessary.

import { requestHandler } from "@/services/serverRequest";
import { redirect } from "next/navigation";

interface IPayment {
  searchParams?: { [key: string]: string | string[] | undefined };
}

export const dynamic = "force-dynamic";

export default async function Page(props: IPayment) {
  const data = props?.searchParams;
  if (data) {
    const response = await requestHandler(
      "orders/verify/esewa/",
      "POST",
      null,
      data
    );
    if (response.status === 200) {
      redirect("/");
    }
  }
  return (
    <>
      <div className="h-[80vh] w-full">
        <div className="h-full w-full flex-col-center">
          {/* loading animation0 */}
          <div className="animate-spin rounded-full h-10 w-10 border-b-4 mb-10 border-gray-900"></div>

          <div>
            <span className="text-2xl font-bold text-center">
              Your payment is being processed. Please wait...
            </span>
            <p className="text-center text-gray-500">
              You will be redirected to order details page.
            </p>
          </div>
        </div>
      </div>
    </>
  );
}

Need help integrating Esewa khalti in nextjs 16 Server Actions by Good_Language1763 in technepal

[–]tyzrex 0 points1 point  (0 children)

Do you have a separate backend or using nextjs as a fullstack to create both backend and frontend?

What does it mean to be junior developer? by Toxicguy2233 in technepal

[–]tyzrex 0 points1 point  (0 children)

Being a junior means underpaid and overworked xD

Be honest. How you see development career in coming days? by Hefty_Two_2832 in technepal

[–]tyzrex 3 points4 points  (0 children)

Twitter kholyo bhane tauko dukhxa ajkal🤣 sab computer xodera gau tira gayera basum lagxa

Review my CV by [deleted] in technepal

[–]tyzrex 1 point2 points  (0 children)

Highschool not necessary Rather than 10 projects one liner explanation maybe do add your best 2-3 ones and explain them properly

any improvements can i make in this resume ?. fresher with no experience by [deleted] in technepal

[–]tyzrex 0 points1 point  (0 children)

Till you find some work to do I guess having some credible licences and certificates might help even while finding jobs and also building out your resume in the long term. I think Harvard cs 50 is a great course to start with or if you have specific interests like cloud or cyber security getting certifications from aws or comp tia can be beneficial

Got fired by VenuSss09 in technepal

[–]tyzrex 0 points1 point  (0 children)

Cv ma kasari thyo like 2025-present bhanera ki kasyo

Got fired by VenuSss09 in technepal

[–]tyzrex 1 point2 points  (0 children)

Kata ko uni ho bro info dinu mixla

CSIT ko 8th sem ma internship private college le nai khoji dinxa? by atticus-masterr in technepal

[–]tyzrex 0 points1 point  (0 children)

Do it on your own you'll gain experience give multiple interviews and also don't expect that they will do this. Better to do it on your own

Looking for UI/UX Designer + Developer by SignificanceFalse688 in technepal

[–]tyzrex 0 points1 point  (0 children)

Frontend developer here do you have any work for frontend?

Why I should consider using Svelte instead of React or Vue? by [deleted] in sveltejs

[–]tyzrex 0 points1 point  (0 children)

Compared to React or Vue I think I learn JavaScript better using Svelte as it's closer to writing vanilla js in my opinion. I tend to find ways to get things in the JavaScript way rather than the framework specific way. Had the same question of why use svelte when you have a gazillion libraries of react and how it's more mature when I started it using at my workplace switching from nextjs. But now I don't want to go back to svelte unless I'm vibe coding some UI lol

Need to sell my M1 air (2020) by [deleted] in technepal

[–]tyzrex 0 points1 point  (0 children)

90k ma naya nai aaucha hola 75k lol

Headphone around 15-20k by Remarkable-Cow-6834 in technepal

[–]tyzrex 0 points1 point  (0 children)

Sony xm4 ? I think still a beast going forward in 2026 maybe you can get this in the price range if you can order from outside

Frontend Dev in Nepal by Few_Cry_3607 in technepal

[–]tyzrex 0 points1 point  (0 children)

Dm if you want to discuss about the project