Page MenuHomePhabricator
Feed Advanced Search

Sun, Mar 31

Ederporto created T361447: Add SandboxLink to ptwikiquote.
Sun, Mar 31, 6:43 PM · Patch-For-Review, Wikimedia-Site-requests

Mar 23 2024

Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

@Ederporto, When can we expect to receive feedback on the public-paws-notebook submission?

Mar 23 2024, 7:43 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)

Mar 15 2024

Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Please, you all have transformed this thread in a chat. It is impossible for me to keep up with any valid message asking for help because of that. Please, avoid this here at all costs and talk with each other in Zulip, if necessary.

Mar 15 2024, 3:16 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)

Mar 13 2024

Ederporto updated the task description for T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.
Mar 13 2024, 10:59 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

@Aixvik, @Aananditaa001, @Anju_Maurya, @ElvisGicharu, @Abishekdascs, @Damiodunuga, @Abishek_Das, @Keamybams, @MahimaSinghal, @Andreas_Sune, @Udonels, @Omolade1414, @Chimezee, @BruceMahagwa, @GonzaGertrude, @Anachimuco, @DevJames1 and @Sheilakaruku

Mar 13 2024, 10:58 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hello everyone, thanks to @Abishek_Das for the tips on installing ffmpeg. It's a timesaver I must say.

If you're looking to embed the output into the notebook, add these few lines of code after you've generated your output animation:

from IPython.display import Video
Video("file_name.mp4", embed=True)

Mar 13 2024, 10:10 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hello @Ederporto, for the project proposal, do we need to create one in Wikimedia Phabricator since we will also be submitting one on the Outreachy website?

Mar 13 2024, 10:07 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hello everyone, I am also an Outreachy applicant for 2024.

Today, I discovered the message on Phabricator; however, I initially assumed that all discussions were taking place in the Zulip channel. Consequently, I didn't check the Phabricator comments section.

To keep it concise, I'd like to address how to make FFmpeg work on the PAWS Jupyter Notebook for the task "Create a tool for informative infographics from structured information from Wikimedia projects - Task A."

The reason FFmpeg isn't functioning on the PAWS Jupyter Notebook is that we need to download and add FFmpeg Static Builds from (https://johnvansickle.com/ffmpeg/) to the same folder where we have the code.

Here's a step-by-step guide (So, you don't have to go through the trouble of downloading from https://johnvansickle.com/ffmpeg/):

Note: Before you do the step mentioned in point (a), make sure all the steps, i.e., b, c, d, and e, are done first.

a) I've attached code that you can add to your Jupyter Notebook cell (Same notebook where you have your code to generate the bar chart race). Run this code to resolve the FFmpeg issue.

# Download a static FFmpeg build and add it to PATH.
%run 'util/load-ffmpeg.ipynb'
print('Done!')

b) Prior to running the code mentioned in point (a), add/upload the "util" folder to your PAWS. I've included the folder below.


(You, have to unzip it after downloading)

c) The purpose of the "util" folder is to automatically add the FFmpeg Static Build File (which is a folder) to your PAWS when you run the provided code mentioned in point (a).

d) Ensure that the filename in bcr.bar_chart_race() has a ".mp4" extension.

e) After completing these steps, you can run your respective code, which is the code for generating the bar chart race.

Note:

a) You might encounter a warning / Error (Which again doesn't appear when I run my code locally and only sometimes appears on my PAWS Jupyter Notebook), as shown in the attached screenshot. However, this is not an issue, as the video file will be generated in the PAWS folder after running your code. You can then download the bar chart race video and watch the video(as shown the screenshot below).

Code for ffmpeg.png (239×992 px, 48 KB)

mp 4.png (32×418 px, 2 KB)

b) If your code works correctly locally, it should generally (90%-99% of the time) work on the PAWS online Jupyter Notebook.

c) The warning or error screenshot I provided may or may not appear (Which happens to me only on PAWS), so be mindful of that.

