Questions tagged [instant]

In the context of UX, UI's and programming, 'instant' refers to immediate and automatic. As soon as a trigger activates, the item is updated as fast as possible. Do not use this tag for questions about the `java.time.Instant` class; instead use the java.time.instant tag.

162 questions
4
votes
1 answer

Java Instant to LocalDateTime trailing zero

I converted an Instant to LocalDateTime in Java with Spring Boot as seen below LocalDateTime.ofInstant(timeInUtc, zoneId); In my test I got a Regex to check whether my resource returns a Json with a LocalDateTime. The Regex expects a JSON value in…
Tror1935
  • 83
  • 1
  • 5
4
votes
2 answers

Website Verification in Facebook Instant Article

I am trying to add my website to Facebook Instant Article using Connect your site. However, I always get this error: The provided URL is not being accepted because the site has minimal readership, which violates the Instant Article Policies …
Mohan Lal
  • 49
  • 1
  • 2
4
votes
2 answers

Get caret position in x and y coordinates in javascript

I am trying to find the current caret position (the blinking |) in x and y coordinates. Does anyone have a way of doing this? I really don't know where to get started. I know this is possible in javascript, as there is a glitchy jQuery plugin for…
Gus
  • 1,905
  • 6
  • 23
  • 37
4
votes
2 answers

algolia instantsearch refinementList item toogle when search for something else

I have a problem, when you make a search a select an item from the refinementList and without removing the selected item search for something else the selected item disappears from list due to the limit it have, how can i set it to always show the…
3
votes
1 answer

Can InstantDjango be Used Rather than the Normal Installation

Is it possible to do development just using Instant Django? Do I need to have the normal version working or can I just use this instant version? Has anyone used it?
Mackristo
  • 2,469
  • 4
  • 24
  • 30
3
votes
1 answer

How to convert a TemporalAccessor a milliseconds timestamp (using Instant)

I am trying to convert a TemporalAccessor to milliseconds unix timestamp but I am getting an error in some cases. Here is a code sample to reproduce the problem : DateTimeFormatter formatter = new DateTimeFormatterBuilder() …
user11579923
3
votes
3 answers

Make part of input[text] grey?

You know how google instant, when they provide suggestions, the bit of the search field that they suggested turns grey, but the bit you typed is always black. Well I want to achieve the same effect with a similar system. How would I go about…
Fela Maslen
  • 2,022
  • 3
  • 25
  • 46
3
votes
0 answers

Instant messaging with kafka

I'm trying to design an instant messaging or more precisely I'm doing turn based game whose mechanism is the following: Player "A" doing something and send information about his steps to player "B". Player "B" receive this information also doing…
victor.chicu
  • 106
  • 1
  • 2
  • 14
3
votes
4 answers

Does instant search take a lot of computing power?

I was wondering whether the instant search using jQuery would cause a massive load on a database (MySQL). I know there are a lot of factors to consider, but for argument's sake let's say you have 30,000 records to flick through?
getaway
  • 8,792
  • 22
  • 64
  • 94
3
votes
1 answer

Technology behind Google Instant?

Google Instant is a new search enhancement that shows results as you type. On the information page for Google Instant, it says "15 new technologies contribute to Google Instant functionality." What are they?
3
votes
3 answers

DFP in Instant article

I'm trying to figure out how to add my DFP ads to my Instant article. Does anyone have any experience with it? Facebook mentioned it is possible, but I can't see any documentation on it on DFP or anywhere else
Nisso
  • 31
  • 1
3
votes
0 answers

How can my Meteor Chat app recognize the users message?

Im having a really hard time with a project. Im pretty new to Meteor and JavaScript for that matter. Any help would be great. I have created a messenger app. When the users sign in, they can select who to chat with. However, when they start…
Jessica
  • 143
  • 1
  • 11
3
votes
5 answers

Creating an instant messaging app for Android

I'm trying to do an instant messaging app for Android, I have made the interface to send the messages to my database and it works fine. The problem is I dont have idea about how I can make a listener to receive the in coming messages from the…
2
votes
2 answers

Instant messaging in Java via Windows user ID?

I have already created simple instant messaging application in Java using Sockets and Swing. Right now it's communicating by resolving the hostname (PC name) or IP that's passes as a parameter. But is there a way to make it send a message with the…
Mark Logan
  • 203
  • 5
  • 19
2
votes
1 answer

java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: OffsetSeconds

I am using the following functional Interface to make a general purpose custom date format converter. @FunctionalInterface public interface CustomDateFormatterInterface { String convertStringToDate(); } The Implementation of this functional…
1
2
3
10 11