DEV Community

dev.to staff
dev.to staff

Posted on

Welcome Thread - v180

Cat saying yo

Welcome to DEV!

  1. Leave a comment below to introduce yourself! You can talk about what brought you here, what you're learning, or just a fun fact about yourself.

  2. Reply to someone's comment, either with a question or just a hello. 👋

Great to have you in the community!

Top comments (123)

Collapse
 
coddernita profile image
Coddernita

HELLO!!!!!

Am Coddernita from Nigeria , Am 17 yrs of age and also an undergraduate seeking for admission to the university
Am in an advance level in Html and CSS and beginner in Python

Am here for guidance, for discovering more ideas and also for fun........cause coding is fun

Collapse
 
bankolejohn profile image
bankolejohn

NIce one....I am John from Nigeria. New to the community.

Collapse
 
coddernita profile image
Coddernita

COOL

Collapse
 
shibaahmed profile image
Ahmed Shiba

Welcome

Collapse
 
coddernita profile image
Coddernita

Thanks

Collapse
 
zionnaire profile image
Zionnaire

Welcome

Collapse
 
nolansatoh profile image
Satoh Nolan

Hi! Have a nice day and nice work!

Collapse
 
kristofferr profile image
kristoffer

I'm kristoffer, also from Nigeria, also an undergraduate.

I'm a mern stack developer and a junior developer for the organisation at which I work.
Its nice to virtually meet you coddernita

Collapse
 
coddernita profile image
Coddernita

Hi Kristoffer.......it nice to also meet you virtually

Collapse
 
serpclix profile image
Websiites.com

Wekcome!

Collapse
 
coddernita profile image
Coddernita

Thanks

Collapse
 
zigrazor profile image
ZigRazor

Welcome everybody,

I share with you my Open Source Projects that I'm working on:

GitHub logo ZigRazor / CXXGraph

Header-Only C++ Library for Graph Representation and Algorithms

CXXGraph

DOI

DOI

codecov CodeFactor

GitHub license GitHub release

LGTM Alerts LGTM Grade

Generic badge Generic badge Generic badge

Generic badge Generic badge

Join the chat at https://gitter.im/CXXGraph-Community/community

Share on Tweet

Introduction

CXXGraph is a small library, header only, that manages the Graph and it's algorithms in C++. In other words a "Comprehensive C++ Graph Library" An alternative to Boost Graph Library (BGL).

We are Looking for...

We are looking for:

  • Site Developer for the development of the CXXGraph site ( for the moment on GitHub Page );
  • Developers and Committers, also at first experience, we will guide you step by step to the open-source world!

If you are interested, please contact us at zigrazor@gmail.com or contribute to this project. We are waiting for you!

Roadmap

Completed Description Date of Completition
✔️ First Optimization Apr 4, 2022
📝 Add Benchmark for all algorithms TBD
📝 Code Optimization TBD
📝 Release 0.4.0 TBD
📝 "Const" Code Review #155 TBD
📝 Release 0.5.0 TBD
📝 Official Site Release TBD
📝 Reduction of Code Issue of Static

GitHub logo ZigRazor / CXXMicroService

A C++ Library that give microservice framework ( Server / Client ) upon 0mq framework

CXXMicroService

A C++ Library that give microservice framework ( Server / Client )

codecov CodeFactor

GitHub license GitHub release

LGTM Alerts LGTM Grade

Generic badge Generic badge Generic badge

Generic badge Generic badge

Introduction

CXXMicroService is a C++ library, that manages MicroServices, upon different Framework ( actually only 0mq is implemented).

We are Looking for...

We are looking for:

  • Site Developer for the development of the CXXMicroService site ( for the moment on GitHub Page );
  • Developers and Committers, also at first experience, we will guide you step by step to the open-source world!

If you are interested, please contact us at zigrazor@gmail.com or contribute to this project. We are waiting for you!

Roadmap

