question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

the code is wrong but passed

See original GitHub issue

Challenge Name

challenge 78

Issue Description

run it and it should not be correct

Browser Information

  • Browser Name, Version: chorme
  • Operating System: win 10
  • Mobile, Desktop, or Tablet: Desktop

Your Code

 
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  h2 {
    font-family: Lobster, Monospace;
  }

  .thick-green-border {
    border-color: green;
    border-width: 10px;
    border-style: solid;
    border-radius: 50%;
  }
</style>

<div class="container-fluid">
  <div class="row">
    <div class="col-xs-8">
      <h2 class="text-primary text-center">CatPhotoApp</h2>
    </div>
    <div class="col-xs-4">
      <a href="#"><img class="img-responsive thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "></a>
    </div>
  </div>
  <img src="https://bit.ly/fcc-running-cats" class="img-responsive" alt="Three kittens running towards the camera. ">
  <div class="row">
    <div class="col-xs-4">
      <button class="btn btn-block btn-primary"><i class="fa fa-thumbs-up"></i> Like</button>
    </div>
    <div class="col-xs-4">
      <button class="btn btn-block btn-info"><i class="fa fa-info-circle"></i> Info</button>
    </div>
    <div class="col-xs-4">
      <button class="btn btn-block btn-danger"><i class="fa fa-trash"></i> Delete</button>
    </div>
  </div>
  <p>Things cats <span class="text-danger">love:</span></p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <form action="/submit-cat-photo">
    
    <div class="row">
      <div class="col-xs-6">
            <label><input type="radio" name="indoor-outdoor"> Indoor</label>
      </div>  
    </div>
    
    <div class="col-xs-6">
      <label><input type="radio" name="indoor-outdoor"> Outdoor</label>
    </div>
    
    <label><input type="checkbox" name="personality"> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Crazy</label>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</div>

 
 

Screenshot

image issue_20170107165726

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
alexr101commented, Jan 8, 2017

Hey @Bouncey I’ll work on this issue if it’s allright with you.

0reactions
alexr101commented, Jan 11, 2017

Thanks @raisedadead I was able to fix the problem. I think it had to do with mongo’s user permissions.

I sent a pull request.

Read more comments on GitHub >

github_iconTop Results From Across the Web

I found a mistake in my master thesis's code
It feels to me like a contract: Make contributions (source-code as the main contribution) -> thesis passed -> you get your degree. Now...
Read more >
I'm passing my lessons but my code is wrong? - Codecademy
I can type in anything and it will approve my code. Does anybody know how to fix this?
Read more >
Syntax Error - an overview | ScienceDirect Topics
Syntax errors are mistakes in the source code, such as spelling and punctuation errors, incorrect labels, and so on, which cause an error...
Read more >
Catch Arguments Passed in the Wrong Order When Calling a ...
Catch Arguments Passed in the Wrong Order When Calling a Function - Debugging - Free Code Camp. 849 views · 3 years ago....
Read more >
Java Software Errors: How to Avoid 50 Code Issues in Java
Imagine, you are developing Java software and suddenly you encounter an error? Where could you have possibly gone wrong?
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found