I really need to learn Python. It’s just finding the time and energy.
it's really simple

I really need to learn Python. It’s just finding the time and energy.
Then let's learn together! We need to get Deku in here too.I really need to learn Python. It’s just finding the time and energy.
Yes, please. I just want something to make. That's the easiest way to learn something newThen let's learn together! We need to get Deku in here too.
Yes, please. I just want something to make. That's the easiest way to learn something new
For the moment I don't know what to make
A bot that scans for deals and post them on Mastadon?do a mastodon bot![]()
A bot that scans for deals and post them on Mastadon?
I'll look into ityeah, that would actually be extremely cool, and useful!you should totally do that!
I'll look into it
I really need to find projects to do also in. python, something simple to teach myself but also to have a "start" of a portfolio to show now that I have to find a company.
Shell with (neo)vim has been my programming environment for close to 8 years now. Neovim comes with quite good defaults regarding basic behaviour, compared to vim. This doesn't get you some good tools, like searching project-wide (text, or files), a git blame to understand when and why a line was introduced, or making it connect to an LSP server. All these needs plugins, and configuration. I have a public configuration for these, but it might be quite opaque if you don't know what the options are doing. You might be better off searching for tutorials. In any case I'm sharing it: nvim/.config/nvim · master · Pau Ruiz Safont / dotfiles · GitLabAfter spending three weeks at a programming school doing the entrance exam to see if I should start there, I kind fell in love with the way they programmed. They only used shell and vim to do everything and all programming was done in C. While I might want to learn more gdscript I still would love to use shell and vim. Anyone have experience with customising stuff like that? I did install just a theme for it to make it look colorful lol. One can open gdscript files just fine but it doesn't have syntax support.
You should normally be able to use NeoVim with the command nvim from everywhere just like Vim.I installed neovim, but don't fully understand yet how things work, I have to run it from its proper folder where it installed, but I thought it would be more like vim that you can use everywhere?
assuming you are in linux, or macos, and you have installed neovim with some package manager, then you should haveI installed neovim, but don't fully understand yet how things work, I have to run it from its proper folder where it installed, but I thought it would be more like vim that you can use everywhere?
nvim
command available. I added alias, so that I can open it up with vim
. Neovim pretty much the same as vim anyhow. If you are a hardcore user you maybe can spot differences. otherwise the biggest difference is that configuring neovim you use lua instead of vimscript.Ive been changing and installing so much in my terminal so now even aliases don't work lol, hmh is there a way to factory reset terminal in Mac?XD
Im curious, how did you all "get" programming? I keep learning and learning and it still feels like I have no idea what hell I am doing. Im trying to solve problems for the course Im doing now and most of the time it feels like I don't even know where to begin.
What does your programming journey look like?
Im curious, how did you all "get" programming? I keep learning and learning and it still feels like I have no idea what hell I am doing. Im trying to solve problems for the course Im doing now and most of the time it feels like I don't even know where to begin.
What does your programming journey look like?
low-G you're right, it happens a few times that I think something is going to be impossible to then see that it was pretty simple.XD Right now I am doing a problem where I have to write function for a voting program, that not only counts votes but has to eliminate the one with lowest votes, then take the second and thirst options in the ballot and recount until there is one clear winner.
Essentially these functions I have to write. Working on the tabulate one now.
bool vote(int voter, int rank, string name)
{
int i = 0;
while (i < candidate_count)
{
if(candidates[i].eliminated == false && strcmp(candidates[i].name,name == 0)
{
preferences[voter][rank] = i;
return true:
}
i++;
}
return false;
}
Thanks! Yeah I also missed one where I put : in stead of ; lolIf I'm reading this right (since i don't know the specification), you're storing the candidate index (position) in case it's still active in a matrix indexed by voter/rank ?
Also, you're missing a parenthesis between name and ==
I was struggling almost two days trying to understand how to writer a certain function... only to conclude that is was kind of simple ! Or I think I have done it as its supposed to be, can't test the program before Ive written all functions.
C:bool vote(int voter, int rank, string name) { int i = 0; while (i < candidate_count) { if(candidates[i].eliminated == false && strcmp(candidates[i].name,name == 0) { preferences[voter][rank] = i; return true: } i++; } return false; }
void tabulate(void)
{
int i = 0;
int j = 0;
int c = 0;
while (i < voter_count)
{
while (j < 3)
{
c = preferences[i][j];
if (candidates[c].eliminated == false)
{
candidates[c].votes++;
break;
}
j++;
}
j = 0;
i++;
}
return;
}
}
The break exits the closest loop.Doesn't the break close the whole function? Wouldn't that make the function misbehave, but now it is like it just restarts the loop but with correct i value.
I suppose it depends a bit on what exactly you are asking from it.I do also realise that using chatgpt is not helping me at all to learn, that I'm just cheating myself.![]()
I suppose it depends a bit on what exactly you are asking from it.
I would expect that some people would benefit greatly from having some programming concept "talked out" with them instead of just reading them from a documentation or something. A conversation with someone can help even if the other side of the conversation is a LLM bot.
Fiftyville
Problem to Solve
The CS50 Duck has been stolen! The town of Fiftyville has called upon you to solve the mystery of the stolen duck. Authorities believe that the thief stole the duck and then, shortly afterwards, took a flight out of town with the help of an accomplice. Your goal is to identify:
All you know is that the theft took place on July 28, 2023 and that it took place on Humphrey Street.
- Who the thief is,
- What city the thief escaped to, and
- Who the thief’s accomplice is who helped them escape
How will you go about solving this mystery? The Fiftyville authorities have taken some of the town’s records from around the time of the theft and prepared a SQLite database for you, fiftyville.db, which contains tables of data from around the town. You can query that table using SQL SELECTqueries to access the data of interest to you. Using just the information in the database, your task is to solve the mystery.
.schema
SELECT description FROM crime_scene_reports WHERE year = 2023 AND month = 7 AND day = 28 AND street = 'Humphrey Street';
SELECT hour, minute, activity, license_plate FROM bakery_security_logs WHERE year = 2023 AND month = 7 AND day = 28;
SELECT license_plate FROM bakery_security_logs WHERE activity = 'entrance' AND year = 2023 AND month = 7 AND day = 28 AND hour < 10 AND minute < 15;
SELECT transcript, name FROM interviews WHERE name IN (SELECT name FROM people WHERE license_plate IN('1M92998', 'N507616', '7Z8B130', '47MEFVA', '4328GD8'));
SELECT phone_number, passport_number FROM people WHERE name = 'Luca';
SELECT flight_id, seat FROM passengers WHERE passport_number = 8496433585;
SELECT origin_airport_id, destination_airport_id, year, month, day, hour, minute FROM flights WHERE id = 11 OR id = 36 OR id = 48;