473,553 Members | 2,930 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Latest Bytes Forum

Support forums for various IT topics. Programming languages, databases, systems, applications and more. Subscribe to a community, participate, ask, share your expertise and network.
 
0
6,877
thread by: Rina0 | last post Sep 11 '23 by: Rina0
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in Java. Can anyone help me translate the Java code into Python? Here is the Java code from the blog post: java public static int...
2
1,185
isladogs
thread by: isladogs | last post Sep 10 '23 by: isladogs
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central Europe and 10AM in Seattle / PST Please note that the UK is now on Summer Time (UTC+1). For local times, please check...
0
6,582
thread by: Taofi | last post Sep 6 '23 by: Taofi
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences The new record i want to add using a query is this Output 5, 600, 765.3, over budget ane -165.30 Whats the correct sql syntax for this in order to...
12
72
thread by: caitlin369 | last post Sep 6 '23 by: w88malayuinfo
hi everyone my name is Caitlin, hope you're all well!
0
6,069
thread by: Humphrey Lungu | last post Sep 6 '23 by: Humphrey Lungu
I want help I made a multichose accunt but when I want to login the account it tells me that parameters errors use stack trace to make everything in oder please people help me.
0
11,201
thread by: cosmere | last post Sep 5 '23 by: cosmere
Hello I'm trying to create a basic game in python using OOP style programming. The problem is that I'm not sure how to link my files. I currently have main.py, a game.py and a logic.py. I would like to be able to run everything from my main.py through the start_game method. However if I run the code below I get the following error: TypeError:...
-
-
thread by: cosmere | last post Sep 5 '23 by: cosmere
Moved:
2
12,476
thread by: Wanie2023 | last post Sep 2 '23 by: isladogs
Hi, I have a form with a subform which has vba to resize when open. I use a dropdown menu to change the source of the subform using source object in vba but when i do this the subform changes size and is too small. Has anyone got any advice on how to resize the subform after changing the source of the subform?
0
8,798
thread by: tusharbabar | last post Aug 31 '23 by: tusharbabar
Hello friends, I am working on some tasks like reading data in an Excel file and store in a World file but in an Excel file I have mobile number data I tried to read and store it in World but got the wrong data minus in Excel number format like 9976457605 but when I read data I get data like 2147483647 format. We can do the task only using Java...
0
6,925
thread by: Rina0 | last post Aug 30 '23 by: Rina0
Hi everyone, I am trying to find the greatest common divisor (GCD) of two numbers in Python from here. I found a few different algorithms online, but I am not sure which one is the most efficient. Here is the code I have so far: def gcd(x, y): while y: x, y = y, x % y return x
2
20,104
thread by: YTAIGamer | last post Aug 29 '23 by: vipulguptaseo
I'm an experienced programmer, but new to AI. I'm trying to learn ML techniques by building a bot to play a video game. I'm documenting my process as I go. The game I'm focusing on 1st is TFT (TeamFightTactics) which is in the AutoBattler genre - Essentially, you try to build the strongest army, but there are millions of choices & pros/cons to...
11
13,686
heiro1
thread by: heiro1 | last post Aug 28 '23 by: ChristianHansen
Hi Guys! So, I am using the modulus and a rand as part of a function I am writing. Now, I understand that: rand() % 6 + 1; gives me a random number between one and six in this situation. However, I also know that rand(); gives me a random value from 0 - 32767 and srand; changes the sequence but I thought...
0
6,100
thread by: CraigA | last post Aug 26 '23 by: CraigA
Hi I want to use VCG Library (http://www.vcglib.net/index.html) in my C++ OpenGL code in Linux. According to the installation instructions for VCGLib one simply clones the repository and includes the header files. There are numerous header sub-directories and *.h files. One of the header files (dirent.h) #includes <windows.h>. I have...
2
22,041
thread by: dragrid | last post Aug 26 '23 by: Hegli
Hi All , I would like to in one query from the same table of say first names count all the occurrences of the various first names in a column called thecount and create another column called percentage that give the percentage of the count of an individual of the sum of all the counts of first names so all fname sara is 10% say select count(*) as...
0
5,741
thread by: kcodez | last post Aug 25 '23 by: kcodez
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it can inspire everyone. !(http://rzoxndoq0.hd-bkt.clouddn.com/claw.png) ### Creativity & Design 《Toy Claw》is an online version of the popular...
1
15,816
thread by: DGrund | last post Aug 25 '23 by: danp129
When I start the program, it asks me for a server. That is the only thing, I think, that is keeping me from starting the program. What in the world are they referring to when they say "server"? I am running it on my little old desktop. Server type: Database Engine I specified dave-dt-i7\sqlexpress, and some other things, but every time, I...
5
18,231
meomap0z1
thread by: meomap0z1 | last post Aug 25 '23 by: danp129
I have this table of data. Now I wanna hide the data of the "Password" column. How can I do that?. Many thanks
2
18,525
thread by: lainenickl | last post Aug 24 '23 by: AdmontYanko
I created a template that has Facebook, Twitter and LinkedIn share butotns (which share an event page). It works correctly however when I test it, however, when I do the HTML validation I get the following errors: line 582 column 171 - Warning: unescaped & or unknown entity "&url" line 585 column 62 - Warning: unescaped & or unknown entity...
0
5,746
BarryA
thread by: BarryA | last post Aug 24 '23 by: BarryA
I'm relatively new to Python and I'm trying to create a CSV file from data within my program. I've read a bit about the csv module, but I'm not entirely sure about the best approach to create a CSV file and populate it with data. Could someone guide me through the process and provide a code example? Let's say I have a list of dictionaries...
0
5,134
Gnny
thread by: Gnny | last post Aug 23 '23 by: Gnny
I successfully submitted the iPad package using appuploader, but I couldn’t find the build version in the app. What’s the problem? Uploading the iPad successfully, why is the build version empty ,Error Messages: Could not start delivery: all transports failed diagnostics
1
13,552
thread by: Arshali12 | last post Aug 22 '23 by: Rina0
$array1 = array( 'ADAIR', 'ADAM', 'ADAMINA', 'ADDISON', 'ADDY', 'ADELLE', 'ADEN', 'ADOLPH', 'ADRIANNA'
0
3,923
thread by: Arshali12 | last post Aug 22 '23 by: Arshali12
I am trying to write a Python program to find the greatest common divisor of two numbers in Python. I have been following the algorithm described here, but I am having trouble getting it to work. def gcd(a, b): while b != 0: a, b = b, a % b return a When I run this code, I am getting an error: Traceback (most recent call...
0
13,136
BarryA
thread by: BarryA | last post Aug 21 '23 by: BarryA
I'm facing an issue while developing a full-stack JavaScript application that involves asynchronous data fetching. I'm using technologies like Node.js for the backend and React for the front end. The problem arises when I try to fetch data from the backend API asynchronously and update the UI using React components. The data seems to be returning...
1
13,366
thread by: JohnDinzeo | last post Aug 19 '23 by: joelwright
I have about 6 years of graphic design and CGI experience now. And about 2 months of serious programming experience(C/C++ only). I am very comfortable with programming in C++ as it was something I had learnt back in High School. Now I want to move to creating a simple image editing software like Photoshop. A lot simpler obviously. Maybe more in...
1
16,561
thread by: SidLatthe | last post Aug 18 '23 by: Rina0
What is the difference between functional testing and non-functional testing in software development?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.