stackoverflow icon

Stackoverflow

Javascript function is returning an undefined value [duplicate]

I'm trying to display a browser's IP address in a table, fetching the IP address from https://api.ipify.org. So, I did this: function makeRequest(url, callback) { const xhr = new XMLHttpRequest(); ...

  • javascript
  • function
  • undefined
vote icon

-1

comments icon

0

avatar icon

Ed S.

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

3

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

1

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

john cena

Issue with Environment Variable in React - Getting undefined in URL

.env REACT_APP_BASE_URL=https://mysite.azurewebsites.net/ .js const baseUrl = process.env.REACT_APP_BASE_URL; const url = `${baseUrl}WP/SiteLoginAPI/`; console.log('Constructed URL:', url); Problem ...

  • reactjs
  • azure
  • undefined
  • .env
vote icon

-1

comments icon

1

avatar icon

Mudasir Habib

Warning: Undefined array key 0 releases/80/vendor/magento/module-configurable-product/Model/Product/Type/VariationMatrix.php on line 47

A configurable in the Product view opens up with the error message, of which I cannot proceed any further. The children attached can open up without issue. There were not any issues with opening up ...

  • arrays
  • key
  • undefined
  • magento2
  • configurable-product
vote icon

0

comments icon

0

avatar icon

user76474

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

Uncaught TypeError: Cannot read properties of undefined while reading values from an array that is not undefined in console.log()

I am developing a simple application in React, and I have an array that I want to use .map and display some options. There are two selects, one for the year, and one for the month, which should update ...

  • reactjs
  • arrays
  • typeerror
  • undefined
vote icon

0

comments icon

0

avatar icon

FellipeParreiras

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

Reading values from 'Google form' is undefined [duplicate]

I wrote a code in App Script and connected it to a form on the Google Forum Now the problem is that I can't read the data from the fields in any way. I keep getting 'undefined' errors Like: TypeError: ...

  • javascript
  • google-apps-script
  • triggers
  • undefined
  • google-forms
vote icon

0

comments icon

0

avatar icon

Shevy kossovsky

Function returns UNDEFINED while scipt does returns values

I was able to run this script and get the values out of the response. Happy as I was, I wrapped the script in a function and then it returned UNDEFINED. I am pulling all my hairs because the script ...

  • function
  • undefined
vote icon

0

comments icon

0

avatar icon

Paul tje

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

Redis Lost. Or did they?!

Jonas Scholz

Jonas Scholz

  • #cloud
  • #devops
  • #redis
  • #opensource
vote icon

No reaction

comments icon

2

Turn any git repo into llm readable format

TZGyn

TZGyn

  • #webdev
  • #javascript
  • #beginners
  • #ai
vote icon

No reaction

comments icon

Add Comment

Pomerium’s OpenTelemetry Tracing Support: Deeper Observability, Made Easy

Nick Taylor

Nick Taylor

  • #otel
  • #zerotrust
  • #o11y
  • #observability
vote icon

No reaction

comments icon

3

Add MCP to Any React App in Under 10 Minutes

Anmol Baranwal

Anmol Baranwal

  • #webdev
  • #programming
  • #ai
  • #react
vote icon

No reaction

comments icon

12

Powering Up PolyDisease Predictor: Backend Integration and Expanding Horizons! 🚀

Sudhanshu Ambastha

Sudhanshu Ambastha

  • #mysql
  • #python
  • #streamlit
  • #render
vote icon

No reaction

comments icon

1 comment

I Lost It All - My Tech Story

Scofield Idehen

Scofield Idehen

  • #programming
  • #webdev
  • #beginners
  • #javascript
vote icon

No reaction

comments icon

Add Comment

My Wins of the Week! ⭐

Anita Olsen

Anita Olsen

  • #weeklyretro
vote icon

No reaction

comments icon

Add Comment

RACI Matrix for Developers: Clarifying Roles and Responsibilities in Complex Projects

Pratham naik

Pratham naik

  • #webdev
  • #productivity
  • #devops
  • #opensource
vote icon

No reaction

comments icon

2

Performance Testing: Uncover Bottlenecks Before Users Do

Shubham Joshi

