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
 
zionnaire profile image
Zionnaire

Welcome

Collapse
 
shibaahmed profile image
Ahmed Shiba

Welcome

Collapse
 
coddernita profile image
Coddernita

Thanks

Collapse
 
bankolejohn profile image
bankolejohn

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

Collapse
 
coddernita profile image
Coddernita

COOL

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
 
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
 
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
 
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
 
pawangupta5050 profile image
Pawan Gupta

Hiii
I am Pawan Gupta from India, I am 21 yrs old and graduate in IT. I am a Web Developer. I am familiar with Html and CSS and JavaScript.
I am here to get down new ideas and to be a part of dev community.

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
 
ghostclonelol2000 profile image
<}:-{~ .A.K.a. DOOM

Mega hurts
Ford dif tekdec jourmangand

ForumzeXpert
C

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