Hey there! Welcome to dev.to!
Welcome!
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.
Reply to someone's comment, either with a question or just a hello. 👋
Or answer this question: what's your favorite non-coding hobby?
Top comments (361)
Hello, my name is Luis. I'm from Colombia. I'm an electronic engineer but I love to code. I'm not a pro in this, but I try my best to learn every day. I'm learning Angular 6 right now. My favorite non-coding hobby is perhaps to travel. That's it, thanks a lot.
Saludos Luis!
I'm a developer but I'm in love with embedded dev, embedded Linux, microcontrollers and such (ST32 HAL is beautiful in my opinion!)
Anyways, welcome!
here's one way:
Hola yo soy NiluX o Linux
:) nice
Oh yes embedded is most in use this days and grow like multiply as everyone now know streaming even small companies and organisations going for streaming
Hello Luis. Good to have you here
Good!! I´m from Colombia too !!
Hi Sir, Can You answer this question??
Write a vanilla javascript program that returns 0 when input is 1 and 1 when input is 0. Do not use if, for, while, switch, do statements. Write as many implementation as you can think of (minimum 4 ways).
Hello. Well, I think this is it:
f1 = (input) => { return (1+input)%2 };
f1(0); // 1
f1(1); // 0
f2 = (input) => { return (1-input)%2 };
f2(0); // 1
f2(1); // 0
f3 = (input) => { return ~input&1 };
f3(0); // 1
f3(1); // 0
f4 = (input) => { return +!input };
f4(0); // 1
f4(1); // 0
I'm waiting for your comments about it. Thank you.
return [1, 0][input]
Hello !!
Nice to meet you Luis.
Nice! :) What kind of projects do you work in as an Electronic Engineer?
Well, nothing exciting. I worked for a medical company for about 7 years, but my job was to install, repair and do maintenance to medical devices. Right now my job is in the management area... kind of boring sometimes, but a job is a job ;)
hmm.... i need the .. have a example??
Hello!
My name is Ryan and I'm a systems admin pretending to be a programmer. Looking to learn from others and hopefully give back too! Most of my experience is on the Systems/Ops side, with most of my programming being of the integration/monitoring/back end fun variety.
As a fellow pretender, it's great to see you here, Ryan!
Welcome, Ryan. You'll surely learn a lot here.
I've just switched back to programming after a 10-15yr stint as a sysadmin - not having to fret about dodgy disk drives or power outages is the main plus point so far ;-)
That sounds like a lot of fun I'm the CEO of a company and I'm not very good at programming the software firm that I developed we have over 300 developers so I don't really have to be good at coding but I have to be good at Concepts and business management but I'm really good at reading people being able to read people is really important in software development and business which is what I excel in I do code for fun with unity and JavaScript. I really should be better at coding but when you have 300 software engineers and you an American company it gives you a lot of clout and imagination to make your ideas come to life rapidly started a game development company with my four Sons because teaching him about business and technology. I thought was really important for what better way to do that than to teach business Concepts and basic development then to make your own games.
What you see in your inner eye can become your reality
Sounds cool! Good luck to you!
Hello Ryan! Great to meet you. What technologies do you use for automation being a sysadmin?
Hi Ryan. You make it sound fun.
Programming can have a steep learning curve. Don't let that discourage you.
For starters:
-Pick ONE language to start with.
-WRITE lots of code. If you don't know what to write, try Project Euler. They have many small puzzles to solve.
-READ other people's code.
Hi everyone,
My name is Atta and I am a Software Engineer with over 5 years of experience. I mostly work as a full stack developer in Java, Spring Boot, Angular and Node.js. I would love to explore and contribute meaningfully to dev.to.
Welcome! :)
Hello Everyone,
My name is Ahsan Naveed. I am a 4th year Computing Science student looking forward to exploring this community and learning more from Y'all!
Best,
Ahsan
Hello Ahsan!
Hi all, I've been coding since 1996 and am currently overwhelmed by the many different frameworks and tech stacks. Even in Python (Why use asyncio instead of concurrent?). Same reason I quit Magic: The Gathering for 15 years when phasing was added after cumulative upkeep and one had to memorize those rules.
I quit Magic too when they kept on adding more and more rules rofl
Fortunately, new rules are now explained on the cards themselves, and many have smartphones to look up rules online.
Hello!
My name is David. I work as a Software Engineer on backend servers running Spring Boot. I can't remember how I found out about dev.to but I'm happy to be here and be involved in this community.
Cool! What resources do you use to learn Spring boot framework?
Hi all, my name is Ohad. I've been writing code since I was 13 years old and still consider programming and its various abstractions (logical reasoning, etc) as one of the main tools I use in my life. I started with computer graphics programming in what is known as the Demoscene and in recent history have been building web projects of all sorts and kinds.
Hey welcome to dev.to! How/why did you transition into web development?
Hey Liana, it was a pretty natural thing as more and more of my time as a user moved to using web apps/sites as opposed to then-native apps.
Welcome!
Welcome Ohad
1
Hi all,
I am a Front-end Engineer who love to code and develop web apps and websites in ReactJS with an inclination towards creating meaningful components and styling up with Material UI and SCSS (also know many other CSS frameworks ;)
Great to have you Dikshant!
Hello, my name is Aditya. I am from India, currently working in USA. I am working in Quality Assurance field but interested in learning on how to code. I am learning Python and hoping to learn & share a lot in this forum. Thanks!
Hi Aditya, welcome to the community :). I hope you find it useful.
Some comments may only be visible to logged-in visitors. Sign in to view all comments.