stackoverflow icon

Stackoverflow

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

TypeError: Cannot read property 'explorerPage' of undefined

I am upgrading jest from version 23 to 29. My project used to work fine before the upgrade, suddenly started observing this issue. I use Typescript as a language. TestPageDefs Module looks like below: ...

  • javascript
  • typescript
  • jestjs
  • undefined
  • ts-jest
vote icon

1

comments icon

0

avatar icon

Manoj Kumar

stackoverflow icon

Dev to

What was your win this week?

Jess Lee

Jess Lee

  • #discuss
  • #weeklyretro
vote icon

No reaction

comments icon

3

AI-Powered Cloud Cost Management: Architect’s Guide to AWS Billing MCP Server

Sarvar Nadaf

Sarvar Nadaf

  • #aws
  • #ai
  • #agentaichallenge
  • #productivity
vote icon

No reaction

comments icon

1 comment

My Education Track Submission - AI Learning Project

Ariff

Ariff

  • #deved
  • #learngoogleaistudio
  • #ai
  • #gemini
vote icon

No reaction

comments icon

Add Comment

Understanding Queues in JavaScript

Gift Egbonyi

Gift Egbonyi

  • #javascript
  • #datastructures
  • #queue
  • #beginners
vote icon

No reaction

comments icon

Add Comment

Vegi: Vegetables are not Aliens

Mikkel Frimer-Rasmussen

Mikkel Frimer-Rasmussen

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

No reaction

comments icon

Add Comment

Why Good Products Fail: A Reality Check on Marketing

Shayan

Shayan

  • #webdev
  • #programming
  • #javascript
  • #ai
vote icon

No reaction

comments icon

2

AirPods Live Translation: Useful Innovation or Hidden Risk?

Ali Farhat

Ali Farhat

  • #airpods
  • #translation
  • #ios
  • #apple
vote icon

No reaction

comments icon

6

Microphone Choice and Cancelling Noise

Ingo Steinke, web developer

Ingo Steinke, web developer

  • #productivity
vote icon

No reaction

comments icon

Add Comment

🔐 My DevOps Journey: Part 3 — Linux Users, Groups, Permissions & Package Managers

Sheersh Sinha

Sheersh Sinha

  • #discuss
  • #devops
  • #linux
  • #career
vote icon

No reaction

comments icon

Add Comment

Rust vs. Your Next JavaScript Framework: Which Should You Learn?

Francesco Ciulla

Francesco Ciulla

vote icon

No reaction

comments icon

Add Comment

Smart Log Anomaly Detection with Python and Isolation Forest

Haripriya Veluchamy

Haripriya Veluchamy

  • #python
  • #machinelearning
  • #devops
  • #beginners
vote icon

No reaction

comments icon

Add Comment

How I Automated Document Insights Using AWS Textract, Bedrock, and QuickSight

Mursal Furqan Kumbhar

Mursal Furqan Kumbhar

  • #aws
  • #machinelearning
  • #devops
  • #automation
vote icon

No reaction

comments icon

Add Comment

🌊 Be the Rising Tide: The Multiplying Effect of Lifting (and Pushing) Others

Davide de Paolis

Davide de Paolis

  • #leadership
  • #outofthecomfortzone
  • #engineeringmanager
  • #personalgrowth
vote icon

No reaction

comments icon

Add Comment

How I Handle 15-Second AI Tasks Without Losing 87% of Users

horus he

horus he

  • #webdev
  • #ai
  • #javascript
  • #tutorial
vote icon

No reaction

comments icon

Add Comment

Beyond the Label: How Python Variables Really Work with Memory

Aaron Rose

Aaron Rose

  • #python
  • #coding
  • #variables
  • #memory
vote icon

No reaction

comments icon

Add Comment

Build Laravel AI Features in Minutes: A Guide to the Gemini Package

Hossein Hezami

Hossein Hezami

  • #laravel
  • #gemini
  • #ai
  • #api
vote icon

No reaction

comments icon

Add Comment

Timing Attacks and Their Remedies — an in-depth guide

Md Mahbubur Rahman

Md Mahbubur Rahman

  • #timingattacks
  • #security
  • #codereview
  • #refactoring
vote icon

No reaction

comments icon

Add Comment

Integrating Auth0 Authentication with NestJS Using Organizations (Multi-Tenant Setup)

Gad Ishimwe

Gad Ishimwe

  • #nestjs
  • #authentication
  • #auth0
  • #jwt
vote icon

No reaction

comments icon

Add Comment

Nifi Bundle Release Announcement

David Kjerrumgaard

David Kjerrumgaard

  • #news
  • #tooling
  • #dataengineering
  • #opensource
vote icon

No reaction

comments icon

Add Comment

RowSwift: A Simple CSV Analyzer for iOS

Juan De Dios Santos

Juan De Dios Santos

  • #showdev
  • #data
  • #swift
  • #ios
vote icon

No reaction

comments icon

Add Comment

I wish every young businessperson could learn this...

Jaideep Parashar

Jaideep Parashar

vote icon

No reaction

comments icon

1 comment

The Hardest Decision I Ever Made in Business

Jaideep Parashar

Jaideep Parashar

  • #discuss
  • #ai
  • #beginners
  • #startup
vote icon

No reaction

comments icon

1 comment

