Questions tagged [codio]

Codio is a cloud-based visual front-end IDE.

Codio is a cloud-based visual front-end IDE that covers the complete web development cycle, from prototype to deployment.

52 questions
13
votes
4 answers

Not able login to Heroku account from command line

I am using codio.com . From there I am using ubuntu terminal to log into Heroku but it's giving me below error . I have the read the help page also . It says with MFA you have to use browser for login . But the issue is browser is not opening from…
3
votes
1 answer

Golang: readsym out of sync

When I run my GoLang program it throws me this exception: packages/go-lang/1.3/pkg/tool/linux_amd64/6l: readsym out of sync Does it come from my amd64 which would not be supported by the module of resize ? Code block: package main import ( …
3
votes
1 answer

COPY FROM csv file into Postgresql table and skip id first row

simple question I think but I can't seem to find the answer through Googling etc. I am importing csv data into a postgresql table via psql. I can do this fine through the pgAdmin III GUI but am now using Codio Online IDE where it is all done through…
Jay Killeen
  • 2,832
  • 6
  • 39
  • 66
2
votes
1 answer

Running Guard Livereload in a Codio box

I am trying to run guard-livereload on my Codio box. The problem is when ever I "run" the project I get a CONNECTION_REFUSED error in my browser console. I am not sure what is doing this as I have changed the port into the Codio range and set the…
Otis Wright
  • 1,980
  • 8
  • 31
  • 53
1
vote
1 answer

Printing letters in asterisks moving up and down

First and foremost, I'm a beginner, trying to figure out how to print the letters 'OK' moving up and down using asterisk. The goal is to start at an offset position and have them increment and decrements x amount of times. (I'm not on this part…
Elchavo18
  • 60
  • 9
1
vote
3 answers

Python Grocery List Python 3 Codio Challenge

So I am looking for a way to add separate items to a list in the form of individual dictionaries that contain the grocery item's name, price, and quantity. I only started programming a few weeks ago so please forgive my horrendous code and beginner…
1
vote
3 answers

I'm in a beginner's Python course, and my assignment is to print variable 'N' backwards using a 'while' statement

Here are my instructions: We will pass you a value, N. You should output every positive value from N down to and including 0. And here is my assignment: # Get N from the command line import sys N = int(sys.argv[1]) # Your code goes…
T.Mic
  • 9
  • 3
  • 6
1
vote
1 answer

How to upgrade node in codio's terminal?

I need node +5, but the current setting is : node --version # v0.10.25 Is there a way to upgrade node to --version +5 ?
Hugolpz
  • 17,296
  • 26
  • 100
  • 187
1
vote
1 answer

Online IDE that you can share a private url for invitees to view

I thought for sure this would be a normal thing, but while reading about Nitrous, Koding, Codio, etc, I couldn't quite find it. I want to build a site in an online IDE and share a private url with people to use it. I don't want the public to see…
timlohnes
  • 115
  • 4
1
vote
1 answer

How do you change the iframe address used by Meteor Velocity

I am using Codio for my Meteor development, so my app is not hosted at localhost:3000 when I'm previewing it, it's actually at random-name.codio.io:3000, which I have to get to by visiting random-name-3000.codio.io, so when Velocity fires up its…
Thaum Rystra
  • 740
  • 7
  • 14
0
votes
1 answer

Why am I getting this error and is it fixable? C0206(consider-using-dict-items)

In line 52 of my code I keep getting the error, fact_check.py:52: [C0206(consider-using-dict-items), get_totals] Consider iterating with .items() and I don't know how to fix it. the section of code is as follows... def get_totals(data, presidents): …
user20352630
0
votes
1 answer

Values in first Column are not showing properly in sql

When I run a Select * query for my table the values in the OrderID do not show up. I suspect this has something to do with the Description column which is the last column in my table. When I omit that column the values in OrderID appear. I did need…
0
votes
2 answers

My ubuntu 18.04 machine will not install ruby version 2.7

My machine has simply capped at ruby version 2.5, ruby -v outputs ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux-gnu]. I have tried sudo apt update && sudo apt upgrade, and sudo apt-get install ruby-full, but non of which have seemed to…
Zak
  • 1
  • 1
0
votes
1 answer

debug : Trouble shooting Backwards triangle project

I don’t understand why this doesn’t run. I am trying to make a program that displays the text the user inputs as a triangle. Each new line adds a letter which forms the triangle pattern. For example, if the user enters the word computers, the output…
0
votes
0 answers

Pylint in Codio keeps telling me I have indentation errors, but there is no way to fix the indents without breaking my code

I am trying to submit a turtle program in codio, but the autograder keeps telling me I am missing indentations in my function definition section. My program works perfectly in other IDE's like repl.it and VScode. Codio is basically saying that…
1
2 3 4