Skip to content
#

programming

Here are 3,282 public repositories matching this topic...

freeCodeCamp
Ieahleen
Ieahleen commented Nov 19, 2019

the solution given in the guide here https://www.freecodecamp.org/forum/t/freecodecamp-challenge-guide-cash-register/16012
fails in a situation like

const cid = [["PENNY",1], ["NICKEL", 0], ["DIME", 0], ["QUARTER", 1], ["ONE", 1], ["FIVE", 5], ["TEN", 10], ["TWENTY", 20], ["ONE HUNDRED", 0]];
checkCashRegister(3, 3.01, cid);

the change due is calculated as 3.01-3, which results in

slikts
slikts commented Sep 12, 2018

Chapter in question: https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20%26%20beyond/ch2.md#template-literals

The suggestion seems to be that the template literals would be all about strings; there's only examples that result in strings, and phrases like "final string value" and "generating the string from the literal" are used in what should be a general context, but the tag function

njacharya
njacharya commented Aug 16, 2019

A description is incomplete. It should mention:

These patterns are not competing, but complementing each other. To achieve availability, one needs both fail-over and replication.

right after

"There are two main patterns to support high availability: fail-over and replication. "

iamnewton
iamnewton commented Feb 21, 2017

I think the work you've done on this is amazing. Seems like a great project, but your README is a bit bloated and hard to decipher. Might I suggest you condense it down into a set of readable chunks and maybe link off to the wiki for the more detailed bits.

Its only my opinion, but I find that answering the following questions, in order, helps to simplify docs.

  • who? - who wrote the p
dexpota
dexpota commented Oct 19, 2019

I want to suggest an improvement on how the examples are currently organized.

Instead of having a markdown file with a list of examples (this) I think it would be better to have different directories each one with the configuration file (or different files.)

Then the list of examples included here could be c

deajan
deajan commented Jan 14, 2020

Hello,

I am currently deploying a nuitka built standalone program on a couple of different machines, and noticed that the api-ms-win-crt-*.dll files that come with Nuitka aren't enough depending on the target OS.

Example:
My program asked for api-ms-win-crt-conio-l1-1-0.dll which wasn't present on a vanilla Windows 7 32-bit OS, and which wasn't bundled by nuitka when compiled on Win10 x64.

adnzzzzZ
adnzzzzZ commented Feb 13, 2018

Introduction

In this article I'll talk about some "best coding practices" and how they apply or not to what we're doing in this series. If you followed along until now and did most of the exercises (especially the ones marked as content) then you've probably encountered some possibly questionable decisions in terms of coding practices: huge if/elseif chains, global variables, huge functions,

Improve this page

Add a description, image, and links to the programming topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the programming topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.