python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there a readable built-in generalization of the `zip` method with automatic "unpacking" of tuples?
Given two lists a=[(1,11), (2,22), (3,33)] and b=[111, 222, 333] I would like to know if there is a syntactically easy-to-read solution to iterate over triples of values as follows:
for x,y,z in WANTE...
flonk
Votes: 0
Answers: 1
Defining the values of a field in a database in the Laravel code to make the code more readable
Currently, I am writing a laravel application with a part for sending messages between the staff at the company and the clients.
So, I have a field named "status" in the database. In this fi...

ZOHREH
Votes: 0
Answers: 2
How to best manage file either gz or not?
Hi I wonder if there is a better way in terms of code readability and repetition.
I have a large file that do not fit in memory. The file is either compressed .gz or not.
If it is compressed I need to...
RomainL.
Votes: 0
Answers: 1
Improving code with reflection and generics
With the following code, how could I improve its readability using reflection and generics?
It's a lot of repeated code, but I'm new to these concepts.
"dl" is an interface but I'm not sure ...
Mark Jonh
Votes: 0
Answers: 2