d) Ensure that the filename in bcr.bar_chart_race() has a ".mp4" extension, as the ".html" filename won't appear on PAWS. But, Again, the .html works locally.

e) Why the .html doesn't appear on PAWS, I have no idea about it, and I have still not looked for a solution related to .html since the .mp4 file is generated on PAWS without any issue.

f) All the things I have mentioned on how to solve the issue related to FFmpeg were taken from various documentation like Matplotlib 3.8.3 documentation and, of course, my favorite stack overflow (So, thanks to the Devs on Stack Overflow).

Mar 13 2024, 10:05 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hello, @Ederporto

I have a question about visualisation step. On the notebook task we have to do our graphics with the previous result dataframe (top_view_dataframe). According to bar_chart_race documentation, the dataframe to use should have a date on row and different categories of articles on columns but top_view_dataframe is the opposite. My question is can we use different approach instead of top_view_dataframe, for exemple prepare our dataset with the build in method in bar_chart_race release for that goal?

Thank you

Yes, same issue. I find it hard to visualize it with the current state of our data frame. In the documentation, it's specified that every row must represent a single period, which is the exact opposite in ours.

@Ederporto would drop more insights.

I think to address the requirement of using the bar_chart_race library, we can reshape the DataFrame so that dates are on the rows and articles are on the columns. This way, it aligns with the expected format for the library.

Mar 13 2024, 9:32 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)

Mar 7 2024

Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

@Ederporto
I am having issues implementing this function

most_viewed_ptwiki_jan_feb_per_day():

as in the task description.

If I understood properly we are asked to get daily data for each article within January and February in the Portuguese Wikipedia. And then append in a DataFrame

My limitations:

  • No endpoint to fetch the most viewed articles daily or monthly in a project for a date range. The closest is this endpoint
https://wikimedia.org/api/rest_v1/metrics/pageviews/aggregate/{project}/all-access/all-agents/daily/{start}/{end}

but only returns views for a project cumulatively and not individual articles.

  • Another endpoint I tried is this:
https://wikimedia.org/api/rest_v1/metrics/pageviews/top/{project}/all-access/year/month/day

This returns pageviews for articles on a project for a particular day or month(not date range).
So to use this to solve the task, I will have to make almost 60 requests each time trying to get articles for each day up to two months which is not efficient enough.

So any help will be appreciated, my fellow interns you can help if you find a way to go about it or if you feel I misunderstood the task description.

@Ederporto, can you please clarify this? I have a sense that I also misunderstood the task.

Mar 7 2024, 5:03 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hi @Ederporto,

I'm facing some trouble gathering data from the Wikimedia API. Every time I make a request in the Jupyter notebook, I'm getting a response status code of 403, indicating forbidden access. Is there a workaround for this? It's worth noting that I can gather data normally from the Wikimedia API website and even when running the link outside of the notebook.

Could you please take a look at the error and see if there's a solution? Thank you

Screenshot 2024-03-05 at 22.19.26.png (850×2 px, 251 KB)

I am having the same issue with this endpoint: https://wikimedia.org/api/rest_v1/metrics/pageviews/top/{project}/{access}/{year}/{month}/{day}
it returns 403. But after getting the text property of the response these were the indicatives.

  1. Our servers are currently under maintenance or experiencing a technical problem.
  2. Error: 403, Scripted requests from your IP have been blocked, please see https://meta.wikimedia.org/wiki/User-Agent_policy.

Assistance is needed to continue with the tasks
OS: Windows
python module: requests

Eror_Making_get_requests.jpg (481×1 px, 117 KB)

@Anachimuco I read on the page view API page that

headers = {
      "User-Agent": user_agent
    }

is required, check if you added this and replace it with an actual user agent.
I was able to get the data after adding it to my code.
I assume you are using Python

Thank you @DevJames1, I was able to gather data.

Mar 7 2024, 4:55 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hello @Ederporto,
I can't access the Wikimedia API document. The link in the notebook shows this page.

