Create custom server [closed] - sql

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
love the data and how sorted and process, and how can controlled.
I wanna to know if can build own server, and how can upload the data in it.

That depends on the type of data that you want to store.
Assuming you simply want to upload and store files on a server, then you can consider using minio. You can run it locally by following the instructions described here.

Related

Simplest JSON Schema documentation generator [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I've spent a few off-clock hours looking for a stupid easy way to take my JSON Schema file as input and generate some kind of human-friendly output. I don't even care what format that output is at this point, as long as it is complete-ish. Thanks for any insight.
Have a look at the following util from cloudflare: https://github.com/cloudflare/doca

GraphDB: Importing SnoMed CT to GraphDB [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I would like to load SNoMed CT data onto GraphDB. Can anyone guide to import the data to GraphDB? I have installed GraphDB workbench so far.
Also as I remember the SNOMED has it's own format, which is unsupported by GraphDB.
I've converted it to .owl before import. There's a Perl script attached to the release, which makes the conversion.

File Transfer over ip in vb [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
in Visual basic there is a function called file copy
filecopy(source,destination)
is it possible to copy from my computer to another over ip?
ex:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
if yes what is the correct syntax?
You need to specify the UNC path correctly, for example:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
Also it's better to use File.IO.Copy instead of the old VB6 syntax.

Is there a way to save a process and retrieve it after a reboot? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I know that the best way of accomplishing similar tasks is to save intermediate results into a file and restore the state from that file. But out of curiosity, I just wonder whether there is a way to save a process and retrieve it after a reboot. That's all.
Problem solved. I create a dump file of my process and get the address of my variables. Then I extract all the data I need from the file.

how to post the code to some host [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
how to post my web application and also the source code to a host..i want every one can see my project..i'm just know how to post an image..how to do that?
You can share your project using code.google.com click here where you can put all your code so that other peoples can also see your project.There is another option also that is GitHub you can also use that but it is having limited space.One thing which very important that is before committing your source code prepare proper documentation for your project because if documentations are not proper then it is of no use for other even if you written best quality code.