Questions tagged [coder]
7 questions
0
votes
0 answers
In macOS can a CALayer that has an NSImage as its contents be encoded / decoded?
Trying to decode a CALayer that was encoded with an NSImage as its .contents generates the following output in the console, and the image is not in the CALayer after decoding it.

Chris Walken
- 378
- 1
- 9
0
votes
0 answers
different find and getReference in entityManager
when I run those codes below , I see an error:
Caused by: Removing a detached instance ...
// in SinhVienDAOIlpm.java
@Override
public SinhVien getById(int id) {
return this.entityManager.find(SinhVien.class, id);
}
@Override
…
0
votes
0 answers
Error debugging application when running visual studio code server
I'm running VS Code Server in a docker container via CapRover (which uses code server package from Coder). For editing code it works great, but when I debug the app (I tried Astro and Svelte), the index page loads, but all other links are broken.…

mack
- 2,715
- 8
- 40
- 68
0
votes
1 answer
Jupyter Notebook not showing in Coder Code-Server
I set up Coder (with code-server) via a docker-compose.yml but encounter the problem, that Jupyter Notebooks can not be displayed or used is VSCode.
How the issue looks like with no cells showing up despite being present as seen in the outline on…

Kim Tang
- 2,330
- 2
- 9
- 34
0
votes
1 answer
Coder workspace creation failing
I am trying to set up Coder via Docker with docker-compose.
I defined it as a service in my docker-compose.yml (based on this in-line command):
version: "3.6"
services:
coder:
image: codercom/coder:1.35.0
ports:
- "7080:7080"
…

Kim Tang
- 2,330
- 2
- 9
- 34
-1
votes
0 answers
Setting Coder for Object output in Google Dataflow
My Google dataflow pipeline is something like this:
pipeline
// list of tables to backfill
.apply("Backfill table list", Create.of("example_table"))
// register the from and to IDs to backfill
.apply("Start table IDs…

Shahid Thaika
- 2,133
- 5
- 23
- 59
-2
votes
1 answer
Unexpected argument in python
class Employee:
def __int__(self, name, salary):
self.name = name
self.salary = salary
def getsalary(self):
print( self.salary)
rohan =…