Api.JPG (366×1 px, 19 KB)

I shall appreciate your help or that of any member here.

Hello @Ederporto
I looked up the documentation on google and then I found this documentation.

image.png (623×1 px, 83 KB)

Is that the correct documentation? I noticed the link is https://wikimedia.org/api/rest_v1/#/ as opposed to https://wikimedia.org/api/rest_v1

Mar 7 2024, 4:51 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hi @Ederporto, I hope you're doing well!

I was going through the project tasks and had a question I wanted to clarify:

When it mentions "the most viewed articles in the Portuguese Wikipedia," is it specifically referring to Brazil, a Portuguese-speaking country, or does it encompass all Portuguese-speaking countries? Just a bit confused about the wording there.

Hello @Anachimuco
I think the Portuguese Wikipedia encompasses all Portuguese speaking countries just like the English Wikipedia is used in many English speaking countries.

Mar 7 2024, 4:49 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.

Hello @Ederporto
I have been able to sign up to wiki PAWS.
When I try to fork the notebook by adding "?format=raw" according to the doc Fork,
my JSON viewer extension only opens the file as JSON, I am having difficulty downloading the file.

OS: Windows 10,
Browser: Chrome

Paw_jason.jpg (661×1 px, 94 KB)

I have been able to work around this for now by changing the file extension name manually after saving, from ".txt" to ".ipynb" this allowed me to upload to my PAWS folder

Mar 7 2024, 4:46 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T359186: Proposal: Create tool for informative infographics from structured information from Wikimedia projects.

Hello, @DevJames1. As @Maryann-Onyinye stated in the project page, Phabricator isn't really the place to do introductions, you should do that in Zulip.

Mar 7 2024, 4:43 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)

Feb 24 2024

Ederporto updated the task description for T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.
Feb 24 2024, 2:15 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto updated the task description for T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.
Feb 24 2024, 2:07 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto updated the task description for T357409: Create tool for informative infographics from structured information from Wikimedia projects.
Feb 24 2024, 2:05 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto created T358412: Create tool for informative infographics from structured information from Wikimedia projects - Task A.
Feb 24 2024, 2:03 AM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)

Feb 23 2024

Ederporto added a project to T357409: Create tool for informative infographics from structured information from Wikimedia projects: Outreach-Programs-Projects.
Feb 23 2024, 1:36 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto updated the task description for T357409: Create tool for informative infographics from structured information from Wikimedia projects.
Feb 23 2024, 12:24 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto added a comment to T357409: Create tool for informative infographics from structured information from Wikimedia projects.

Hi @Ederporto If you would like your project to be included in this outreachy round, kindly complete the project proposal as the deadline to submit on the outreachy website is Friday 23rd 2023. If not, please let me know. Thank you

Feb 23 2024, 12:22 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)
Ederporto renamed T357409: Create tool for informative infographics from structured information from Wikimedia projects from Wiki Infographics to Create tool for informative infographics from structured information from Wikimedia projects.
Feb 23 2024, 12:21 PM · Outreach-Programs-Projects, Developer-Outreach, Outreachy (Round 28)

Feb 3 2024

Ederporto added a comment to T354734: Coordinate Wikimedia's participation in Google Summer of Code 2024 and Outreachy Round 28.

Hello, @Maryann-Onyinye, I'm putting here my suggestion of a project I'll be involved this year: Wiki Infographics. The idea is to leverage structured information within Wikimedia projects to create informative and visually engaging infographics in both fixed and dynamic formats, under an open license. An example of such infographics (although non-wiki) is this video: https://www.youtube.com/watch?v=wykaDgXoajc.

Feb 3 2024, 3:11 AM · Developer-Outreach, Outreachy (Round 28), Google-Summer-of-Code (2024)

Jan 15 2024

Ederporto updated the task description for T355082: GLAMWiki Dashboard not loading.
Jan 15 2024, 5:47 PM · VPS-Projects
Ederporto created T355082: GLAMWiki Dashboard not loading.
Jan 15 2024, 5:43 PM · VPS-Projects

