Questions tagged [coderunner]

Developer tool to "edit and run code in any programming language with just a single click." (Note: This is not the Visual Studio Code plug-in. That plug-in's tag is vscode-code-runner.)

CodeRunner is a Mac App from developer Nikolai Krill that allows you to:

Edit and run code in any programming language with just a single click.

With CodeRunner, it has never been easier to write and test code, run scripts, work with algorithms, or simply experiment with a new coding or scripting language.

Some of the advertised CodeRunner features include:

  1. Run code in any language
  2. Powerful editing
  3. Customizable templates
  4. Built-in console
  5. Add your own languages
  6. Interact with your code
72 questions
0
votes
1 answer

Notification on Console output (Spyder)

I use Spyder for training deep learning models , which usually take 10s of hours to get a result (Even with GPU setup). I generally leave it overnight , but when I leave the program running during the day , is there a Spyder software hack , to get…
abunickabhi
  • 558
  • 2
  • 9
  • 31
0
votes
0 answers

Can I make expandable/collapsable sections in CodeRunner?

I've been using CodeRunner 2 for a while and I was wondering, in order to optimize my workflow, if it's possible to make a treeview-like division within the code. In other words, being able to collapse what I'm not working on while expanding what's…
Lean P
  • 1
0
votes
1 answer

Cannot correctly get expected Union output for SQL

Troubles: Did not Order By properly and have not laid out code/or used conventions as expected. Question: The Union operator needs to be used here and to that end, find vendor_id's specified in line three of the code used and a quantity of less…
0
votes
1 answer

Jobe Server - Error while creating new server - Moodle - Code Runner

Tried to deploy an standalone jobe server as a backend service, with the CodeRunner plugin in moodle programming assessment. It is giving the following mapping error. [1 Jobe Successful [2
0
votes
0 answers

Error when compiling in CodeRunner

I just started using Code Runner quite recently and for some reason it won't compile my C program. The Error is as followed: Undefined symbols for architecture x86_64: "_rush", referenced from: _main in main-f9aa06.o ld: symbol(s) not found for…
0
votes
1 answer

Running Homebrew Python in Coderunner

I installed Python 2.7.12 with Brew on my Mac (Mac OS Sierra 10.12.1) and set my Path to /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin. Everything just works fine: python --version in the terminal gives me 2.7.12. For coding I installed Coderunner2.…
0
votes
1 answer

CodeRunner-- cannot compile multiple source c++ program

I am very new at c++ programming and programming in general. Recently we've been adding header files and other source files (implementation) to our programs in class. I've tried writing the simplest of programs to make sure I understand the basics…
itsDave
  • 1
  • 2
0
votes
1 answer

scanf prevents program from running

So I wrote this program using coderunner, #include int main() { int num1, num2; scanf("%d%d", &num1, &num2); if (num1 > num2) printf("The min is:%d\n ", num2); else printf("The min is:%d\n ",…
Demha
  • 13
  • 3
0
votes
0 answers

utf-8 error of python in coderunner2

Recently, I am trying the CodeRunner (version 2.2.2). My python is miniconda2, a scientific python. I can import numpy, but I cannot import pandas. That's tricky!! I tried some solutions like:…
0
votes
0 answers

CMakeLists.txt to specify compiling

So I am used to IDE's like CLion where we use CMakeLists.txt to tell the compiler flags, set things etc. Is there any way to do that in Coderunner? I see that I can add flags, but is there any way add the example code…
simonkaspers1
  • 616
  • 4
  • 16
0
votes
1 answer

CodeRunner new statement position

I'm new to CodeRunner and I was wondering if there is a way to have the cursor to place itself at the same position that the last statement when pressing enter to start a variable declaration statement, so that they all start at the same position…
0
votes
1 answer

Compiler vs. IDLE Environment

I'm using mac osx mavericks (fully updated) and while looking for a pyscripter alternative, I decided to download CodeRunner from the app store. I've noticed that certain programs I create in one application, don't always run the same in the other…
0
votes
1 answer

Customizing Sublime Text 2 to be like CodeRunner

I've been using Sublime Text for a while now, but I checked out CodeRunner and there are a 2 features I really like about it that I'd like to get working in Sublime. 1) Run / Custom Run command: I like in CodeRunner how it will determine the type of…
Chet
  • 18,421
  • 15
  • 69
  • 113
0
votes
3 answers

Index out of range error with exception in thread main

I'm a beginner learning to program in Java. I have written a program that reads words from a file and prints them with spaces in-between in addition to as they exist in the file. When I run my program I get an error denoting an "exception in…
supercgeek
  • 25
  • 5
0
votes
1 answer

Program CodeRunner doesn't show anything in console when returning values

I'm using the Mac program CodeRunner to test some Python code. However, when I return values through functions, the console does not show these values. ex: def square(x): return x**2 Normally evaluating square(2) would result in the console…
user2620625