๐Ÿš€ OharaLumina

All Posts

Thumbnail for Posts

ASPNET special tags

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Asp.Net Syntax Tags

What is the official name for the special ASPNET tags like this lt gt lt gt lt gt lt gt I cant seem to figure out the conceptual or well known name for these

Thumbnail for Posts

Best way to implement request throttling in ASPNET MVC

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Asp.Net-Mvc Throttling

Were experimenting with various ways to throttle user actions in a given time period Limit questionanswer posts Limit edits Limit feed retrievals For the time

Thumbnail for Posts

Breadth First Vs Depth First

๐Ÿ“‚ Categories: Programming

When Traversing a TreeGraph what is the difference between Breadth First and Depth first Any coding or pseudocode examples would be

Thumbnail for Posts

Cannot find name describe Do you need to install type definitions for a test runner

๐Ÿ“‚ Categories: Typescript
๐Ÿท๏ธ Tags: Jestjs

When using TypeScript in conjunction with Jest my specs would fail with error messages like testunitsomespects11 error TS2582 Cannot find name describe Do you

Thumbnail for Posts

CASCADE DELETE just once

๐Ÿ“‚ Categories: Postgresql
๐Ÿท๏ธ Tags: Sql-Delete Cascade

I have a Postgresql database on which I want to do a few cascading deletes However the tables arent set up with the ON DELETE CASCADE rule Is there any way I

Thumbnail for Posts

Check Whether a User Exists

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Bash

I want to create a script to check whether a user exists I am using the logic below getent passwd test gt devnull 2ampgt1 echo 0 getent passwd test1 gt devnull

Thumbnail for Posts

Checking for a null int value from a Java ResultSet

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Null Resultset

In Java Im trying to test for a null value from a ResultSet where the column is being cast to a primitive int type int iVal ResultSet rs

Thumbnail for Posts

diff current working copy of a file with another branchs committed copy

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git

I have a repo with file foo in the master branch I switched to bar branch and made some changes to foo How can I now run a git diff between this copy which

Thumbnail for Posts

difference between css height 100 vs height auto

๐Ÿ“‚ Categories: Css
๐Ÿท๏ธ Tags: Css

I was asked a question in an interview that what is the difference between the css height100 and heightauto Can any one