My First Open Source Code Review Experience

Aubrey D

Aubrey D

  • #beginners
  • #learning
  • #opensource
vote icon

No reaction

comments icon

Add Comment

Code Review and Testing – Lessons Learned (OSD600LAB_1)

Hitesh Sachdeva

Hitesh Sachdeva

  • #challenge
  • #testing
  • #identity
vote icon

No reaction

comments icon

Add Comment

Building a Free AI-Powered ATS Checker: From Problem to Production

Borhan Uddin

Borhan Uddin

  • #programming
  • #webdev
  • #resume
  • #ai
vote icon

No reaction

comments icon

Add Comment

gradient triangle

Legal winma.tt

avatar icon

pentagrama

solid triangle

34

solid triangle

9

gradient triangle

UTF-8 is a brilliant designiamvishnu.com

avatar icon

vishnuharidas

solid triangle

425

solid triangle

174

gradient triangle

Chatbox app is back on the US app storegithub.com/chatboxai

avatar icon

themez

solid triangle

15

solid triangle

1 comment

gradient triangle

QGIS is a free, open-source, cross platform geographical information systemgithub.com/qgis

avatar icon

rcarmo

solid triangle

325

solid triangle

86

gradient triangle

Meow: Yet another modal editing on Emacsgithub.com/meow-edit

avatar icon

Bogdanp

solid triangle

46

solid triangle

5

gradient triangle

Life, work, death and the peasant: Rent and extractionacoup.blog

avatar icon

baud147258

solid triangle

67

solid triangle

4

gradient triangle

FFglitch, FFmpeg fork for glitch artffglitch.org

avatar icon

captain_bender

solid triangle

85

solid triangle

13

gradient triangle

I used standard Emacs extension-points to extend org-modeedoput.it

avatar icon

Karrot_Kream

solid triangle

131

solid triangle

5

gradient triangle

Many hard LeetCode problems are easy constraint problemsbuttondown.com/hillelwayne

avatar icon

mpweiher

solid triangle

428

solid triangle

370

gradient triangle

OCI Registry Explorerdag.dev

avatar icon

jcbhmr

solid triangle

3

solid triangle

discuss

gradient triangle

The treasury is expanding the Patriot Act to attack Bitcoin self custodytftc.io

avatar icon

bilsbie

solid triangle

620

solid triangle

456

gradient triangle

Tips for installing Windows 98 in QEMU/UTMsporks.space

avatar icon

Bogdanp

solid triangle

40

solid triangle

3

gradient triangle

EU court rules nuclear energy is clean energyweplanet.org

avatar icon

mpweiher

solid triangle

664

solid triangle

503

gradient triangle

California lawmakers pass SB 79, housing bill that brings dense housinglatimes.com

avatar icon

mji

solid triangle

60

solid triangle

10

gradient triangle

Antlr-Ng Parser Generatorantlr-ng.org

avatar icon

djoldman

solid triangle

8

solid triangle

discuss

gradient triangle

3D modeling with paperarvinpoddar.com

avatar icon

joshuawootonn

solid triangle

252

solid triangle

38

gradient triangle

Unauthorized Windows/386virtuallyfun.com

avatar icon

Bogdanp

solid triangle

50

solid triangle

6

gradient triangle

Discovery of a new satellite or ring arc around Quaoarphys.org

avatar icon

wglb

solid triangle

18

solid triangle

2

gradient triangle

Reduce bandwidth costs with dm-cache: fast local SSD caching for network storageupsun.com

avatar icon

tlar

solid triangle

32

solid triangle

10

gradient triangle

How FOSS Projects Handle Legal Takedown Requestsf-droid.org

avatar icon

mkesper

solid triangle

96

solid triangle

8

gradient triangle

Rust: A quest for performant, reliable software [video]youtube.com

avatar icon

raphlinus

solid triangle

108

solid triangle

36

gradient triangle

OpenAI Groveopenai.com

avatar icon

manveerc

solid triangle

107

solid triangle

116

gradient triangle

Corporations are trying to hide job openings from US citizensthehill.com

avatar icon

b_mc2

solid triangle

423

solid triangle

321

gradient triangle

Kefir: Solo-developed full C17/C23 compiler with extensive validationprotopopov.lv

avatar icon

jprotopopov

solid triangle

20

solid triangle

5

gradient triangle

Proton Mail suspended journalist accounts at request of cybersecurity agencytheintercept.com

avatar icon

lehi

solid triangle

185

solid triangle

86

gradient triangle

Windows-Use: an AI agent that interacts with Windows at GUI layergithub.com/cursortouch

avatar icon

djhu9

solid triangle

107

solid triangle

20

gradient triangle

Real-time AI hallucination detection with timeplus: A chess exampletimeplus.com

avatar icon

gangtao

solid triangle

11

solid triangle

6

gradient triangle

How to become a pure mathematician or statistician (2008)hbpms.blogspot.com

avatar icon

ipnon

solid triangle

78

solid triangle

74

gradient triangle

Show HN: Aris – a free AI-powered answer engine for kidsaris.chat

avatar icon

andrewdug

solid triangle

21

solid triangle

34

gradient triangle

Oq: Terminal OpenAPI Spec Viewergithub.com/plutov

avatar icon

der_gopher

solid triangle

95

solid triangle

12