Posts by Gabriel Santos • 401 points
6 posts
-
2
votes2
answers1847
viewsA: Change layout of a radioButtonList / checkBoxList Webforms to make it compatible with Bootstrap
In Asp.Net Webforms the controls generate an output in html controlled by Asp.Net itself, as follows: the Asp.net tag: <asp:CheckBoxList id="check1" AutoPostBack="True" TextAlign="Right"…
-
4
votes2
answers476
viewsA: Versioning scheme
Form "correct" does not actually exist, but there are some indications from Microsoft. The MSDN indicates to use the segment form: <major version>.<minor version>.<build…
-
2
votes1
answer455
viewsA: How to set time to silent mode
If your problem is scheduling activities on Android the best class is the Alarmmanager Below is an explanatory passage of an example, to see the full example go to:…
-
9
votes1
answer3428
viewsA: Communication between Android and USB devices
There is a project on Github usb-serial-for-android It is a library to communicate with Arduinos and other devices via USB on Android, using the Android USB Host API (Android 3.1+) You don’t need…
-
5
votes3
answers166
viewsA: Form waiting for a request
If your problem is to query a large amount of data, no matter the language, a direct query will always lock (lock in the process) while waiting for the return of the database. The best alternative…
-
2
votes4
answers3235
viewsA: Is there a Website/API to host photos on the web?
There is Amazon S3 (Simple Storage Service) It is the option most used by small sites and startups. This is an online file storage service offered by Amazon Web Services, which provide via REST,…