Completed Description Date of Completition
✔️ First Commit May 2, 2022
✔️ Introduce the basic Framework May 24, 2022
📝 Introduction of more complete Examples TBD
📝 Introduction of Orchestrator TBD
📝 Introduction of Unit Test Framework TBD
✔️ Introduction of basic CI/CD Jun 6, 2022
📝 Advanced CI/CD TBD
📝 First Beta Release

GitHub logo ZigRazor / MTL

Multi Thread Library

MTL (Multi Threading Library)

MTL_Logo

Contributors Forks Stargazers Issues GPL-3.0 License

Multi Threading Library is a set of utilities, easy and ready to use for common task in multi threading environment and development.

Roadmap

  • Thread Class
  • Thread Manager
  • Thread Pool
  • Task Class
  • Ordered Task
  • Task Flow
  • Complete Documentation
  • Doxygen Integration
  • First Beta Release
  • Test Framework
  • CI/CD Pipeline
  • First Stable Release
  • Thread Monitoring
  • ...

See the open issues for a full list of proposed features (and known issues).

Getting Started

This is an example of how you may give instructions on setting up your project locally To get a local copy up and running follow these simple example steps.

Prerequisites

The following are required to get the project up and running.

Google Test

GoogleTest

git clone https://github.com/google/googletest.git  # Dowload the Google Test repository
cd googletest                                       # Main directory of the cloned repository.
mkdir -p build                                      # Create a directory to hold the build output.
cd build                                            # Move
Enter fullscreen mode Exit fullscreen mode

GitHub logo ZigRazor / PyStateMachine

Python State Machine

PyStateMachine

python Python State Machine

CodeFactor Codacy Badge

DeepSource DeepSource

Introduction

PyStateMachine is a Framework that support state machines in Python

Requirements

  • Python3

How to Run

Work in Progess

Example

Work in Progess

Test Suite

Work in Progress

How to contribute GitHub contributors

Read the CONTRIBUTING GUIDE

Hacktoberfest

We are pleased to inform you that this repository is participating in the #Hacktoberfest!

Happy Coding!

Contact

E-Mail : zigrazor@gmail.com

GitHub Profile Profile views

ZigRazor's github stats

Support

To support me just add Star the project GitHub stars or follow me GitHub followers

To get updated watch the project GitHub watchers

Project Info

Readme Card






Collapse
 
dipendud4s profile image
Dipendu Das

Hello World 🙂,
I am Dipendu a self taught full-stack developer cum tech lead with 10 years of experience. At this point in my life I want to contribute a part of time to some open source projects and give back some of my skills to the world that gave me such an interesting career. Joining the community for ideas, network and collaboration.

Here is one of my open-source project that I am working on

GitHub logo websyncs / skratch

A minimal, lite weight and fast reactive UI framework built from scratch.

#️⃣ Skratch GitHub license npm version PRs Welcome

A very lite weight reactive ui framework, built from scratch. Inspired by Sinuous

Installation

npm i skratch
Enter fullscreen mode Exit fullscreen mode

Examples

There is nothing more needed to create an app rather than appropriate application of few lines of code. It feels more like native but works like react.

import { o, html } from 'skratch';
const count = o(1);
const App = () => html`
  <div>
    <div class="myclass">The count is ${count}</div>
  </div>
`;
setInterval(() => {
  count(count() + 1);
}, 1000);
document.body.append(App());
Enter fullscreen mode Exit fullscreen mode

Custom Component

Create a custom component with a function like react functional component and define it with a name to use inside another…

Collapse
 
ajayk profile image
Ajay k

Hi everyone,
Im planning to prepare for Faang companies, ready to get tips and tricks or any mentor.if not anyone who is preparing like me can pair up, currently working in java and flutter sometimes.

Collapse
 
khansa profile image
Khansa Mueen

Here's Khansa Mueen from Pakistan, a Full Stack Developer, Mentor, Technical Writer, and lifetime learner. I am a self-motivated, self-driven individual that is constantly seeking new challenges and chances. I enjoy hackathons and contributing in communities. I am currently a Mentor at the Tech Hatch community, which seeks to empower Pakistani youth by bridging the gap between education and work. In addition to technical talents, we provide a full organisational climate. Every day, I bring my enthusiasm for to work. I aspire to be a life-long learner and have discovered the value of adapting traditional techniques to modern-day initiatives.

