Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
So we have a web application and we keep changing user interface. Sometimes user asks to tell them about new features and changes. Previously we have sent a group email to let our users know about new features and changes. But email thing is tedious sometimes. Is there any easier way to dynamically announce on everyone's application that these features have been added? Are there any examples , apis for this? I am looking for any apis particularly in Java.
You could have a page on your web app (like a news/updates/announcements page) for this kind of thing. If you are planning major changes then put an article on the news page a little in advance, maybe with some screenshots, so the users know that change is coming.
When the news page changes (ie you have a new announcement to make) then make the link to the page more obvious, a bit like stackoverflow.com does with the link to the blog page.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I have leant basics of java, XML, firebase. I am able to create Instagram like app. But I want to proceed even further by enabling users to chat through the app (only major feature currently missing in my app). I have no idea as to where to start. Can anyone suggest a verified course which could help me learn?
For your further questions, I'm introducing you Google - your best friend, when you have a question and you are looking for the answer.
Some of good resurces (where I don't know where are you with your knowledge):
thenewboston channel (youtube), help me a lot when I started learning Android development, they also provide good tutorials on other languages
Udemy
Coursera also has a lot of good resources
And a good advice, based on my experiences from work: start learning about Hybrid mobile technologies like React native, Ionic, Flutter, etc. because they are also very popular these days and I'm sure they will grow in future.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
So, I need to write software that automates some browser tasks for me. Nothing fancy (clicking and getting data from the webpage). I want to use Java. Can you point me in a direction where to look/start, like libraries?
Thanks in advance!
Cheers
It is written for the purpose of running automated tests against websites, but you could use it for this job too: Selenium.
However, before you try to automate an entire browser, check if the service you're connecting to has an API, because otherwise your script will definitely just break if the site updates its styles a bit.
Even if there is no API, check if the answers you are looking for are just sent in the HTML - if so, just load the page with JSoup and parse the answer right out, no need to start or script any browsers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am designing an app. I want to know store some metrics about my app in free cloud database. The metrics includes which functionality users using more, number of downloads, user preferences etc. Later, I would like to query this database to understand app metrics.
I googled and found there are some free database hosting services like FireBase, Buddy. I am not sure which one to choose for my use case. Any suggestions?
I know this is not a programming question but its a design requirement I want to make, and if it not the correct place to ask, atleast route me to correct path instead of simply closing or down voting.
I found answer to my question finally! It is Google Analytics.
Simple and easier to configure and use. Still exploring :-)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I got a mine craft server online (https://server.pro/control-panel/1446793/) and I need to click the restart button every 45-55 Minutes. How can I do this? Is it possible to Do using GC (google code)? If not do i use java? Is it even possible? I have no idea what to do. Any response is helpful (even if it says something I have done wrong :) )
If i do need to use JAVA what program would i use to make the script (If there is one)
I am not familiar with either of those languages, however I have made an autoclicker in C. It can be found here. If you are unwilling to use mine, there are many other autoclickers out there.
There are many ways to do it. You could write some javascript that is injected into the page by plugin. You could also do it in Java with a Robot although that would be more hacky than the first solution. Also the Selenium library may help you as it's used for writing tests that will click different things on the web page.
You don't need to click the button from the remote to restart the server.
You can do that with a plugin, for example auto-restart plugin
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for a Java based forum engine which is easy to integrate with an existing website.
Currently I have tables for users (including columns for passwords and email etc) and would simply like to add a forum.
From http://java-source.net/open-source/forum-software I've found these:
JForum
JavaBB
jGossip
JsForum
nemesis-forum
mvnForum
Yazd
FreeForums
Sk Forum
JForumFusion
Top candidates currently, are JForum, Jive, mvnForum and Yazd.
My question is, does anyone have experience of any of these or some other forum engine, and especially, experience on integrating it with existing user tables?
For reference, JForum really met all my requirements. Their single-sign on (SSO) framework works like a charm, and gives me the responsibility to decide which username/password pairs are valid. No special cookies needed either, just my good old session map.