October 23, 2024
Chicago 12, Melborne City, USA
Android

Try to generate signed app bundle but getting error

Upgrade android project classpath ‘com.android.tools.build:gradle:8.5.2’ Then try to generate signed app bundle, but getting this error now: Execution failed for task ‘:app:packageReleaseBundle’. A

Read More
C#

Static global pointer in struct.h is malloced by a function in struct.c, but it is NULL inside main()

struct.h #ifndef STRUCT_H #define STRUCT_H struct linkedlist { int data; }; static struct linkedlist *head = NULL; void build_linkedlist(); #endif struct.c #include <stdio.h>

Read More
java

Spring Boot + Flyway + Testcontainers(oracle) fails “CREATE USER” ORA-01031: insufficient privileges

I am running spring boot v2.3.5 application with oracleDb (com.oracle.jdbc.ojdbc8 v12.2.0.1) and following testcontainer dependencies: <dependencyManagement> <dependencies> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers-bom</artifactId> <version>1.20.2</version> <type>pom</type> <scope>import</scope>

Read More
python

Scraping the hulkapps table using Selenium or Beautiful soup

I have this URL that I am trying to scrape: https://papemelroti.com/products/live-free-badge But it seems that I can’t find this table class <table class="hulkapps-table

Read More
javascript

DMAS rule implementation in Javascript Calculator

i have developed a scientific calculator using javaScript with no eval but now i am facing issues of the DMAS rule method as

Read More
SQL

Issue Passing NULL StartDate from Main Report to Subreport in SSRS Body:

I’m working on an SSRS report in Visual Studio that passes parameters between a main report and multiple subreports. The goal is to

Read More
CSS

Simulate :hover, :active, and :focus states to test styling

I’m building a restyle for a certain component library to implement a company design system. I’d like to be able to render components

Read More
jQuery

Problem with DataTables.net FixedHeader Headers Shifting On Scroll

I worked with ChatGPT 4o to create a complex DataTables.net proof of concept based on the needs of my client, which includes the

Read More
HTML

Adding component via TypeScript in Angular dynamically

I searched the internet for a solution but I can’t find one, either because some functions are deprecated or do not exist. I’m

Read More
Android

Unable to change Overflow icon color in my Toolbar

In my gradle I’m using material 1.12 acording to various article it is somehow possible to style the threedots icon used as overflow

Read More