Questions tagged [scratch-file]

Use this tag for all issues related to temporary files, otherwise known as scratch files.

Scratch files refer to (very) temporary files used by programs in the course of their execution.

For example, they may provide temporary data structures that are stored outside of main memory, temporary reports sent to a text file for viewing, and so on.

Basically, if the data in the file is not needed in the long term, you can consider it a scratch file.

30 questions
1
vote
1 answer

IntelliJ IDEA Scratch File: JSF xmlns URI not registered

From the Intellij website: Scratch Files, a very handy feature that helps you experiment and prototype. With this feature you can sketch something really quick right in the editor, without modifying your project or creating any files. You can open…
Patrick Garner
  • 3,201
  • 6
  • 39
  • 58
0
votes
1 answer

Scratch Application(MIT)

In the Scratch application, how can I change the download directory to any other location when I click "save the file to the computer"? Additionally, I would like to save the project file to a back end database using Node.js. Where can I access the…
Ajaykumar
  • 1
  • 1
0
votes
0 answers

Replicating Jetbrains Exposed Star Wars Example in IntelliJ Scratch file

I am following this wiki to learn kotlin Exposed. It contains an example of Referencing using Star Wars data. I would like to create a scratch and/or console file in IntelliJ which reproduces this simple example. However When I try to run the code I…
mars8
  • 770
  • 1
  • 11
  • 25
0
votes
0 answers

Implementation of Scratch-files?

I was making video-streaming applications then I read about scratch files and then I want to know that How to use scratch files for OTT Platforms?
0
votes
0 answers

could not load default face expression presets because the scratch disks are full

I open photoshop and loaded for a few seconds then it gave out the above err message popup. I searched it and found that scratch disk is temporary storage while Photoshop is running, though I cant fix this if the photoshop isn't running, there is…
0
votes
1 answer

Is it possible to autoload dd() and or other dev tools at the IDE level not project

I was working in a scratch file and tried to use a non native function (muscle memory) and of cause it threw an error The PHP Fatal error: Uncaught Error: Call to undefined function dd() in .../.scratch.php What I wanted to know is can I make dd()…
TarranJones
  • 4,084
  • 2
  • 38
  • 55
0
votes
1 answer

to access the scratch folder of a SLURM cluster node

I would appreciate your suggestions and advise on the following please : I am using a SLURM cluster and my colleagues have advised to run a singularity container on the cluster, and re-direct the output of the singularity container to a folder that…
Bogdan
  • 345
  • 1
  • 16
0
votes
2 answers

Kotlin compiler argument not applied to scratch file

I wanted to use kotlin.time.measureTime in a Kotlin scratch file but it doesn't work. ... kotlinOptions { ... freeCompilerArgs = ["-Xopt-in=kotlin.time.ExperimentalTime"] } Of course in my scratch file I "use classpath of module" which…
Michał Klimczak
  • 12,674
  • 8
  • 66
  • 99
0
votes
0 answers

Intellij 2020.1.2: why does scratch file give different output?

I sometimes use scratch files to check something, but now suddenly it started to give 'old output' when I reached scratch_11. I think it didn't coop with the 11 and executed the scratch_1 instead. What i wrote was a simple…
furion2000
  • 79
  • 7
0
votes
1 answer

Spring security + scratch java extension

Creating scratches for my HTTP requests to test endpoints , however since spring security is set I am getting HTTP/1.1 403 Forbidden How can i solve this, I know every time I run my project spring security generates a new key, however maybe there…
0
votes
1 answer

How can I configure the Kotlin version used for scratch files in IntelliJ IDEA?

I've recently installed IntelliJ IDEA in an attempt to learn Kotlin. I've set up a Kotlin project and configured IDEA to use the latest stable release of the Kotlin plugin (1.2.71-release-IJ2018.2-1). The following code works fine if executed in a…
Tagc
  • 8,736
  • 7
  • 61
  • 114
0
votes
0 answers

Setting scratch as temporary directory from R

I would like to set my temporary directory using the scratch space of the cluster. I have tried various methods and this one: How to change directory for temporary files - problems with huge temporary raster files but nothing works. I have to read a…
vgenepi
  • 25
  • 3
0
votes
1 answer

How to debug a scratch file in Pycharm

I am running python3.5 from a venv and am using PyCharm 5. My debugger works fine on normal scripts but doesn't allow me to step through my code at all on a scratch file. Is this normal? It won't even let me set breakpoints. Its driving me…
tommyc38
  • 703
  • 1
  • 8
  • 21
-1
votes
1 answer

"docker container create" with "nothing" inside. Ie: An empty / void / null / scratch container

It might be helpful to create a container that has nothing. Nothing means nothing. Use case In this answer https://stackoverflow.com/a/55683656/1315009 a container is created without ever starting it just to instantiate a volume and copy contents…
Xavi Montero
  • 9,239
  • 7
  • 57
  • 79
-1
votes
2 answers

How to open the old https message request in PhpStorm

I really like the cool feature "stratch file for http request" in PhpStorm. I use it a lot. Each time I ran any GET request, there is a JSON file createed with the result and I can see the file name after the request as follows: GET…
Md Monjur Ul Hasan
  • 1,705
  • 1
  • 13
  • 36
1
2