Oct 26 2023

Ederporto updated subscribers of T347259: Addressing the Lusophone technological wishlist proposals.

@Salwoch @PinRathod @Olvaa @Mezuo @Nishant_Nayan @Kate-bagenzo @Shashi.coding @Tuckwai @Anne and @ruthenanga. Please, do not forget to submit your tasks AND final application to the Outreachy platform!

Oct 26 2023, 7:51 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Feedback: @Spykelionel Although your output works, I'm afraid that the way you catch the date is a bit complicated. If I want the date in Spanish, for example, I'd have to put the months in spanish in it. I recommend to look at toLocaleDateString method.

Updates: Hi, @Ederporto! I hope this message finds you well. I wanted to thank you for providing feedback on my previous task. I truly appreciate your guidance and suggestions.

Based on your feedback, I have made the necessary modifications to the code. Instead of relying on a complicated method to catch the date, I have implemented the toLocaleDateString method. This allows for easy localization of the date format, enabling users to obtain the date in their preferred language, such as Spanish.

I would be grateful if you could review my task again and provide further guidance or suggestions if needed. Your expertise and insights have been invaluable in helping me improve my skills, and I am eager to learn from your feedback.

Here's the task: https://github.com/spykelionel/wiki-lusophone.git

Thank you once again for your time and support. I look forward to hearing from you soon.

Best regards,

Spyke Lionel

Oct 26 2023, 7:45 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello everyone and mentors, I'm Olfa Kacem, and I'd like to invite you to review my contribution to task 2: https://github.com/olva7/Outreachy_Contributions/tree/main/T347784Task2
Thank you!
Regards,

Oct 26 2023, 7:35 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello everyone and mentors, I am Tuck Wai, kindly review my contribution to this task. Here is the link of my Github repository.
https://github.com/TuckWai97/Outreachy-wikimedia-project-1/tree/main/task_2

Thank you!
Regards,

Tuck Wai.

Oct 26 2023, 7:35 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello mentors! (@Ederporto, @Mike_Peel, @Albertoleoncio)

Though I have already submitted my solution at outreachy system before but now I am also sharing it here for task 2, Kindly have a look. I 'll update further details at outreachy submission as suggested by @Mike_Peel in his post at main project page.

Thank you!

With Regards,

Shashi

Oct 26 2023, 7:34 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello Mentors , @Mike_Peel @Albertoleoncio @Ederporto , Please review my contribution to this task. Kindly find the GitHub Repository Link here for Task-2.
Thank you.

Oct 26 2023, 7:34 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello everyone.
This is the link to the task solution: https://github.com/QUIN04/wikimedia/blob/Task1/index.py.

On working with Python. While working on this task, I learned how to import files holding data into my python file in order to access the data
I faced difficulties in handling the errors I got from my code. This gave me the opportunity to research and use StackOverflow, which I suggest that we all consider as a learning tool when we face errors in our code.

Oct 26 2023, 7:34 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Good Day,

Kindly find my contribution to this task. It was a learning process.
Here is the link

Thank you

Oct 26 2023, 7:33 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Please here is my submission to2 Task2

Oct 26 2023, 7:32 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello mentors,
Here is my solution to Task 2.

Oct 26 2023, 7:31 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello, Here's my task 2 contribution
https://github.com/spykelionel/wiki-lusophone2.git

Oct 26 2023, 7:31 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto updated subscribers of T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Good day mentors @Mike_Peel @Ederporto @Aklapper , Kindly find my submission for this task here. looking forward to your feedback.

Regards,
Alwoch Sophia

Oct 26 2023, 7:31 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hi mentors, here's the link to my solution for Task-2- get_status_code script.
Looking forward to your valuable feedback.
Thank you!

Oct 26 2023, 7:30 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Hello, I'm Chiemezuo, but you could call me 'Mezuo' for short. Here's my solution to this task.

