Newest Questions
24,180,139 questions
0
votes
0
answers
4
views
Pivoting table doesn't give expected results
I am trying to use pivot but it's not working the way I expect.
The temptable I want to use input is #GenericTeam:
Versionnumber
Valid_from
Team_name
Attributenumber
Attribute_displayname
...
0
votes
0
answers
10
views
Proto encoding for message with packed repeated elements
Quite new to protobuf so hope the question isn't too basic. Can someone please help explain the example that is used in https://protobuf.dev/programming-guides/encoding/ repeated elements which I can'...
0
votes
0
answers
17
views
removing inline javascript failing
A rails 7.1 view file runs with in-line javascript as follows.
<script>
var autoComplete = (function(){
[ ... contents of .js file. see below]
</script>
<%= javascript_tag do %>
...
0
votes
0
answers
13
views
Claude AI suddenly can’t read files inside folders from GitHub repos
I’ve been using Claude AI daily for the past ~2 months to analyze GitHub repositories with similar structure (Android/Gradle projects), and it worked fine.
Today, Claude can still see the repo and ...
2
votes
0
answers
11
views
Vue/Element Plus - Keyboard navigation in El-Tree
I am trying to make use of the Vue content library Element Plus, more specifically of its El-Tree component, but I need to make it functional with a keyboard and this has proven more challenging than ...
0
votes
0
answers
7
views
Trying to build flutter engine with custom dart sdk
I was able to correctly compile the flutter windows engine and get the file (flutter_windows.dll) with the prebuilt dart sdk, but when I try to use --no-prebuilt-dart-sdk when added to the gn tool to ...
0
votes
0
answers
12
views
Is it a bad practice to have a Scaffold as a child of a ListenableBuilder
I am currently building a Flutter app for a company I am working for, and I was doing some code refactoring that implied moving a Scaffold as a child of a ListenableBuilder .
And I was wondering if it ...
1
vote
0
answers
9
views
Shared Preferences lost on flutter edge browser
I save my filters in sharedPreferences, in the app and in web-browser daily use its fine , it gets save even on browser/app close.
But overnight it gets lost on edge in all mobile device :
final prefs ...
-8
votes
0
answers
26
views
Can anyone solve these very hard Jeroo challenges? [closed]
https://docs.google.com/document/d/1_2y2eg8a5dXHW_KA-UYmVhTJ9fA4lJzRcFmuYcBVIoQ/edit?usp=sharing Can somebody solve all 8 of these Jeroo projects. Share your solutions if you solve it
0
votes
0
answers
9
views
Houdini not able to pull schema. "ERROR: couldn't pull your schema: resp.text is not a function"
I have a SvelteKit project where i am trying to query a GraphQL endpoint and get end to end typesafety using Houdini.
I run npx houdini init in my repository and get the following error:
⚠️ Couldn't ...
-1
votes
1
answer
37
views
Is it necessary your python function should have retun in?
def odd_or_even(n):
if n % 2 != 0:
return "Odd"
else:
return "Even"
#Here
I wrote a function which checks wheter the number is odd or even using if ...
-9
votes
0
answers
52
views
Can someone do this project [closed]
I have tried it, this is very challenging. Can someone do all eight of these KONG projects. Instructions in the link: Donkey Kong Jeroo. Drop the files below after completing them!
0
votes
0
answers
41
views
Hosting Ansible Playbook using Docker
So I been working on an Ansible based project which basically handles the application/firmware upgrade from a Centralised Ansible Server connecting to hundreds of thousands of Linux Application ...
-2
votes
0
answers
33
views
Capturing sudoku but Selenium didn't find it with Chrome in HTML
I'm trying to capture this sudoku with Selenium and Python after accepting the cookie.
With this code I could accept the cookie in the iframe and write the main site to the output.html for debugging:
...
0
votes
0
answers
34
views
Calculate mouse position in rotated div [duplicate]
How to calc mouse position (ClientX, ClientY) in rotated and scaled DIV?
HTML structure:
SCALED DIV - transform: scale(0.8);
ROTATED DIV - transform: rotate(340deg);
ROTATED TARGET DIV - transform: ...