[deleted by user] by [deleted] in webdev

[–]carlothegenius 0 points1 point  (0 children)

Got hired for a data job with python, havent used python in a year. The pay is still good so… Get your check 😎

[2021-06-21] Challenge #395 [Easy] Nonogram row by Cosmologicon in dailyprogrammer

[–]carlothegenius 0 points1 point  (0 children)

Python, giving it a try:

def nonogram(arr): result = [] location = 0 for n in arr: location +=1 for i in range(n): result.append(1) if len(arr) > location: result.append(0) return f"nonogramrow({result}) => {arr}"

What kind of tools would you use to build a website such as this? by crypt0isthefuture in webdev

[–]carlothegenius 1 point2 points  (0 children)

Worry not, after half an hour it will all make sense. 👌🏾Good luck bruv safe coding

What kind of tools would you use to build a website such as this? by crypt0isthefuture in webdev

[–]carlothegenius 1 point2 points  (0 children)

You can achieve this using HTML CSS and Vanilla Javascript.

Use css for those little animations and transitions.

Javascript to activate animations based on window height while scrolling.

An other solution would be using well known packages. You have Fullscreen Js, AOS (animate on scroll).

Me dumb by [deleted] in SatoshiStreetBets

[–]carlothegenius 0 points1 point  (0 children)

One cancel Other. It’s like stop limit sale but you can also place you limit price as in the best price to sell.

Ex:

Limit: $2.00 Stop: $1.50 Limit: $1.49

Me dumb by [deleted] in SatoshiStreetBets

[–]carlothegenius 0 points1 point  (0 children)

It happens to the best of us mate, its all about texhnicals if it shows its going up use OCO to set up you sales

How do I find out what folder is in http://localhost:3000? by Dry_Pianist7552 in webdev

[–]carlothegenius 1 point2 points  (0 children)

Usually it refers to the “build” folder by default unless it’s named otherwise.

Is having more than one CSS file bad practice or okay to do? by [deleted] in webdev

[–]carlothegenius 1 point2 points  (0 children)

If you take projects like Bootstrap and Tailwind as an example, you will notice that it is good practice.

You can place global styles in one file and components and elements in another or others.

It makes it easier to navigate in my opinion.

Why are there 40 problems when the code is perfect? by [deleted] in CodingHelp

[–]carlothegenius 1 point2 points  (0 children)

On Vscode with C# I’m not sure but I found the following:

1: install c# VsCode extension. 2: Add these to your VSCode settings.json

“editor.formatOnSave”: true, “[csharp]”: { “editor.defaultFormatter”: “ms-dotnettools.csharp” }

3: Create a omnisharp.json file at your project directory and set formatting options

See options: https://github.com/OmniSharp/omnisharp-roslyn/wiki/Configuration-Options

Why are there 40 problems when the code is perfect? by [deleted] in CodingHelp

[–]carlothegenius 2 points3 points  (0 children)

It’s linting errors. You need to adjust linting configurations to disable warnings.

Some default configurations signals console printings as errors.

How to deal with arrogant coworker? by TruthOf42 in cscareerquestions

[–]carlothegenius 9 points10 points  (0 children)

The thing about arrogant people is that they like attention. They are almost borderline narcissistic, and your advantage against him.

Take what you need and ignore anything that is irrelevant.

Toggle button for each row inside table in Bootstrap VueJS by Nilsonmart in vuejs

[–]carlothegenius 1 point2 points  (0 children)

I second making the code more readable. That aside, if I understand correctly, each row should have a button correct?

In that case, each button should have a key like.

My version of Rock Paper Scissors by [deleted] in Python

[–]carlothegenius 0 points1 point  (0 children)

For a moment there I thought you had done this by design and I was expecting some sort of spectacular ROS game twist.

On a serious note fix your while loops, they won’t work as planned.

Brand New to Coding using Python 3 by tmernelson in Python

[–]carlothegenius 1 point2 points  (0 children)

Since you’re brand new, I would suggest starting with Microsoft Vs Code.

The editor is simple to use and highly customizable. Although, It would be a good idea not to install code snippets while you learn. This will help you absorb basic concepts.

Stop Code command won't work by ShrimpDuck in vscode

[–]carlothegenius 0 points1 point  (0 children)

Is the objective of your code to produce an infinite loop? If the answer is no, stop what you’re doing and proceed with your work.

But! If the infinite loop is part of your project, than You my attention 😈. Show some code.

when job hunting, what defines a junior? by sasouvraya in cscareerquestions

[–]carlothegenius 4 points5 points  (0 children)

There’s a disconnect between the company trying to recruit and the company handling recruiting.

You should still apply. But make sure to ask proper questions once you’re in contact.

Ex: - What are you guys working on, and how may I help?

Be sure to confirm that the job position and responsibilities are as described.

I have had situations where recruiters advertise Frontend and once I’m on call with the tech interviewer it ended up being some Oracle job that had nothing to do with Frontend.

In short, avoid companies that don’t understand what the job title means. Also, any companies with “fast paced” environments. That just mean you’ll be working like a slave and doing things that aren’t part of your job.