I'm also very excited to announce that I recently received a Top 7 badge from the dev.to community.
dev.to/devteam/top-7-featured-dev-...

Collapse
 
nueldotdev profile image
NuelDotDev

Hi everyone!

My name's Nuel, I'm 17 and from Nigeria. I fancy myself as a python intermediate(I don't think I'm at expert level yet) I'm proficient in HTML and CSS, JavaScript doesn't sit well with me though, I'm also venturing into C++ and recently began my Django journey.

Present goals, are to understand the ins and outs of Django and hopefully land a job as a junior developer with it.

I'm joining the community cause I love tech but programming makes me tick, to meet and connect with like minded people and also cause... LEARNING... I mean it helps the brain and stuff...

Collapse
 
mannyistyping profile image
Manny

Ahoy!

I am Manny.
Long time listener, most recently joined member.
I use to have another account that I transferred away from.

I am looking to refresh and start anew.

I am glad to be here and I look forward to sharing my thoughts and learning of others'!

Collapse
 
mannyistyping profile image
Manny

I welcome you.

Collapse
 
jblazquezmartin profile image
Jesus Blazquez • Edited

Hi all, I'm Jesús from Spain. I work in Aircall, internacional company based in France, I'm an expert in VoIP Open source systems (Asterisk, freeswitch, Kamailio) and other comercial solutions.
Now I work in VoIP Data Analysis but my last works are about systems automation with Python, migrate our systems to AWS and explore IaaS with Docker.

Collapse
 
han_kami profile image
Adetoye Anointing • Edited

I am passionate about building scalable, fast, and concurrent APIs and microservices for application backend services. I am always open to new approaches and technologies to solve existing problems. With a strong background in Golang , I am also skilled in Linux, Git technologies, SQL and NoSQL Databases, deployment tools and googling (research) . My dedication to learning and problem-solving has enabled me to develop highly functional and cohesive products.

If you're looking for a talented and dedicated software engineer to join your team, please don't hesitate to reach out, connect with me and explore new opportunities!

Collapse
 
ghostclonelol2000 profile image
<}:-{~ .A.K.a. DOOM

Mega hurts
Ford dif tekdec jourmangand

ForumzeXpert
C

Collapse
 
sunny64 profile image
Sunny

Hey Everyone, I am Sunny currently pursuing Diploma in Computer Science. I want to become a full stack developer and I am looking for the right guidance. Also I'd love to connect with more developers. I'll be glad if anyone who has experience in full stack development can help me follow the right path.

Thanks.

Collapse
 
gbwhatsappapk profile image
GBWhatsApp APk • Edited

GBWhatsApp APK Download Latest Version

Download GBWhatsApp  Latest Version - GbApps.Pk

Collapse
 
ttorr3 profile image
Tomas Torre

Hi!
Am Tomas Torre from Córdoba, Argentina. Am 23 years old and am a Student of Computer Science in FAMAF.
Am a jr. backend developer with preferences for NodeJS.
I come here to learn more about web dev. and something about machine learning!

Collapse
 
aleladeia profile image
Alexandre José

Hello Everyone, i'm Alexandre José, i'm from Brazil, and have 23 years old, i work on a software company with support to our system, i'm graduate at Universidade Paranaense on Sistemas de Informação, in the beginning i've got frustrated, because the college it wasn't what I expected, but i keep studying to be a DEV, I learned more out of college than in it.

Sorry about my English mistakes, my github: github.com/Aleladeia

Collapse
 
olivieradjagba profile image
Adjagba Olivier Mahumawon

I am here to share my knowledge with you and to learn from you as well. I did a training in Mathematical Engineering and Modeling and I am also self-taught in Front-end web development. I hope to learn more to improve my front-end development skills and also have fun with my math and math mod friends. I am happy to be part of the team and I look forward to collaborating with you.

Some comments may only be visible to logged-in visitors. Sign in to view all comments.