https://github.com/Chiemezuo/outreachy-wikimedia-intern-task/blob/main/task_2.py

Oct 26 2023, 7:30 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.
Oct 26 2023, 7:29 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

Greetings, link to my Python script on commit and GitHub Repository

  1. Commit Link
  2. GitHub Repository
Oct 26 2023, 7:29 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.

@Maryann-Onyinye @Ederporto @Mike_Peel

Please find a link to my contribution on this Task;

https://github.com/PaulaGweke/Outreachy_Contributions/tree/main/T347259

Thank you.

Paula Ukerun

Oct 26 2023, 7:29 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347784: Addressing the Lusophone technological wishlist proposals - Task 2.
Oct 26 2023, 7:28 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello mentors! (@Ederporto, @Mike_Peel, @Albertoleoncio),

Though I have already submitted my solution at outreachy system before but now I am also sharing it here for task 1, Kindly have a look. I 'll update further details at outreachy submission as suggested by @Mike_Peel in his post at main project page .

Thank you!

With Regards,

Shashi

Oct 26 2023, 7:10 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello mentors!
Here's my solution to Task 1.

Oct 26 2023, 7:09 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.
Oct 26 2023, 7:09 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello everyone.
This is the link to Task 1: https://github.com/QUIN04/wikimedia/tree/Task1.

On working with Javascript. While working on this task, I learned how to use a "for loop" specifically the "for .... of " loop which is used for iterations that do not require index access to contents in an array.
I faced difficulties in handling the errors I got from my code. This gave me the opportunity to research and use StackOverflow, which I suggest that we all consider as a learning tool when we face errors in our code.

Oct 26 2023, 7:08 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Greeting, my submission for this task:

  1. Commit URL
  2. GitHub Repository Link
Oct 26 2023, 7:07 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello, I'm Chiemezuo, but you could call me 'Mezuo' for short. Here's my submission for task 1 (the HTML task)

https://github.com/Chiemezuo/outreachy-wikimedia-intern-task/blob/main/Task%201%20-%20Intern.html

Oct 26 2023, 7:07 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello Mentors @Ederporto @Mike_Peel @Albertoleoncio , I'd like to submit my contribution to this task for your review. Kindly take a look at it here . I'm looking forward to your feedback.

Regards,
Alwoch Sophia

Oct 26 2023, 7:06 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Good morning,
My name is oghenekevbe Egume.
Here is my contribution to this task:

Kindly find the link Here.

Thank you

Oct 26 2023, 7:05 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Good morning all,

Please @Maryann-Onyinye @Ederporto @Mike_Peel

Do find the link to my contribution on this task.

https://github.com/PaulaGweke/Outreachy_Contributions/tree/main/F347737

Thank you.

Oct 26 2023, 7:04 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello I am Anne Machinda and I am interested in contributing to this task. You can find my task 1 link below
task1

Oct 26 2023, 7:01 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello everyone, kindly have a look on my github contribution on this task. Here is the link for my github repo.
https://github.com/TuckWai97/Outreachy-wikimedia-project-1/tree/main/task_1

Looking forward on your feedback soon. Thank you.

Regards,
Tuck Wai.

Oct 26 2023, 7:00 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello Mentors

Here is the link to my solution for task 1 Github link

Oct 26 2023, 7:00 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hi mentors, here's the link to my solution for Task 1 - Github Repository Link.
Looking forward to your valuable feedback.
Thank you!

Oct 26 2023, 7:00 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.

Hello everyone, My name is Pinalee, and I'm interested in contributing to this project.

Oct 26 2023, 7:00 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.
Oct 26 2023, 6:59 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto added a comment to T347737: Addressing the Lusophone technological wishlist proposals - Task 1.
Oct 26 2023, 6:59 PM · Outreach-Programs-Projects, Outreachy (Round 27)

Oct 19 2023

