stackoverflow icon

Stackoverflow

Bitwise division in C : Programme seems to work for other numbers but when the divisor is 0 it returns 11 for no apparent reason

I am trying to solve the problem posed in this question which asks that division of two numbers be performed in a bitwise manner. So, I wrote the following functions. sum() adds two numbers. larger() ...

  • c
  • bit-manipulation
  • undefined
  • bitwise-operators
  • division
vote icon

2

comments icon

2

avatar icon

uran42

Codeigniter 3... Undefined Property $Ngetest

Models: Ngetest.phpp <?php defined('BASEPATH') or exit('No direct script access allowed'); class Ngetest extends CI_Model { public function showEcho() { return "naisu"; ...

  • codeigniter
  • model
  • controller
  • undefined
  • codeigniter-3
vote icon

0

comments icon

0

avatar icon

Syraxes

Error: Undefined Mixin in Nuxt 3 when using Sass — "Pre-transform error: [sass] Error: Undefined mixin." I'm working with a Nuxt 3 project

I'm working with a Nuxt 3 project, and I'm getting the following error related to Sass mixins when I try to run the dev server: âžś DevTools: press Shift + Alt + D in the browser (v2.5.0) ...

  • css
  • sass
  • undefined
  • nuxt3.js
  • scss-mixins
vote icon

0

comments icon

0

avatar icon

Rinkal

Javascript TypeError undefined on for loop only (not off-by-one) [duplicate]

I have a function that gets called when you click a button. I'm checking to see if the clicked item has the class "itm-active". If it does, don't do anything. Else check for elements that ...

  • javascript
  • for-loop
  • typeerror
  • undefined
  • innerhtml
vote icon

1

comments icon

0

avatar icon

bananas0102

NestJS: After adding a new module and injecting services from other modules, application stopped working

I'm building a backend application using NestJS, and everything was working smoothly. Recently, I added a new module and attempted to use services from existing modules within it. However, after ...

  • nestjs
  • undefined
  • circular-dependency
vote icon

0

comments icon

0

avatar icon

Naceur Kheder

In React + TypeScript, when should a prop be prop?: Type vs prop: Type | undefined? [duplicate]

When designing TypeScript props for React components, I'm sometimes unsure whether I should type props like: prop?: Type or prop: Type | undefined My understanding so far: prop?: Type The prop ...

  • javascript
  • reactjs
  • typescript
  • undefined
  • optional-chaining
vote icon

0

comments icon

0

avatar icon

Andrey Rafalskyi

When submitting data through an EJS form, all data get returned as "undefined"

I'm currently trying to make a login and signup form using EJS, Express, Node, etc. However Whenever I submit data from a form, all data is being returned as "Invalid" I've checked my user ...

  • mongodb
  • express
  • undefined
  • ejs
vote icon

0

comments icon

0

avatar icon

user30069178

Why are my songs showing up as undefined?

Working in p5.js on a class assignment. We have to make a music player. I found a tutorial in the site, but despite copying the code near-exactly (only altering so as to implement multiple songs), I ...

  • javascript
  • undefined
  • p5.js
  • audio-player
vote icon

1

comments icon

2

avatar icon

user29731287

Undefined reference to inherited Methods [duplicate]

I'm trying to implement two Classes - 'EditObject' and 'ProgressObject'. Progressobject is supposed to inherit from EditObject, all its variables and Methods. When I try to use Methods from '...

  • c++
  • inheritance
  • undefined
vote icon

0

comments icon

0

avatar icon

Carll

Type similar to Record<A, B> but saying that not for every A there is a B value (not even an undefined)

Record is defined as follows: /** * Construct a type with a set of properties K of type T */ type Record<K extends keyof any, T> = { [P in K]: T; }; It is defined such that for a Record&...

  • typescript
  • undefined
  • partial
vote icon

0

comments icon

1

avatar icon

Sebastian Barth

What does the empty function body return in JS?

Does an empty function body implicitly return undefined in JS? console.log((() => {})()) Clearly it does right? The console outputs undefined in the example above... // but let's do ...

  • javascript
  • undefined
  • void
vote icon

0

comments icon

2

avatar icon

Asleepace

Why can for...in loop run on undefined?

Why does this code work? for (const i in undefined) {} From for...in - JavaScript | MDN: The for...in statement iterates over all enumerable string properties of an object (ignoring properties keyed ...

  • javascript
  • for-loop
  • undefined
  • enumerable
  • typescript-never
vote icon

2

comments icon

1

avatar icon

Ooker

TypeScript ignores explicit undefined type annotation

When I specify a type of foo|undefined for myConst below, type inspection correctly tells me that myConst has a type of foo|undefined on that line. However, in the next line down, type inspection says ...

  • typescript
  • undefined
  • typing
vote icon

2

comments icon

2

avatar icon

Nate Glenn

Set DatePicker to null when getting ESLint and Prettier errors for null and undefined?

I am trying to give my custom DatePicker an initial value of null/make the date empty. I've tried setting the initial state to both null and undefined, but I get either a ESLint or Prettier error that ...

  • datepicker
  • null
  • undefined
  • prettier
  • typescript-eslint
vote icon

0

comments icon

0

avatar icon

Delilah

holder.js has 'global is undefined' error

When I tried to use holder image within the below code: import { run as runHolder } from "holderjs/holder"; import React, { Fragment, useEffect } from "react"; import { Image } ...

  • reactjs
  • parameters
  • undefined
  • holder.js
vote icon

1

comments icon

0

avatar icon

Park JongBum

Testing undefined, failing in JS

In an Express app I have the following JS code (server side) in a middleware to check that a user provides an adequate token. This is only the relevant part for my question: const authHeader = req....

  • javascript
  • express
  • undefined
vote icon

0

comments icon

0

avatar icon

Michel

"Cucumber @ParameterType Named Parameter Not Recognized in IntelliJ"

I'm using @ParameterType in Cucumber to define a custom type and assigning a name to it. However, when I reference this name in my @Then step definition, the step in my feature file still shows as ...

  • intellij-idea
  • annotations
  • cucumber
  • undefined
vote icon

1

comments icon

0

avatar icon

Aydın Free

Uncaught TypeError: Cannot read properties of undefined (reading 'refs')

Getting below error when XYZ component called. Uncaught TypeError: Cannot read properties of undefined (reading 'refs') at detach (chunk-Y4ZIAFTH.js?v=375eb230:3053:3) at chunk-Y4ZIAFTH.js?v=...

  • javascript
  • reactjs
  • material-ui
  • null
  • undefined
vote icon

0

comments icon

0

avatar icon

Dinesh Kumar

Uncaught TypeError: Cannot read properties of undefined (reading 'refs') in React Js using NX monorepo

Getting this error while closing the modal from closeModal component. I have written path replace using history.push() function. Ex. const OnClose = () =>{ history.push({ pathname: "/...

  • javascript
  • reactjs
  • null
  • undefined
  • ref
vote icon

0

comments icon

0

avatar icon

Dinesh Kumar

React native, pressable issue href being undefined

This is the code I am working with, I am running into an issue of my href being undefined, at runtime upon clicking on any of the links. What am I doing wrong, and why is it happening? I am especially ...

  • react-native
  • undefined
  • href
  • pressable
vote icon

0

comments icon

0

avatar icon

aug kaz

Typescript: undefined property cast check?

We ran into the issue that a property was undefined even though the type doesn't allow it. Turns out the way we create the object in place has some issues. I made a small example which the linter ...

  • typescript
  • undefined
vote icon

-3

comments icon

1

avatar icon

user1269009

Cannot Read Properties of undefined in a 2-Dimensional Matrix, HTML & Javascript

I'm working on creating a pixel-based light in the dark simulation with JavaScript to improve my coding skills. The goal is to create a bubble of light around the cursor as it moves. I'm only ...

  • javascript
  • html
  • typeerror
  • undefined
vote icon

0

comments icon

2

avatar icon

Evan Bair

Why ChromeDevTools cannot destructure property of props but Firefox can?

I'm currently making a Messaging App with Socket.io to have live chat. My app architecture is based like this : function App() { return ( <> <SocketProvider> <...

  • reactjs
  • google-chrome
  • firefox
  • undefined
vote icon

0

comments icon

0

avatar icon

Hachounet

How to solve undefined property $xx in the public function __construct at a controller on Codeigniter 4.5.5

I got undefined property $Surat when defined an object called Surat at a controller on Codeigniter 4.5.5 This is the controller file <?php namespace App\Controllers; use App\Controllers\...

  • undefined
  • codeigniter-4
vote icon

-2

comments icon

1

avatar icon

Raina Zah

Function in flask app can't find variable, but online flask debugger can [duplicate]

I've been working on a python web development course, and my course wants me to make a website that lists some cafés in London. I'm trying to code the functionality to add a café, but when I run the ...

  • python
  • python-3.x
  • flask
  • undefined
  • flask-wtforms
vote icon

0

comments icon

0

avatar icon

SmallCoder12

Mongodb TypeError: Cannot read properties of undefined (reading 'User')

models.tsx import mongoose from "mongoose"; const userSchema = new mongoose.Schema( { name: {type: String, required: true, unique: true}, username: {type: String}, ...

  • mongodb
  • model
  • undefined
vote icon

0

comments icon

0

avatar icon

정채림

Why do I get a linker message: undefined reference to `Date::Date(int, int, int)' [duplicate]

Doing the problems in a popular textbook, I got a error when using a member function in a struct: .../s09-04-02.cpp:30: undefined reference to `Date::Date(int, int, int)' // s09-04-02.cpp simple ...

  • c++
  • struct
  • linker
  • undefined
  • linker-errors
vote icon

0

comments icon

1

avatar icon

cbcalvin

Jquery: Each inside each not recognizing pre-defined array

I'm trying to create an array that keeps track of which lines are already hit so they aren't checked repeatedly if I allow the game to continue until another bingo is hit. This is where my problem is ...

  • jquery
  • multidimensional-array
  • typeerror
  • undefined
vote icon

0

comments icon

1

avatar icon

user2108555

The method 'createTicker' isn't defined for the type

I was trying to create a simple ticker: Ticker? ticker; @override void initState() { super.initState(); ticker = createTicker(tick); ticker!.start(); } @override void dispose() { ticker?....

  • flutter
  • dart
  • undefined
vote icon

1

comments icon

1

avatar icon

Avarage cat enjoyer

type data for props undefined in local component vue3.js with import tag Vue3, Vue3 needed for a alone page

The use-noms-cpnt component is as follows: <div id="app"> <use-noms-cpnt></use-noms-cpnt> </div> I have an App component and an App mounted like this, I put a props ...

  • vuejs3
  • radio-button
  • components
  • dataset
  • undefined
vote icon

0

comments icon

1

avatar icon

Vince

environmental variables accessing in backend files [duplicate]

The following is the tree structure of the files file tree This is code with error : mailtrap.config.js import { MailtrapClient } from "mailtrap"; import dotenv from "dotenv"; ...

  • javascript
  • environment-variables
  • undefined
vote icon

-1

comments icon

1

avatar icon

Vinay Sankar Gokavarapu

Function return undefined [duplicate]

I have a function that return a undefined thing even if it normally need to return something defined. I have this code with a function: const GtfsRealtimeBindings = require("gtfs-realtime-...

  • javascript
  • function
  • asynchronous
  • async-await
  • undefined
vote icon

-3

comments icon

2

avatar icon

Yoan Pettorelli

How to use public functions in other source code files in golang?

Here is my codes. //main.go package main import ( "fmt" ) func main() { bc := NewBlockchain() bc.AddBlock("Send 1 BTC to Ivan") bc.AddBlock("Send 2 more BTC ...

  • go
  • undefined
  • goland
vote icon

0

comments icon

2

avatar icon

이해성

Digital Root Function returns "undefined" [duplicate]

I'm new to programming! Trying to write a function that obtains the digital root of a number. Currently struggling with the "for loop" and "if else" portion of the formula that ...

  • javascript
  • loops
  • recursion
  • undefined
vote icon

0

comments icon

0

avatar icon

user26789162

API FOR JS loop giving undefined at end of data

I am working with this Github code. https://github.com/He3556/Mixcloud-Unfollowers the issue I am facing is that it seems that at the end of the API page, the for loop gives me undefined on the ...

  • jquery
  • for-loop
  • undefined
vote icon

1

comments icon

0

avatar icon

post poop zoomies

Server Timing API - There's undefined and unexpected png on my running browser

I got a weird issue when I was working on html, js.Below is what I got, the point is that when I sent the same code to other computer, it works well with the data, and I also got a line of "...

  • javascript
  • timer
  • undefined
  • content-security-policy
  • phishing
vote icon

0

comments icon

0

avatar icon

Flora Jiang

Why Google_Service_Drive type is undefined

Please someone help me with this. Why the Google_Service_Drive is undefined? I Has installed the google/apiclient and do the configuration on .env file but it still says its undefined. I've been tryng ...

  • php
  • google-api
  • google-drive-api
  • undefined
  • intelephense
vote icon

0

comments icon

2

avatar icon

Is 46

First Element is Undefined in Drop Event Handler using jQuery UI Draggable and Droppable

I'm working on a web application (via python Flask server) using jQuery UI's draggable and droppable features. I have draggable elements that are supposed to be combined when dropped into a droppable ...

  • javascript
  • html
  • variables
  • undefined
vote icon

0

comments icon

1

avatar icon

In Alpine.JS, this.property inside method is undefined

I have a request for help with Alpine.JS I have a packetaApiKey property defined. When I access it this.packetaApiKey in the pickPoint method, it works as expected. But in the showSelectedPickupPoint ...

  • javascript
  • properties
  • undefined
  • this
  • alpine.js
vote icon

0

comments icon

1

avatar icon

Marek Vinárčik

Angular - TypeError: Cannot read properties of undefined (reading 'forEach')

I am trying to read the roles array from this object and getting the error: TypeError: Cannot read properties of undefined (reading 'forEach') Code: this.data.roles.forEach(role => { this....

  • angular
  • typescript
  • runtime-error
  • undefined
vote icon

0

comments icon

1

avatar icon

user2549382

Can TypeScript specify keys that are allowed to not exist, but cannot be assigned to `undefined`? [duplicate]

Summary I want to disallow any explicit undefined value while still allowing implicit undefined values. Background In JavaScript, we have this behavior where accessing a key that does not exist yields ...

  • typescript
  • undefined
vote icon

2

comments icon

1

avatar icon

nullromo

Empty vs. Undefined in Javascript [duplicate]

In Javascript, if I make an array using Array(10), it creates an array with 10 empty items. If I access any item in that array, it returns undefined. However, if I create an array with a length of 10 ...

  • javascript
  • undefined
  • is-empty
vote icon

1

comments icon

2

avatar icon

idk

Having an issue with Tyranobuilder, unexpected character issue

I am building a game using Tyranobuilder, I defined a character focus behavior on game settings, such that when a character joins the scene and speaks, they will be bright and when another character ...

  • character
  • undefined
  • game-engine
  • behavior
vote icon

0

comments icon

1

avatar icon

dramaticlook

Problem when using loop-generated variables in ansible

What i'm trying to do is generating lots of similar directory trees. I woul like to set a dict which describes the pattern of the tree. Then i want ansible to generate multiple directory trees with ...

  • loops
  • variables
  • ansible
  • nested
  • undefined
vote icon

0

comments icon

1

avatar icon

Kirill Zelepukin

undefined object while using useContext

This particular things seems happening when i run these codes AuthContext.jsx: // context is a state management tool for passing props import { createContext, useReducer } from "react"; // ...

  • reactjs
  • undefined
  • mern
  • react-context
vote icon

0

comments icon

0

avatar icon

Vinay Sankar Gokavarapu

vuejs3 and vite import.meta.env.VITE_BASE_URL not working

Hello I'm trying to get base url from .env file. And I'm getting undefined. I have tried some stack overflow answers and documentation but it didn't help. console.log('env', import.meta.env....

  • vue.js
  • vuejs3
  • undefined
  • vite
  • .env
vote icon

1

comments icon

1

avatar icon

Dusan

Facing error while making iOS build in xcode 15.2

`Failed to build iOS app in Xcode 15.2. I am facing this errors ("ld: Undefined symbols" and "clang: error: linker command failed with exit code 1 (use -v to see invocation)"). ...

  • ios
  • xcode
  • build
  • undefined
  • debug-symbols
vote icon

-1

comments icon

1

avatar icon

Arslan Zafar

Uncaught Error: Cannot read property 'navigate' of undefined

I'm trying to implement a very simple navigation in react native. I'm trying to navigate from the Home Screen by clicking a button to go to a Details Screen. When clicking the button I get this error: ...

  • react-native
  • react-navigation
  • undefined
  • stack-navigator
vote icon

0

comments icon

0

avatar icon

Anastasija Stojanovska

React component receiving undefined props

I have a simple React app(created with vite), where i am passing a list of objects to a component Carts, Carts component simply parses the list and returns JSX. But there is a error pointing that the ...

  • reactjs
  • undefined
  • vite
  • react-props
vote icon

1

comments icon

1

avatar icon

shivam prajapati

My php form on my website is ending blank submissions to my email [duplicate]

Below is the php code i have on my website. We have been getting some email form submissions that are working but we have also been getting a large amount of empty submissions. When i try to submit a ...

  • php
  • arrays
  • validation
  • undefined
  • form-submit
vote icon

0

comments icon

0

avatar icon

ilana a

stackoverflow icon

Dev to

Making Nike Run Club Searchable

Tarush Nagpal

Tarush Nagpal

  • #running
  • #webdev
  • #sideprojects
  • #opensource
vote icon

No reaction

comments icon

2

Meow Mountain - postmortem of a 13KB game

JoĂŁo L.

JoĂŁo L.

  • #js13kgames
  • #gamedev
  • #typescript
  • #javascript
vote icon

No reaction

comments icon

2

Hello senior developer: tell me which AIs you use (and please, you already use some)

Quique Fdez Guerra

Quique Fdez Guerra

  • #discuss
  • #programming
  • #ai
  • #productivity
vote icon

No reaction

comments icon

1 comment

Top 7 Featured DEV Posts of the Week

Jess Lee

Jess Lee

  • #discuss
  • #top7
vote icon

No reaction

comments icon

3

🏡 DreamNest.AI: AI-Powered House Design, 2D & 3D Plan Audio & Video Walkthroughs & Smart E-Commerce

Nizzad

Nizzad

  • #devchallenge
  • #googleaichallenge
  • #ai
  • #gemini
vote icon

No reaction

comments icon

31

Solving Elm Router "Double Update" Problem

Moremi Vannak

Moremi Vannak

  • #elm
  • #functional
vote icon

No reaction

comments icon

2

Meme Monday

Ben Halpern

Ben Halpern

  • #discuss
  • #watercooler
  • #jokes
vote icon

No reaction

comments icon

60

Here's How To Build Fullstack Agent Apps (Gemini, CopilotKit & LangGraph)

Anmol Baranwal

Anmol Baranwal

  • #programming
  • #webdev
  • #opensource
  • #ai
vote icon

No reaction

comments icon

10

Associações polimórficas no Rails: como fazer, prós e contras

Pedro Leonardo

Pedro Leonardo

  • #ruby
  • #rails
  • #sql
  • #development
vote icon

No reaction

comments icon

1 comment

Using Apollo in Svelte 5

DaniAcu

DaniAcu

  • #svelte
  • #apollo
  • #graphql
  • #javascript
vote icon

No reaction

comments icon

Add Comment

What is in the Internet's Traffic Jam? A Story of TCP and UDP on a Shared Wireless Lane

sujan khadka

sujan khadka

  • #ns3
  • #network
  • #cpp
  • #tutorial
vote icon

No reaction

comments icon

Add Comment

A Pod with Public IP

Abhijeet Mohanan

Abhijeet Mohanan

  • #aws
  • #kubernetes
  • #networking
vote icon

No reaction

comments icon

Add Comment

Mangle: Google's Bold Take on Database Programming

Taha ziani

Taha ziani

  • #database
  • #google
  • #sql
vote icon

No reaction

comments icon

1 comment

TanStack Router: Go to Previous page after Sign In

Leonardo Montini

Leonardo Montini

  • #react
  • #webdev
  • #tutorial
  • #javascript
vote icon

No reaction

comments icon

Add Comment

21 native browser APIs you might not have used before

David Turnbull

David Turnbull

  • #api
  • #javascript
  • #webdev
vote icon

No reaction

comments icon

Add Comment

Enhancing Infrastructure as Code Development and Operations with Amazon Q, MCP, and the Thoth Framework

Alejandro Velez

Alejandro Velez

  • #devops
  • #ai
  • #aws
  • #iac
vote icon

No reaction

comments icon

Add Comment

From 1.2GB to 54MB: My Docker Image Went on a Diet

Hasan Ashab

Hasan Ashab

  • #docker
  • #devops
  • #performance
  • #containers
vote icon

No reaction

comments icon

Add Comment

Applying Any SAST Tools for an Infrastructure as Code Application in Terraform

Sebastian Rodrigo ARCE BRACAMONTE

Sebastian Rodrigo ARCE BRACAMONTE

  • #devops
  • #terraform
  • #tooling
  • #security
vote icon

No reaction

comments icon

Add Comment

Lambda Explained: A Visual Journey from Init to Invoke

Mayaank Vadlamani

Mayaank Vadlamani

  • #aws
  • #lambda
  • #go
vote icon

No reaction

comments icon

Add Comment

LangChain4j in Action: Building an AI Assistant in Java

Diego Pérez

Diego Pérez

  • #ai
  • #openai
  • #rag
  • #langchain4j
vote icon

No reaction

comments icon

Add Comment

opencode context manager

Thai Nguyen Hung

Thai Nguyen Hung

  • #discuss
  • #ai
  • #tooling
  • #cli
vote icon

No reaction

comments icon

Add Comment

Cost-Optimized Three-Tier Architecture on AWS with DevOps

Hasan Ashab

Hasan Ashab

  • #cicd
  • #architecture
  • #devops
  • #aws
vote icon

No reaction

comments icon

2

Engineering "The" Loop

Trent Best

Trent Best

  • #architecture
  • #designpatterns
  • #gamedev
vote icon

No reaction

comments icon

Add Comment

5 Mistakes Businesses Make When Adopting AI

Jaideep Parashar

Jaideep Parashar

  • #discuss
  • #ai
  • #productivity
  • #beginners
vote icon

No reaction

comments icon

1 comment

Integrating Google Calendar with OAuth2 in Node.js

Fredrick Emmanuel

Fredrick Emmanuel

  • #google
  • #oauth
  • #node
  • #calender
vote icon

No reaction

comments icon

Add Comment

gradient triangle

Things you can do with a Software Defined Radio (2024)blinry.org

avatar icon

mihau

solid triangle

657

solid triangle

117

gradient triangle

Apple releases iOS 15.8.5 security update for 10-year old iPhone 6ssupport.apple.com

avatar icon

jerlam

solid triangle

222

solid triangle

64

gradient triangle

How to make the Framework Desktop run even quieternoctua.at

avatar icon

lwhsiao

solid triangle

218

solid triangle

66

gradient triangle

Irssi: IRC Client in a Docker Imagedocker.com

avatar icon

razodactyl

solid triangle

19

solid triangle

19

gradient triangle

Denmark close to wiping out cancer-causing HPV strains after vaccine roll-outgavi.org

avatar icon

slu

solid triangle

576

solid triangle

230

gradient triangle

GNU Midnight Commandermidnight-commander.org

avatar icon

pykello

solid triangle

4

solid triangle

discuss

gradient triangle

Doom crash after 2.5 years of real-world runtime confirmed on real hardwarelenowo.org

avatar icon

minki_the_avali

solid triangle

109

solid triangle

40

gradient triangle

A dumb introduction to z3asibahi.github.io

avatar icon

kfl

solid triangle

140

solid triangle

15

gradient triangle

Slow Social Mediaherman.bearblog.dev

avatar icon

rishikeshs

solid triangle

18

solid triangle

8

gradient triangle

CubeSats are fascinating learning tools for spacejeffgeerling.com

avatar icon

calcifer

solid triangle

24

solid triangle

1 comment

gradient triangle

Shai-Hulud malware attack: Tinycolor and over 40 NPM packages compromisedstepsecurity.io

avatar icon

jamesberthoty

solid triangle

937

solid triangle

729

gradient triangle

Waymo has received our pilot permit allowing for commercial operations at SFOwaymo.com

avatar icon

ChrisArchitect

solid triangle

592

solid triangle

577

gradient triangle

Global Peace Index 2025visionofhumanity.org

avatar icon

teleforce

solid triangle

37

solid triangle

38

gradient triangle

Coders End, from Typers to Thinkersetsd.tech

avatar icon

elieteyssedou

solid triangle

11

solid triangle

6

gradient triangle

I built my own phone because innovation is sad rn [video]youtube.com

avatar icon

Timothee

solid triangle

199

solid triangle

38

gradient triangle

In Defense of C++dayvster.com

avatar icon

todsacerdoti

solid triangle

94

solid triangle

143

gradient triangle

Wait4X allows you to wait for a port or a service to enter the requested stategithub.com/wait4x

avatar icon

atkrad

solid triangle

22

solid triangle

5

gradient triangle

How Container Filesystem Works: Building a Docker-Like Container from Scratchiximiuz.com

avatar icon

lgunsch

solid triangle

119

solid triangle

23

gradient triangle

AMDVLK (AMD Open Source Driver For Vulkan) project is discontinuedgithub.com/gpuopen-drivers

avatar icon

haunter

solid triangle

17

solid triangle

4

gradient triangle

Launch HN: Rowboat (YC S24) – Open-source IDE for multi-agent systemsgithub.com/rowboatlabs

avatar icon

segmenta

solid triangle

51

solid triangle

22

gradient triangle

LavaMoat – Tools for sandboxing your dependency graphgithub.com/lavamoat

avatar icon

TheFreim

solid triangle

3

solid triangle

discuss

gradient triangle

A new experimental Google app for Windowsblog.google

avatar icon

meetpateltech

solid triangle

139

solid triangle

174

gradient triangle

Mystery in the Moonengelsbergideas.com

avatar icon

benbreen

solid triangle

5

solid triangle

discuss

gradient triangle

Show HN: A PSX/DOS style 3D game written in Rust with a custom software renderertotenarctanz.itch.io

avatar icon

mvx64

solid triangle

7

solid triangle

discuss

gradient triangle

September 15, 2025: The Day the Industry Admitted AI Subscriptions Don't Workkilocode.ai

avatar icon

olelves

solid triangle

32

solid triangle

4

gradient triangle

Top UN legal investigators conclude Israel is guilty of genocide in Gazamiddleeasteye.net

avatar icon

Qem

solid triangle

792

solid triangle

570

gradient triangle

Wind turbine blade transportation challengesieee.org

avatar icon

Brajeshwar

solid triangle

89

solid triangle

122

gradient triangle

Scammed out of $130K via fake Google call, spoofed Google email and auth syncbewildered.substack.com

avatar icon

davidscoville

solid triangle

327

solid triangle

518

gradient triangle

When the job search becomes impossiblejeffwofford.com

avatar icon

pertinhower

solid triangle

192

solid triangle

270

gradient triangle

The Linux Process Journey (2023) [pdf]thelearningjourneyebooks.com

avatar icon

maxmoehl

solid triangle

69

solid triangle

1 comment