Easy way to implement simple UI with .net

I’m mostly working with backend development in .net, but I need implementing web UI (+ possibly mobile app) for my pet project. Can someone "list" possible ways to do it? Maybe something about no code framework? I didn’t find such stuff for .net eco system. NOTE: I can work with asp.net in general, but it… Read More Easy way to implement simple UI with .net

What causes the "Argument expression expected" error in this Angular 13 app?

I am working on an e-commerce app who’s front-end is made in Angular 13. The below code is intended to sum the prices of the items in the cart: import { Component, OnInit } from ‘@angular/core’; @Component({ selector: ‘.app-top-cart’, templateUrl: ‘./top-cart.component.html’, styleUrls: [‘./top-cart.component.css’] }) export class TopCartComponent implements OnInit { cartItems: any = [ {… Read More What causes the "Argument expression expected" error in this Angular 13 app?

Any Public API for IRCTC to check PNR Status and Seat Availability?

I’m working on an android application to check PNR status and seat availability. So is there any public api for getting this information? I tried many API, but most of them are not working. >Solution : Have you tried https://rapidapi.com/IRCTCAPI/api/irctc1 ? They have some sample examples also, const axios = require("axios"); const options = {… Read More Any Public API for IRCTC to check PNR Status and Seat Availability?

How to fix 302 redirect Scrapy?

I am trying to scrape https://howlongtobeat.com, but I keep getting 302 redirects. I found that the website is using ajax from the network monitor. My code: class HltbSpider(scrapy.Spider): name = ‘hltb’ def start_requests(self): for i in list(range(1,2)): url = f’https://howlongtobeat.com/search_results?page={i}’ payload = "queryString=&t=games&sorthead=popular&sortd=0&plat=&length_type=main&length_min=&length_max=&v=&f=&g=&detail=&randomize=0" headers = { "content-type":"application/x-www-form-urlencoded", "user-agent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N)… Read More How to fix 302 redirect Scrapy?