Ederporto created T349341: Can't pip install mysqlclient on Toolforge.
Oct 19 2023, 7:11 PM · Toolforge (Software install/update)

Oct 9 2023

Ederporto updated the task description for T347259: Addressing the Lusophone technological wishlist proposals.
Oct 9 2023, 12:39 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto assigned T347253: Assist Capacity Exchange Development - Task 1 to DO-NOT-CHANGE.
Oct 9 2023, 11:27 AM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange

Oct 6 2023

Ederporto added a comment to T348259: Bad credentials for tools.

@Janui I had a similar problem. I just opened a ticket to it: T348293 Access denied for user 's55564'@'IP.ADRESS' (using password: YES)

Oct 6 2023, 4:23 AM · cloud-services-team, Data-Services
Ederporto created T348293: Access denied for user 's55564'@'IP.ADRESS' (using password: YES).
Oct 6 2023, 1:54 AM · Toolforge

Oct 3 2023

Ederporto added a comment to T347259: Addressing the Lusophone technological wishlist proposals.

@PaulaGweke and @Salwoch: I added the file, there was a button to click to authorize other people to see it. Thank you for bringing to our attention!

Oct 3 2023, 7:42 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto renamed T347784: Addressing the Lusophone technological wishlist proposals - Task 2 from T347259: Addressing the Lusophone technological wishlist proposals - Task 2 to Addressing the Lusophone technological wishlist proposals - Task 2.
Oct 3 2023, 7:38 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto attached a referenced file: F37853138: Task 1 - Intern.html.
Oct 3 2023, 7:36 PM · Outreach-Programs-Projects, Outreachy (Round 27)

Sep 30 2023

Ederporto updated the task description for T347259: Addressing the Lusophone technological wishlist proposals.
Sep 30 2023, 4:14 AM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto created T347784: Addressing the Lusophone technological wishlist proposals - Task 2.
Sep 30 2023, 4:09 AM · Outreach-Programs-Projects, Outreachy (Round 27)

Sep 29 2023

Ederporto created T347737: Addressing the Lusophone technological wishlist proposals - Task 1.
Sep 29 2023, 4:20 PM · Outreach-Programs-Projects, Outreachy (Round 27)

Sep 27 2023

Ederporto updated subscribers of T347259: Addressing the Lusophone technological wishlist proposals.

@Maryann-Onyinye Hello, thank you for your questions. Answering them:

Sep 27 2023, 8:25 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto updated the task description for T347259: Addressing the Lusophone technological wishlist proposals.
Sep 27 2023, 8:19 PM · Outreach-Programs-Projects, Outreachy (Round 27)

Sep 25 2023

Ederporto created T347259: Addressing the Lusophone technological wishlist proposals.
Sep 25 2023, 2:56 AM · Outreach-Programs-Projects, Outreachy (Round 27)

Sep 24 2023

Ederporto added a watcher for acl*outreachy-mentors: Ederporto.
Sep 24 2023, 10:21 PM
Ederporto updated the task description for T346641: Assist Capacity Exchange Development.
Sep 24 2023, 10:15 PM · Outreach-Programs-Projects, Outreachy (Round 27)
Ederporto updated the task description for T347256: Assist Capacity Exchange Development - Task 4.
Sep 24 2023, 10:13 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto updated the task description for T347256: Assist Capacity Exchange Development - Task 4.
Sep 24 2023, 10:13 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto updated the task description for T347256: Assist Capacity Exchange Development - Task 4.
Sep 24 2023, 10:12 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto added a project to T347256: Assist Capacity Exchange Development - Task 4: Capacity Exchange.
Sep 24 2023, 10:09 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto added a project to T347255: Assist Capacity Exchange Development - Task 3: Capacity Exchange.
Sep 24 2023, 10:09 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto added a project to T347254: Assist Capacity Exchange Development - Task 2: Capacity Exchange.
Sep 24 2023, 10:09 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto created T347256: Assist Capacity Exchange Development - Task 4.
Sep 24 2023, 10:07 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto created T347255: Assist Capacity Exchange Development - Task 3.
Sep 24 2023, 10:02 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto created T347254: Assist Capacity Exchange Development - Task 2.
Sep 24 2023, 9:53 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto updated the task description for T347253: Assist Capacity Exchange Development - Task 1.
Sep 24 2023, 9:44 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange
Ederporto created T347253: Assist Capacity Exchange Development - Task 1.
Sep 24 2023, 9:37 PM · Outreach-Programs-Projects, Outreachy (Round 27), Capacity Exchange

