Questions tagged [hotspot]

A hotspot is a physical location where people may obtain Internet access, typically using Wi-Fi technology.

A hotspot is a physical location where people may obtain Internet access, typically using Wi-Fi technology, via a wireless local area network (WLAN) using a router connected to an internet service provider. The service can also be provided by a smartphone using its cellular data to connect to the isp.

346 questions
1
vote
2 answers

How to Send Data from Device that hotspot On to other device that connected with hotspot in react-native

I am developing a message in which devices can communicate over hotspot wifi. I have 2 Devices A and B. Device A makes a hotspot and runs the server then Device B joins Hotspot and sends message to Device A that it is Prferctly Working. But Device A…
JS Coder
  • 13
  • 4
1
vote
0 answers

How can I configure the SSID and password of a hotspot in android studio?

I want to create a mobile hotspot in an android device, I already implemented the hotspot code and is working now, but.. I cannot configure the name and the password of that hotspot using java. What I am doing wrong? here is my code. private…
felipe
  • 11
  • 1
1
vote
1 answer

Cloud (Firestore) Datastore Hotspotting and Indexing Date

I have tried to research this topic a lot lately, regarding the hotspotting behavior of Cloud Datastore. As I understand, reading/writing to indexed fields that are monotonically increasing can lead to contention and degradation of performance…
1
vote
2 answers

C#: Problem receiving UDP packet from device connected via mobile hotspot

I'm having a problem with simple UDP packet receive from a device connected remotely via Windows mobile hotspot. The device (an esp32 wifi board) connects to the laptop via wifi, DHCP parameters are all received correctly. The device is correctly…
Pipeloops
  • 11
  • 2
1
vote
0 answers

Connecting WDS Bridge to my Mobile Hotspot with Proxy - A6 AC1200 Wireless MU-MIMO

Problem: I would like to configure my A6 AC1200 Wireless MU-MIMO Router to connect to the phone’s hotspot and I think the proxy setting is causing an issue that I don’t know how to resolve. Router: Hardware Version: V6 Firmware Version: V2 -…
Code_Help
  • 303
  • 3
  • 13
1
vote
1 answer

Is there any way to create an Hotspot with specified SSID and Password in Android 10 automatically?

I've been working for a while on an application that enables and disables an Hotspot with specific SSID and Password in order to create a connection and trasfer data through FTP with the connection's client. The client connects only to a specific…
Bonemannes
  • 11
  • 1
1
vote
1 answer

Automatically distribute data in HBase (without pre-splitting)

Salting, Hashing, and reversing of key, are recognise as techniques to avoid region Hot-spotting in HBase. Nevertheless, when I try to ingest 8000 data records by applying salting, and reverse key approaches (in two separate scenarios), I still see…
CoolCK
  • 416
  • 5
  • 16
1
vote
0 answers

What is the use of 3 bits promo_bits in the java obj header

The source code of the hotspot define the obj markword as markOop,in it's Annotation,the markword has the status as follow: // 32 bits: // -------- // hash:25 ------------>| age:4 biased_lock:1 lock:2 (normal object) // …
Wiggin
  • 11
  • 1
1
vote
2 answers

Intrinsic candidate static method reference disappears after a while?

I have the following Comparator implemenation: private static final class ValueComparator> implements Comparator { private final Function indexFunction; public…
Lukáš Petrovický
  • 3,945
  • 1
  • 11
  • 20
1
vote
1 answer

How to enable the building of the "Hotspot & tethering" settings app in AOSP?

I have an AOSP build for my Android 10 device. The 'Network & internet' UI is missing the 'Hotspot & tethering' settings app. (Wifi is working, but only as an upstream interface.) Which file in AOSP controls whether the 'Hotspot & tethering'…
fadedbee
  • 42,671
  • 44
  • 178
  • 308
1
vote
1 answer

How do you disable sleep mode in airtel 4g hotspot device?

How to disable sleep mode so that i can just switch the device on once and then forget about it?
Sachin S M
  • 11
  • 3
1
vote
0 answers

Why does each stack frame have its own operand stack?

As we know, operand stack is one member of the jvm runtime stack frame. But why not just use one global operand stack instead? Is there any techical reason for having individual operand stack for each frame?
choxsword
  • 3,187
  • 18
  • 44
1
vote
1 answer

Start hotspot in Android 10+ using Xamarin Forms

hoping you can help, i have tried absolutely everything to get this working. I tried to adapt other code which apparently works in android studio to work in Xamarin. I have reached a point i cant pass. here is what i have... Ideally i need to create…
Dion Mills
  • 41
  • 4
1
vote
2 answers

Reentrant lock condition fairness

I have a confusion regarding the ReentrantLock's Condition. Here is the documentation: Waiting threads are signalled in FIFO order. The ordering of lock reacquisition for threads returning from waiting methods is the same as for threads initially…
Some Name
  • 8,555
  • 5
  • 27
  • 77
1
vote
1 answer

How to preload used class when JVM starts?

I am developing a messaging system with Java that requires low latency processing (under 1 second). However, JVM takes warm-up time to process the first input data that causes latency increase (about 2~3 seconds). The main reason of the latency…
mori
  • 13
  • 2