11,102 questions
1
vote
1
answer
28
views
Error "error: ERR 211 Not enough local stack" while building on GeneXus 17
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:
...
-4
votes
0
answers
46
views
Do Python variable references get stored on the stack or the heap? [duplicate]
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, ...
Best practices
0
votes
0
replies
33
views
Nested Navigation Not Working in AutoRoute
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 ...
0
votes
0
answers
123
views
AttributeError: 'NoneType' object has no attribute 'columns' BPTK-Py
Depreciation_DM = model.constant("Depreciation_DM")
Depreciation_DM.equation = 0.0708
DMPIncRate = model.constant("DMPIncRate")
DMPIncRate.equation = 0.0284
DMPInc = model.flow(&...
2
votes
2
answers
150
views
Location of the first value pushed onto stack in assembly (x86 I386 assembly) (gdb) (AT&T)
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 ...
0
votes
0
answers
76
views
Locate return address into EXE from DllMain
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 ...
2
votes
1
answer
387
views
Why do relative stack addresses change each time this Windows program is run?
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 ...
-1
votes
1
answer
59
views
Converting 2d tiff into 3d tif files - stack error
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:
...
-2
votes
1
answer
119
views
Array passed as an argument does not seem to be changing [closed]
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, -...
0
votes
1
answer
126
views
Balanced parens -- O(n^2), but passing on hacker rank and leetcode
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 = ...
4
votes
2
answers
211
views
Trying to exploit the stack content with a format string, but I can't understand where it takes the output from
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) {
...
0
votes
1
answer
177
views
React Native + Expo router - TouchableOpacity not working on one screen, while it does on all the others
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 = () => {
...
1
vote
1
answer
143
views
arm-none-eabi-gcc stack frame usage issue
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 ...
0
votes
0
answers
63
views
stack_trace : Is there any potential issue with wrapping my app in Chain.capture()
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 ...
0
votes
1
answer
69
views
tried flutter positioned in stack with media query but on different devices it doesnt work
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 ...