Ausnahme gefangen: SSL certificate problem: certificate is not yet valid ๐Ÿ“Œ 2022 Highlights: Open Source Development! โœจ

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š 2022 Highlights: Open Source Development! โœจ


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: dev.to

Looking back at 2022, I can certainly say that this year has been one of the best years of my life in terms of self-growth, learning, and productivity.

Tech Skills Gained โœ…

Image description

Cool projects I worked on

  • rwar - My static site generator
  • Exploit - A browser-based cybersecurity game built with three.js
  • Fragments - A cloud computing course project built with AWS tools
  • A Seneca College research project for automating the customer onboarding process using Optical Character Recognition (OCR).
  • Built multiple iOS and Android applications for my portfolio.

Open-Source Development ๐Ÿ’ป

I made some awesome contributions to these repos in the last 14 weeks.

Two most recent open-source contributions 2๏ธโƒฃ

1. My favorite repository: My-Photohub ๐Ÿ“ธ

I began working on this repository a few weeks ago as an internal project of Seneca College. As someone who loves photography, I knew I had to contribute to this.

The issue: GitHub Action to Generate Website and Commit to Repo

GitHub Action to Generate Website and Commit to Repo #5

Similar to #3, we need a way to generate an HTML page that uses all of the optimized images. Once it has been created, we need to re-commit everything in the Actions filesystem back to the repo's gh-pages branch (i.e., we want the built web site to be put into the gh-pages branch).

The solution ๐Ÿ’ก

This issue required me to work with GitHub Actions and what I had to do was use the images uploaded by the users and generate a website for them using GitHub pages.

GitHub Action to Generate Website and Commit to Repository #34

Fixes https://github.com/humphd/my-photohub/issues/5

This GitHub Action workflow takes the images uploaded from optimized directory and generates a website using GitHub pages. See the example of generated website from this link

Preview of the website

CleanShot 2022-12-08 at 00 56 20@2x

Note: The branch is currently named as issue#5-gen-web. Every test image that is currently in the optimized folder is in this branch. It copies over to gh-pages branch to generate the website.

