DEV Community

Brian Bethencourt for CodeNewbie

Posted on

DEV Showcase v6

Welcome to the DEV Showcase - a weekly thread where you can share what you've been working on and get feedback and encouragement from the DEV community.

This is your chance to show off your latest project, share a cool hack or technique you've learned, or ask for advice and feedback from other developers. Whether you're a seasoned developer or just starting out, this is the place to connect with others and get inspired.

Here are a few questions to think about if you're stuck:

  • What have you been working on lately?
  • What tools or resources have you found helpful?
  • Have you learned any new skills or techniques recently?
  • What challenges have you faced, and how can the community help you overcome them?
  • What are your goals for your project or your career moving forward?

Remember, this isn't a competition or a challenge - it's just a space to share and connect with others. So don't be shy! Share your work and get feedback and encouragement from the DEV community.

We're excited to see what you've been working on, and to support you as you continue to grow and develop your skills.

Top comments (3)

Collapse
 
mr150 profile image
Valik Ulyanov

Not so long ago I started to promote my open source project. I had spent over 1,000 hours developing.

mlut is an Atomic CSS toolkit with Sass and ergonomics for creating styles of any complexity. Yesterday I wrote an article about it:

Collapse
 
darkterminal profile image
Imam Ali Mustofa
Collapse
 
schbenedikt profile image
Benedikt Schächner • Edited

I learned how to do an oAuth in Python with Github. Now I'm still trying to expand this further and, for example, also display projects. For that I found the tool Flask - you may already know it. With this you can then create your own web server, which I need for the oAuth so that I can get to the URL.


All of that should be integrated into my text editor. With this I'm currently learning a bit about Python.

GitHub logo SchBenedikt / Text-Editor

A text editor programmed with Python and PyQt5 with integration to Microsoft Word.

Text-Editor

A text editor programmed with Python and PyQt5 with integration to Microsoft Word.
Read WIKI for full instruction turorial + features

🛫Get started

This repository contains the code for a simple text editor implemented in Python. The text editor allows users to open, save, and export files, as well as apply formatting such as bold, italic, and underline. This post provides instructions on how to test the text editor To test the text editor, follow these steps:

  • ©️lone the repository
    Use the following command to clone the repository to your local machine:
    git clone https://github.com/SchBenedikt/Text-Editor.git

  • ⌨️ Install the dependencies
    Navigate to the cloned repository and install the required dependencies by running the following command:
    pip install -r requirements.txt

  • 🎉 Run the text editor
    Execute the main Python script to launch the text editor application:
    python text_editor.py

❇️Features

The text editor window will open, allowing you to…






I would always appreciate tips and tricks!