Shubham Joshi

  • #testing
  • #webdev
  • #programming
  • #mobile
vote icon

No reaction

comments icon

Add Comment

Doing TDD improved my DevExp

Lucas Geovani Castro Brogni

Lucas Geovani Castro Brogni

  • #tdd
  • #softwaredevelopment
  • #testing
vote icon

No reaction

comments icon

1 comment

Shallow Copy vs Deep Copy in JavaScript

Homayoun

Homayoun

  • #javascript
vote icon

No reaction

comments icon

Add Comment

Catalysis Node Operators Explained: The Backbone of a Scalable Web3 Ecosystem

Dhis_is_JJ

Dhis_is_JJ

  • #blockchain
  • #web3
  • #programming
  • #programmers
vote icon

No reaction

comments icon

Add Comment

Write Python Code Like a Ninja : Shrink 4 Lines into 1!

BHUVANESH M

BHUVANESH M

  • #programming
  • #python
  • #design
  • #learning
vote icon

No reaction

comments icon

Add Comment

How to Run DeepSeek Locally Using Ollama

Lightning Developer

Lightning Developer

  • #deepseek
  • #webdev
  • #ai
  • #tutorial
vote icon

No reaction

comments icon

Add Comment

"How the Internet Really Works — From Your ISP to Submarine Cables"🛜🕸️

NITIN B

NITIN B

  • #cloud
  • #networking
  • #programming
  • #beginners
vote icon

No reaction

comments icon

1 comment

🚀 upup – a drop-in React uploader for AWS S3, DigitalOcean, Backblaze, GCP & Azure w/ GDrive and OneDrive user integration!

Amin Dhouib

Amin Dhouib

  • #react
  • #webdev
  • #opensource
  • #javascript
vote icon

No reaction

comments icon

Add Comment

PDF 1.7 vs PDF 2.0: Why it’s important for developers to understand

John Pagley

John Pagley

  • #programming
  • #pdf
  • #tooling
vote icon

No reaction

comments icon

Add Comment

Meetily: Your AI-Powered Meeting Assistant - Revolutionizing Collaboration!

GitHubOpenSource

GitHubOpenSource

  • #ai
  • #meeting
  • #transcription
  • #open
vote icon

No reaction

comments icon

Add Comment

Software Testing Methodologies: What They Are and Why They Matter

Tech Solutions

Tech Solutions

vote icon

No reaction

comments icon

Add Comment

Implementation of Data Archival Solution with GenAI

Ankur Srivastava

Ankur Srivastava

vote icon

No reaction

comments icon

Add Comment

Demystifying HTTP for Web Developers — Part 1

Hasan Safwan

Hasan Safwan

  • #webdev
  • #techleadership
  • #networking
  • #backenddevelopment
vote icon

No reaction

comments icon

Add Comment

AI Dating Pictures: How Artificial Intelligence Is Changing Online Dating

usman asghar

usman asghar

  • #ai
  • #pictu
  • #spfx
  • #devplusplus
vote icon

No reaction

comments icon

Add Comment

Peer Review 3: France Data Engineering Job Market Analysis Pipeline Infra (Part 1)

Pizofreude

Pizofreude

  • #dezoomcamp
  • #dataengineering
  • #learning
  • #cloud
vote icon

No reaction

comments icon

Add Comment

Part 2: The Vite Chronicals

Simone van Buuren

Simone van Buuren

  • #webdev
  • #vite
  • #react
  • #programming
vote icon

No reaction

comments icon

Add Comment

VibeCodingFlow - AI IDE

Ion

Ion

  • #python
  • #ai
  • #opensource
vote icon

No reaction

comments icon

3

gradient triangle

Corporation for Public Broadcasting Statement Regarding Executive Ordercpb.org

avatar icon

coloneltcb

solid triangle

97

solid triangle

24

gradient triangle

Apple App Store guidelines remove ban on encouraging external payments in USdeveloper.apple.com

avatar icon

macguillicuddy

solid triangle

224

solid triangle

126

gradient triangle

How to live an intellectually rich lifeutsavmamoria.substack.com

avatar icon

TheLadyParadox

solid triangle

89

solid triangle

42