Once this gets approved, we need to replace the branch name (issue#5-gen-web) in publish.yml to main

To test

You can change your branch to issue#5-gen-web and upload your desired pictures to optimized directory. After a successful commit and a push, this branch will result in a gh-pages website.

2. Risky contribution: Flutter ๐Ÿ”ต

Flutter is an open-source UI software development kit created by Google and is used to develop cross-platform applications for Android, iOS, Linux, macOS, Windows, Google Fuchsia, and the web from a single codebase.

I took a huge risk making this contribution to Flutter, but I knew it was a very useful one and the biggest I have done. I wanted to step way out of my comfort zone to do something, unlike anything I had done before. At first, I did not think I would end up contributing to Flutter as I was just simply experimenting with the issue I was thinking about. After about four days of work, I figured it out. But of course, the pull request was not so smooth, and tonight I discovered I still have some failing tests which I need to address promptly.

A little bit of backstory... ๐Ÿ“ฝ๏ธ

This summer, I was working as a research assistant at Seneca College for their industry partner which is an exciting startup in the vehicle renting industry - similar to Turo.

I had to do a lot of research for an efficient and automated customer onboarding process for them as it was their number one priority.
Their mobile application was built using Flutter and I found myself looking at a lot of Flutter code. Even though I was not directly involved in building the mobile application, I was required to quickly learn Flutter and therefore, Dart which is the language used by Flutter.

The Issue ๐Ÿ“

I took a big risk and filed the issue myself before working on it! So, how did the idea come about?
As I was browsing through the 5000+ issues currently filed on Flutter, it felt intimidating. I was not being able to find the right issue to work on. I tried working on one and it was going nowhere. Then, I had this sudden aha moment after reading many issues and thought, why don't I just file the issue myself that I was thinking about and work on it? I had seen many others do the same.
The issue was filed by me as a new feature request.

Add a way to flip/mirror an widget #116702

Use case

We need a named option to flip widgets horizontally or vertically. It's been mentioned in certain discussions that flutter does not provide a way to flip/mirror widgets. Though we can mirror a child by applying negative scaling, but it would be more appealing to have a dedicated option to flip/mirror widgets.

Proposal

Add a named constructor in the Transform widget to flip/mirror it's child

The Solution โœ…

Add transform flip #116705

Adds Transform.flip to allow flipping/mirroring child widgets

Fixes https://github.com/flutter/flutter/issues/116702

Pre-launch Checklist

  • [x] I read the Contributor Guide and followed the process outlined there for submitting PRs.
  • [x] I read the Tree Hygiene wiki page, which explains my responsibilities.
  • [x] I read and followed the Flutter Style Guide, including Features we expect every widget to implement.
  • [x] I signed the CLA.
  • [x] I listed at least one issue that this PR fixes in the description above.
  • [x] I updated/added relevant documentation (doc comments with ///).
  • [x] I added new tests to check the change I am making, or this PR is test-exempt.
  • [x] All existing and new tests are passing.
</div>
<div class="gh-btn-container"><a class="gh-btn" href="https://github.com/flutter/flutter/pull/116705">View on GitHub</a></div>




Flutter uses a 4-dimensional matrix to transform the image a widget is producing just like OpenGL. To mirror that image we have to rotate it around an axis.

To mirror it horizontally we have to rotate it around the y axis by 180 degrees, and to rotate it vertically we have to rotate it around the x-axis by 180 degrees.
With that theory in mind, we can apply matrix rotation to get the expected results. And by applying the transformation we get the scary math results as in the photo.
I love maths!

Image description

Flutter already has transform widgets and it has named constructors to facilitate different transformations like translate and scale, but it did not have one to flip/mirror. So inspecting their way of implementing those transformations, I simply plugged in the values for the final matrix for the arguments flipX and flipY. :)
I know it sounds simple, but it took me a lot of figuring out and studying the codebase to come up with this. I did not honestly think it would work out as I was just experimenting with it and ...ta-da... it did work out!

The hardest part about the PR was writing the tests. It took a lot of research, trial, and error. It took me around 4-5 days to complete the entire pull request and I still am fixing some failing CI/CD workflow tests.

Going forward... ๐Ÿš€

I need to improve on code reviews and it is a big part of my 2023 goals.

...



๐Ÿ“Œ Open-Source vs. Proprietary API Development Tools: Why open-source development tools are Better?


๐Ÿ“ˆ 35.4 Punkte

๐Ÿ“Œ Open Source is More Secure than Closed Source because Closed Source is More Secure than Open Source


๐Ÿ“ˆ 31.38 Punkte

๐Ÿ“Œ 2022 Highlights: Open Source Development! โœจ


๐Ÿ“ˆ 29.03 Punkte

๐Ÿ“Œ Intel Open Source Voices: A new interview series that explores the broader implications of open source development,


๐Ÿ“ˆ 27.87 Punkte

๐Ÿ“Œ LastMile AI Releases AiConfig: An Open-Source Config-Driven, Source Control Friendly AI Application Development Framework


๐Ÿ“ˆ 23.22 Punkte

๐Ÿ“Œ Open source talents are increasingly difficult to find: the 2022 Open Source Jobs Report - Linux Foundation


๐Ÿ“ˆ 22.95 Punkte

๐Ÿ“Œ CVE-2022-41742 | Nginx Open Source/Open Source Subscription/Plus ngx_http_mp4_module out-of-bounds write (K28112382)


๐Ÿ“ˆ 22.95 Punkte

๐Ÿ“Œ CVE-2022-41741 | Nginx Open Source/Open Source Subscription/Plus ngx_http_mp4_module out-of-bounds write (K81926432)


๐Ÿ“ˆ 22.95 Punkte

๐Ÿ“Œ Open-Source-Programm vereinfacht Open-Source-Lizenzierung


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ On Open Source Principles: On Software Complexity and Open Source.


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Open source alternative to turbotax called Open-source Tax Solver


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ 36C3 - Linux on Open Source Hardware with Open Source chip design - deutsche รœbersetzung


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ 36C3 - Linux on Open Source Hardware with Open Source chip design


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ 36C3 - Linux on Open Source Hardware with Open Source chip design - Prijevod s poljskog


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Librem 5 phone hands onโ€”Open source phone shows the cost of being different (open source hardware and software)


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ What does a REAL open source conference look like? | Open-source community management


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ For the love of open source: Why developers work on Linux and open-source software


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Open Source Insights behรคlt Abhรคngigkeiten von Open-Source-Projekten im Blick


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Bring DevOps to Your Open Source Projects: Top 3 Tips for Maintainers | The Open Source Show


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Bring DevOps to Your Open Source Projects: Top 3 Tips for Maintainers | The Open Source Show


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Open Source is Broken - points out what may be missing from Open Source Licenses


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Solving the Open Source Funding problem or how Free and Open Source Software can FINALLY be free!


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ New Open Source Security Foundation wants to improve open source software security


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ Open-source: Get SLAs to protect network apps with open-source components


๐Ÿ“ˆ 20.35 Punkte

๐Ÿ“Œ A Free Self-Hosted and Open-Source Alternative to TeamViewer Releases Version 1.1.9: Server is also open source now.


๐Ÿ“ˆ 20.35 Punkte











matomo