If you release a browser game to the web. How do you prevent people from making a copy out of your game? [closed] - javascript

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 months ago.
Improve this question
Apologies in advance if I'm missing something obvious here. But to my knowledge, all the code: css, html and JS, are available to anyone visiting your website (or playing your game on the web). How do they prevent people from stealing the original content?

You can use obfuscating tools to make your code less readable.
Also it's possible to make it harder to open devtools on your website.
But it is still not enough. You cannot just prevent somebody from doing something on the Internet. Everything you release to the web is accessible and copyable.

Related

High-Speed Website Screenshots with Python [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 need to take screenshots of a website continuously and pipe these data into a python array as fast as possible. Desirable would be at least 30 fps. It would be nice to have one screenshot/frame per function call, because I have to inject some JavaScript to the website after each frame.
The website is running a webgl canvas and is expecting keyboard input.
I already tried to make it with selenium and headless Firefox, but this is way too slow. What do you think is the best way to go to get close to my requirements?
Thanks in advance.
I would recommend to use Python MSS. This library is intended exactly to take screenshots really fast. It is currently maintainable and cross-platform, and has good documentation.

Code Required to achieve vertical slider effect in Wordpress (examples included) [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 6 years ago.
Improve this question
I'm wondering how I can achieve an effect similar to that of http://eng.getlost-getnatural.ru/ or http://rnbtheme.com/sixteenth/. I've contacted various support forums supplied through Wordpress and all they've been able to tell me is that I need to get a web developer and that the effect was possible. I, however, don't have the money for a web developer and went searching online to try to find what I was looking for and haven't been able to find anything yet. I can make code changes to my Wordpress site using javascript or css. Thank you so much to everyone who helps and answers!
What you are asking for could take a couple of hours to code from scratch, and then trying to match it to a wordpress site that we can't see or use as reference can create a lot of problems. I recommend looking at some jQuery plugins.
Here is a site to get you started, https://www.jssor.com/demos/vertical-slider.slider.
If you have any questions about the code once you download the plugin then we will be able to help you further.

What should I use to run HTML/CSS/JS code? [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 6 years ago.
Improve this question
I've created a few simple HTML/CSS/JS games. This time a few friends and I are going to create another game that people can download from some website. We want to use HTML CSS and JS even though that is probably not the best option.
All the games I created before I've used Chrome to run them. Of course I can't just make people run my games with Chrome. So how should I run it?
You can try using Electron (http://electron.atom.io/). You can use it to build desktop apps using Html/Css/Js.

Website technologies [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'm a sw engineer but I have almost zero experience in web development. I have noticed recently few interesting websites and I'm curious how they are built.
The first example is
http://www.google.com/nexus/5/
I'm really excited about the way page reacts when you get to the mid part where it describes the camera.
Today I saw that Microsoft has a similar website for their new CEO
http://www.microsoft.com/en-us/news/ceo/index.html
Since this is Microsoft, I'm guessing that it uses completely different web technology.
So, my question is, if I were to build a website like this for myself, where would I start first? I'm guessing that Google's website is relying heavily on JavaScript, but are there any open libraries/frameworks that I could use to achieve this effect?
Parallax scrolling for the scroll effects.
The jQuery library of javascript and of course using HTML / CSS for styling and structuring your pages. This is where you can start off.

Music Score WYSIWYG [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I'm intending to make a javascript WYSIWYG to edit Music Score. Does anybody know any relevant javascript library or something like that? Also I'm so curious to know whether there is any similar open source project out there.
So I thought stackoverflow would be the best place to ask.
Ideas are all welcome on implementation.
The closest thing I know of in Javascript is this: http://0xfe.blogspot.com/2010/05/music-notation-with-html5-canvas.html
It's not WYSIWYG editable, so probably won't suit you, but it seems to be about as good as it gets in Javascript/HTML5 right now.
Hopefully things will improve in the future, but I don't think what you're looking for is available yet.
I think https://dmitrybaranovskiy.github.io/raphael/ will be useful for your project.

Categories