how to post the code to some host [closed] - shared-hosting

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.

Related

How can I translate my website with Translate? [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 last year.
Improve this question
I developed a project with Nuxt JS. There are texts from the service that are static inside. I want to automatically translate all of these texts like Google Translate. How can I do this for free?
For free, you will probably have only one solution: do it by hand thanks to i18n.
Otherwise, you could probably programmatically generate your pages with a paid API like Deepl or alike. A google search may help you here.
PS: SO is not a how-to website, but rather a "here is how to solve your issue given the code details you provided to us".

Create custom server [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 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.

Can we automate APIs usiing testCafe? [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 3 years ago.
Improve this question
Caw we automate APIs using testCafe? I have a requirement to automate both Web & APIs together, I mean after doing some actions on the UI, I need to test relevant APIs.
I'm not sure if I understand well your needs but if you want to check the result of an api request I guess you'll need the RequestLogger : a hook you can add to your test on some specific api's urls and then in your test you will be able to check what the request contains.
Documentation here: https://devexpress.github.io/testcafe/documentation/test-api/intercepting-http-requests/logging-http-requests.html

How can I make a file that can only be read by my application? [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 want to know if there's a way to create a file that only my application can read but other programs (eg: notepad) can't
For example:
i create a config file from my application, and if i open it with notepad it will be garbled nonsense, like:
½ÁoLG0%­Ö9)9Ìm•~0ý<öKfƒ”ü9´~<ƒ\,Aëxzºv‡#u}ž¹ñ7µK³¨]fÛn {盞Ժî*Ò\úǃ«E%ñ
x#Â˼†ZÜŸ¹>ÇðÏ•Þ¢dóü0¹ñS`|ÛV‰‡Fëm¬2°,üdVNÆ$å^Rf­¾!v¼ñ
¡ýù´ÿËjC&¤œšÍÉ]ËÈFæTñq%#++ÜÝ[êq"#hbÍj‰Œ‚äd¡†¸<×sæå‘óùOë\2rxy
You're looking for encryption, if you want something readable only to your application but not the end user.
I don't know VB.NET but a quick google search shows me this question which has a pretty well written answer, that seems to explain how to encrypt a file in VB.NET

Integrate Third Party tool with vb.net [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 9 years ago.
Improve this question
How can integrate particular Third party tool with my vb.net application
Using Interop you can do Call Shell("tool.exe")
More details are definitely required, if you're still interested, but roughly speaking it depends on whether by 'integrate' you mean just triggering another application from yours or do you actually require back 'n' forth communication between these apps, whatever they are.
I can't remember the VB.NET specifics and I don't have it available right now, but in C# you could simply trigger another application like this:
using System.Diagnostics;
Process.Start("<shell command, e.g. fred.exe>");