Skip to main content
1 vote
1 answer
28 views

When building a KB in GeneXus 17, it outputs the following error: error: ERR 211 Not enough local stack Followed by: warning: [BuildDaemon] Auto restarting Specifier daemon. True - AutoRestartCount: ...
DeivisKC_Solution's user avatar
-4 votes
0 answers
46 views

Where does the reference to a variabl e.g. x = 3 get stored in Python? Sources on the web say that the references are stored on the stack. ex: Stack Memory: Stack memory stores temporary data, ...
Dominic's user avatar
  • 127
Best practices
0 votes
0 replies
33 views

I’m trying to navigate between nested pages using AutoRoute, but I’m unable to route to child pages or go back using AutoRouter.of(context).back(). I have an Authentication module with multiple nested ...
Vishnu Kumar's user avatar
0 votes
0 answers
123 views

Depreciation_DM = model.constant("Depreciation_DM") Depreciation_DM.equation = 0.0708 DMPIncRate = model.constant("DMPIncRate") DMPIncRate.equation = 0.0284 DMPInc = model.flow(&...
Teguh Juang Sinaga's user avatar
2 votes
2 answers
150 views

Consider the assembly program below: .section .data .section .text .global _start _start: pushl $85 #make it obvious in memory popl %ebx movl $1, %eax int $0x80 It ...
Hoax's user avatar
  • 25
0 votes
0 answers
76 views

I'm writing a 64-bit Windows DLL that needs to locate, on the stack, the return address that belongs to the host EXE (the place in the EXE that called into my DLL). The EXE loads my DLL and eventually ...
upe's user avatar
  • 2,182
2 votes
1 answer
387 views

See (far below) how the relative stack location of the local variable x changes between runs of this program. Why does that happen? I know about ASLR and can see (looking at pLow and pHigh) that the ...
Vince_Fatica's user avatar
-1 votes
1 answer
59 views

I'm working in WSL Ubuntu, writing this script in SPAM Jupyter Lab. I want to convert my 2d TIFF files into a 3d TIFF file. After stating the directory where the 2d TIFF files are, this is my code: ...
Ioanna Ms's user avatar
-2 votes
1 answer
119 views

I was tasked to write up a C program to sort an array using quicksort, without using recursion. Original array: -25, 87, 12, -6, 91, 3, -48, 70, 19, -33, 55, 2, -18, 99, 41, -72, 63, 15, -90, 27, 8, -...
Thunder's user avatar
  • 21
0 votes
1 answer
126 views

I am trying to implement the classic balanced parens with stacks So I decided to test the stupid, O(n^2) algorithm def balanceada(string): while True: before = len(string) string = ...
josinalvo's user avatar
  • 1,512
4 votes
2 answers
211 views

I am studying for my Computer Security exam and I am on the Format String Bugs section. In the notes there is this code, and I was testing it on my VM: #include <stdio.h> void test(char *arg) { ...
teozzo's user avatar
  • 51
0 votes
1 answer
177 views

I've been blocked for days on this and I cannot keep wasting time on this stupid bug. I need your help. Let's start from the working screen. I have a _layout.tsx: const PlansLayout = () => { ...
Marco's user avatar
  • 382
1 vote
1 answer
143 views

I am using below gcc compiler to compile codebase for ARM cortex M33 with optimization -Os. arm-none-eabi-gcc.exe (Arm GNU Toolchain 14.3.Rel1 (Build arm-14.174)) 14.3.1 20250623 Copyright (C) 2024 ...
Hari's user avatar
  • 21
0 votes
0 answers
63 views

I'm working on a Flutter app and want to improve my error reporting, especially for async errors. I came across the stack_trace package and its Chain.capture method, which seems to provide much better ...
Rami Dhouib's user avatar
0 votes
1 answer
69 views

I am working on a vpn app and on one of the screens i have to use stack for showing different widgtes over each other like gradient below and a globe svg on top and then a circularProgressIndicator on ...
Mian Faseeh's user avatar

15 30 50 per page
1
2 3 4 5
741