not sure whats the file extension is it a .html?
Yes, it has the same code as the one I presented above but just changed the Scripts as we did different scripts through the classes.
I guess my main question is will I need to know Javascript to program with Solidity for ETH/Defi?
Do you have IT people that can jump on my computer and see if they can figure it out?
Our IT from the firm I worked for used to do that to help us out.
try renaming the file to loopingTriangle.html just right-click on it and rename. You can also try right-click and open with
You don’t need it but it is recommend for the academy as they assume you know the basics of coding so i would read up on it coding is mostly reading and problem solving and i would strongly advise against allowing letting someone you don’t know remote in to your system. I don’t think the Academy offers that support either.
I have tried the right click and Brave doesn’t even come up as an option to open it but when I use chrome to open it it opens like the above snip code on paper. I will try adding the HTML to the saved name.
Okay, the .HTML worked to be able to view it in my Brave browser… OMG, thank you very much CryptoDev…
But
Even with the .HTML the page opens up completely blank? Does that mean I don’t have it right or?
Yeah, I just need someone to actually talk to to walk me through some of these scripts to be able to ask, (probably) pretty basic questions but you are talking to the guy that learned DOS in high school and was looking for the (ANY) key to get the program to start so I take this quite literally and look at it as the only way to write that certain code when in fact there are many ways of doing it and I can’t find my niche or what is easiest for me without knowing the other easier ways, (short cuts are my favorite cause time is money).
You’ll probably need to turn off the brave shields click the lion next to search bar.
If you have a professional membership you should have a student counselor that could help.
How do I know if I have the Pro Membership?
Also, when I open the page in Brave the lion is gray so I can’t click on it so I am assuming that means it is not blocking anything.?
Ok, I found it, I do have the professional plan so I will have to try and figure out how to get a hold of the counselor.
I found him…
Thank you so much CryptoDev…!
Hello, In the Javascript course, I am doing the “Looping a Triangle” exercise.
I have written this code, but am unable to see anything printed. Please can someone help me? Thank you.
var row = 7;
for (var i = 0; i < row; i++) {
var printTo = "#";
for (var column = 0; column < i; column++) {
printTo += "#";
}
console.log(printTo);
}
Hello @oneworldcoder, hope you are great.
Your code works perfectly, check your console from your browser, since you are using console.log()
you will see your result there.
If you have any more questions, please let us know so we can help you!
Carlos Z.
Where do l click to add to discussion notes for bitcoin as money?
Hi Ivan,
I am as green as they come. A real beginner…
I’ve done the first couple of reading exercises and though I seem to have some grasp on what I’m learning there, in practice I just cannot get my web page to show a pop-up alert, and thus I am completely stuck on this first exercise. Given my complete unfamiliarity with HTML I went ahead and followed a short tutorial to create some web content:
I followed the steps and created my first webpage with the following code:
<!DOCTYPE html>
<html>
<head>
<title>mywebpage</title>
</head>
<body>
<h1>Sergio's Webpage</h1>
<h2>It's all about me!</h2>
<h3>Me too!</h3>
<p>wellcome to my world!</p>
<a href="https://www.foxnews.com/">Foxnes</a>
<img src="Claudia_files/gettyimages-10105118-170667a.jpg"</img src>
I insert the JavaScript command to create the pop-up alert as shown, save the page and refresh, but the code only returns to its original state with no alert.
I’ve been away from any sort of device other than my phone for years, and I am using the Microsoft Edge browser on a new device, which seems pretty new in my experience, I am wondering if this might also be causing issues with the code format in the Console.
Thank you in advance for any feedback you may be able to provide for this.
Regards,
S
Hello @sandrau, hope you are ok.
I guess you mean the discussion topic of a lesson, could you please specify me the course and lesson? so i can guide you better through it
If you have any more questions, please let us know so we can help you!
Carlos Z.
Hello @sergio.lugo77, i’m sure i already replayed you in another topic related to the same problem.
If you have any more questions, please let us know so we can help you!
Carlos Z.
Hi, where can I find the reading materials for the Reading Assignment on Variables?
I can only find info indicating the chapter and pages we’re supposed to read: Chapter 1 (pages 10-20).
However, no name or link to bibliography is provided in order to answer the quiz.
Please Help
I’m baffled. Can anyone explain why this line works:
$("addButton").click(fruits.push($("#newFruit").val()));
But this line does not?
$("addButton").click(function(){
fruits.push($("#newFruit").val())
});