gradient triangle

A Common Lisp jq replacementworld-playground-deceit.net

avatar icon

tmtvl

solid triangle

35

solid triangle

6

gradient triangle

Converting a Git repo from tabs to spaces (2016)eev.ee

avatar icon

keybored

solid triangle

9

solid triangle

13

gradient triangle

The Cannae Problemjoanwestenberg.com

avatar icon

flobosg

solid triangle

11

solid triangle

discuss

gradient triangle

Altair at 50: Remembering the first Personal Computergoto10retro.com

avatar icon

rbanffy

solid triangle

40

solid triangle

11

gradient triangle

Irish privacy watchdog hits TikTok with Є530M fine over data transfers to Chinaapnews.com

avatar icon

Alifatisk

solid triangle

190

solid triangle

111

gradient triangle

Just redesigned my personal site with a TTY-style interfaceabdisa.me

avatar icon

abdisaDev

solid triangle

106

solid triangle

49

gradient triangle

RustAssistant: Using LLMs to Fix Compilation Errors in Rust Codemicrosoft.com

avatar icon

mmastrac

solid triangle

89

solid triangle

51

gradient triangle

Bloom Filtersthegreenplace.net

avatar icon

mfrw

solid triangle

114

solid triangle

36

gradient triangle

Claude Integrationsanthropic.com

avatar icon

bryanh

solid triangle

629

solid triangle

227

gradient triangle

Crawlers impact the operations of the Wikimedia projectswikimedia.org

avatar icon

edward

solid triangle

34

solid triangle

21

gradient triangle

Don't watermark your legal PDFs with purple dragons in suitsarstechnica.com

avatar icon

Tomte

solid triangle

77

solid triangle

62

gradient triangle

Redis is open source againantirez.com

avatar icon

antirez

solid triangle

1684

solid triangle

637

gradient triangle

Vatican Observatoryvaticanobservatory.org

avatar icon

alexmolas

solid triangle

31

solid triangle

6

gradient triangle

Show HN: OSle – A 510 bytes OS in x86 assemblygithub.com/shikaan

avatar icon

shikaan

solid triangle

86

solid triangle

19

gradient triangle

Third party cookies must be removedw3ctag.github.io

avatar icon

pabs3

solid triangle

370

solid triangle

180

gradient triangle

Webflow makes GSAP 100% free – plus more updateswebflow.com

avatar icon

mefengl

solid triangle

10

solid triangle

1 comment

gradient triangle

Ask HN: Who is hiring? (May 2025)

avatar icon

whoishiring

solid triangle

209

solid triangle

228

gradient triangle

Taxes and fees not included: T-Mobile's latest price lock is nearly meaninglessarstechnica.com

avatar icon

hn_acker

solid triangle

19

solid triangle

16

gradient triangle

Suno v4.5suno.com

avatar icon

platers

solid triangle

4

solid triangle

discuss

gradient triangle

Reflecting on a Year of Gamedev in Zigcodeberg.page

avatar icon

bgthompson

solid triangle

80

solid triangle

67

gradient triangle

Owen Le Blanc: creator of the first Linux distributionlwn.net

avatar icon

sohkamyung

solid triangle

100

solid triangle

16

gradient triangle

Felix86: Run x86-64 programs on RISC-V Linuxfelix86.com

avatar icon

rguiscard

solid triangle

102

solid triangle

24

gradient triangle

Anubis saved our websites from a DDoS attackfabulous.systems

avatar icon

DoctorOW

solid triangle

307

solid triangle

224

gradient triangle

New species of methane-producing archaea discovered in the human gutphys.org

avatar icon

PaulHoule

solid triangle

24

solid triangle

1 comment

gradient triangle

Dopamine signals when a fear can be forgottenpicower.mit.edu

avatar icon

gmays

solid triangle

182

solid triangle

110

gradient triangle

LLMs for Engineering: Teaching Models to Design High Powered Rocketsarxiv.org

avatar icon

tamassimond

solid triangle

95

solid triangle

29

gradient triangle

Mathematician solves algebra's oldest problem using intriguing number sequencesphys.org

avatar icon

amichail

solid triangle

8

solid triangle

2