Aug 15 2023

Ederporto renamed T344289: Corrupt $HOME/.kube/config preventing use of Kubernetes for wikiquantos, wikiroupas, and possibly more tools from Corrupt $HOME/.kube/config preventing use of Kuberenetes for wikiquantos, wikiroupas, and possibly more tools to Corrupt $HOME/.kube/config preventing use of Kubernetes for wikiquantos, wikiroupas, and possibly more tools.
Aug 15 2023, 8:34 PM · User-bd808, cloud-services-team, Toolforge
Ederporto created T344289: Corrupt $HOME/.kube/config preventing use of Kubernetes for wikiquantos, wikiroupas, and possibly more tools.
Aug 15 2023, 8:13 PM · User-bd808, cloud-services-team, Toolforge

May 9 2023

Ederporto closed T316399: Develop features for Wiki Loves Monuments App, a subtask of T313361: Coordinate Wikimedia's participation in Outreachy Round 25, as Resolved.
May 9 2023, 5:14 AM · Developer-Advocacy (Apr-Jun 2023), Goal, Outreachy (Round 25)
Ederporto closed T316399: Develop features for Wiki Loves Monuments App as Resolved.
May 9 2023, 5:14 AM · Outreach-Programs-Projects, Outreachy (Round 25)
Ederporto closed T318453: Develop features for Wiki Loves Monuments App - Task 3 as Resolved.
May 9 2023, 5:14 AM · Outreachy (Round 25)
Ederporto closed T318452: Develop features for Wiki Loves Monuments App - Task 2 as Resolved.
May 9 2023, 5:14 AM · Outreachy (Round 25)
Ederporto closed T318451: Develop features for Wiki Loves Monuments App - Task 1 as Resolved.
May 9 2023, 5:14 AM · Outreachy (Round 25)

Apr 3 2023

Ederporto updated subscribers of T333889: Povo Conta Tool Loads An External Resource.

Hello, @JJMC89 and @komla. I've updated the code of this tool. Can you confirm, please, if that is all I'm supposed to do? I have other similar structured tools, Wikimarcas, Wikiroupas, Wikimotivos etc and I would like to update them all at once. Thank you!

Apr 3 2023, 10:46 PM · Privacy, Tools

Mar 8 2023

Ederporto added a comment to T331474: DiscussionTools is adding a class to h2 elements and that breaks custom css.

What is "column 5"?

Mar 8 2023, 7:21 PM · DiscussionTools

Mar 7 2023

Ederporto created T331474: DiscussionTools is adding a class to h2 elements and that breaks custom css.
Mar 7 2023, 8:01 PM · DiscussionTools

Oct 28 2022

Ederporto added a comment to T318453: Develop features for Wiki Loves Monuments App - Task 3.

Hi @Ederporto @Mike_Peel, HERE is my submission for task 3. I have also edited my task two according to the initial feedback. I await your feedback on this too, Thank you!

Oct 28 2022, 3:43 AM · Outreachy (Round 25)

Oct 26 2022

Ederporto added a comment to T321712: wikilovesbrasil.toolforge.org loads third-party content.

Sorry, @Aklapper, but do you have any suggestion on how should I tackle this?

Oct 26 2022, 4:55 PM · Privacy, Tools

Oct 17 2022

Ederporto updated Ederporto.
Oct 17 2022, 6:14 PM