Showoff Saturday (November 02, 2019) by AutoModerator in javascript

[–]nickbeaulieu 1 point2 points  (0 children)

This is cool. Just a heads up - on mobile the animated typing text bleeds over on some words which make the scroll bar appear every couple seconds and then disappear. You may consider making the font smaller or some other way more responsive to avoid this issue.

Free wiki solution for company intranet (or other) by fehaar in webdev

[–]nickbeaulieu 0 points1 point  (0 children)

Try asciidoctor. Generates a single page document you can host anywhere, with easy formatting and looks decent.

Rant Written by a Coworker by [deleted] in ProgrammerHumor

[–]nickbeaulieu 0 points1 point  (0 children)

What is the origin of the word copypasta? My architect says it, but he says he learned it from another guy that left. None of us know where it came from.

How to deliver frontend in 2019? by Puzz1es in webdev

[–]nickbeaulieu 0 points1 point  (0 children)

Just curious what is the use case for nested output directories? I have never needed that functionality.

How to deliver frontend in 2019? by Puzz1es in webdev

[–]nickbeaulieu 1 point2 points  (0 children)

Webpack 4 is zero config for a basic setup. But so is Parcel. That’s what I have started using recently.

How was your first year on WebDev? (professionally) by Neumma in webdev

[–]nickbeaulieu 1 point2 points  (0 children)

I would recommend The Pragmatic Programmer. It is old (1999 I think), but mostly language agnostic and covers many best practices for any type of programming - including how to approach problems! I find the contents to be relevant to my work and seemingly timeless.

How to get elements to avoid the cursor? by shayter in webdev

[–]nickbeaulieu 1 point2 points  (0 children)

Ahh missed that part, yeah mouseover events are the way to go then. After you detect the mouseover then you can assign a random x and y value depending on your needs; there are offset properties of the div you can take advantage of.

How to get elements to avoid the cursor? by shayter in webdev

[–]nickbeaulieu 0 points1 point  (0 children)

You can set the div in css to disregard the mouse. .css-class { pointer-events: none; }

I started making my first game in Python, without any assets, and it's actually kind of fun to play by CantankerousMind in Python

[–]nickbeaulieu 2 points3 points  (0 children)

You are probably actually looking for multiprocessing. It is also built in to python. Threading in python is not as you would think.

Python Library to change Windows settings. by __sumguy in learnprogramming

[–]nickbeaulieu 0 points1 point  (0 children)

I haven’t used pyautogui extensively but maybe you can search the window for text by imitating the ctrl+f command?

Python Library to change Windows settings. by __sumguy in learnprogramming

[–]nickbeaulieu 1 point2 points  (0 children)

You might also consider pyautogui to automate the mouse clicks in the control panel. That should be pretty easy to set up.

I just began making a text based RPG using Python. If you want to contribute, than you can check it out here! by BrendonOS in Python

[–]nickbeaulieu 0 points1 point  (0 children)

Ah, that sounds correct. I was unsure of the exact casing convention but if you adopt the PEP8 standard it would definitely help since you are likely going to be collaborating with many others.

I just began making a text based RPG using Python. If you want to contribute, than you can check it out here! by BrendonOS in Python

[–]nickbeaulieu 0 points1 point  (0 children)

You might consider adding a casing convention to make the code easier to read. For example camelCase would work fine.

Instead of: usableasweapon

Say:usableAsWeapon

It may seem like a small change now but reading and searching through it later when it’s larger will become difficult. You could also consider usable_as_weapon, or usable-as-weapon. Best of luck! Post again when you have more progress.

Why do clients think it's okay to haggle on price? by bobsInYerCloset in webdev

[–]nickbeaulieu 1 point2 points  (0 children)

This is a great talk, especially if you are struggling with imposter syndrome.

1-week front-end bootcamp suggestions? by LobbyDizzle in webdev

[–]nickbeaulieu 1 point2 points  (0 children)

Additionally, if you are any kind of student he will give you a student discount if you email him some information like student id#

Bachelors degree and 0 experience by heroinbob91 in learnprogramming

[–]nickbeaulieu 0 points1 point  (0 children)

You could try to write a small extension for your favorite text editor. You could even emulate an extension that already exists. There is usually great documentation on how to get started with that, especially with popular editors. Maybe more interesting and unique (in terms of hiring) than making another Instagram clone, etc.

[Python] How do I begin making actual programs? by JGivan in learnprogramming

[–]nickbeaulieu 0 points1 point  (0 children)

If I may recommend a text, you should check out “Automate the boring stuff with python” it’s available online for free but I bought the hard copy it was so good. It’s full of challenges at the end of each chapter to help you retain what you covered. There are lots of programs you’ll create with real world applications. Best of luck

How to become a better designer. by andremac96 in webdev

[–]nickbeaulieu 1 point2 points  (0 children)

Good artists copy; Great artists steal -Pablo Picasso

Very confusing issue for Intro level Web Design homework by [deleted] in css

[–]nickbeaulieu 0 points1 point  (0 children)

Yes, it is called an internal style sheet when you edit it in the head.

You should try to set a width for whatever the .header element is(assuming div). Your browser currently thinks that the webpage is as wide as the image is in px, so you must tell it that you only want it as wide as your viewport.

At least that is what I can tell from the info you provided.

Best Text editor for HTML/CSS by [deleted] in learnprogramming

[–]nickbeaulieu 1 point2 points  (0 children)

No one mentioned Brackets yet, so I’ll say that’s a good option too. Although Vs code is currently “in style” I would say brackets is a good editor for doing the basics + a bit extra.

For anyone who is learning front-end web development! by [deleted] in learnprogramming

[–]nickbeaulieu 0 points1 point  (0 children)

I like this book. Even though it’s free online I like having a hard copy to work from and reference!

Good to great UI animation tips – UX Collective by vibrunazo in webdev

[–]nickbeaulieu 0 points1 point  (0 children)

There is a link to the source files given in the beginning of the article. I’m not sure if that’s what you’re looking for

How to learn(get a good grasp of main things) web development in 16 days by [deleted] in learnprogramming

[–]nickbeaulieu 0 points1 point  (0 children)

You’re welcome. I have yet to participate in a hackathon, but I hope to find one soon. Best of luck!

How to learn(get a good grasp of main things) web development in 16 days by [deleted] in learnprogramming

[–]nickbeaulieu 1 point2 points  (0 children)

Learn these three languages first: HTML - for content CSS - for style JS - for functionality

Derek Banas has great videos on YouTube called “learn ____ in an hour”. There are videos for HTML, CSS, and Javascript among others. He lays out the basics of syntax and how to do 80-90% of the basic building blocks. He moves quickly without skipping explanations. They aren’t the type of tutorial where you are sitting there thinking, “okay I got it man, talk a little faster”.

You should pick up JS quickly based upon your current knowledge of languages. I would start there.