Posts by Elivyhe • 424 points
15 posts
-
2
votes1
answer1217
viewsA: Online Server and Unity 3d
Your question was rather gibberish, plus what I understood related to your question: What You Should Take Into Account to Create a Multiplayer Online Game. To develop a Multiplayer Game, 3rd Person…
-
3
votes2
answers399
viewsA: Doubts about licenses
Hello, Junior. The Desktop-related languages are not necessarily having a license, more if you wanted to market or even develop something so that in the future it is related as Your or even…
-
0
votes3
answers210
viewsA: HTML tags with Regex
Hello, Marcelo. You did not clearly explain what you want to do, but I understood that you are doing a trick, it would be easier if you simplified the code, where it is much easier to use logic. Ex:…
-
0
votes1
answer1357
viewsQ: List of user groups with ldap
I’m very young with LDAP and I made a connection between my php server and my ad server. Now I want to list all the groups, so that users see if he is an administrator or not (or there may be…
-
3
votes1
answer2611
viewsA: AVD Android 4.0+ Does not start
Hello, Felipe. I made a brief tutorial on how to create a partition in AVD. 1º - Always Run AVD as Windows Administrator. 2nd - Click on New to create a partition of Emulator. 3º - Configure it to…
-
3
votes1
answer97
viewsQ: Problem with Phonegap installation
I’m away from home and need to keep my projects up to date, I bought a very simple notebook for my trip, and in the installation of Phonegap this giving an unusual error in my opinion because I had…
-
1
votes1
answer625
viewsQ: Convert the output into a text box to a dynamic table
I’m trying to make a dynamic table for the frequency count of words extracted from an external file. I came across a template, now I’m trying to change the output to display a table instead of…
javascriptasked Elivyhe 424 -
1
votes1
answer360
viewsQ: Repeat the animated background
I made an app with an animated background, here’s the code: Main layout: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"…
-
0
votes3
answers1824
viewsA: Access server without public IP
> Ctrl+R = Executar Executar > cmd > ipconfig > Gatway IP O Ip que tiver no Gatway copie e cole no Navegador, algum aparecerá o Do modem / roteador que pedirá login. …
-
5
votes3
answers1894
viewsQ: Is it possible to import Javascript variables (Node.js)?
I have variables in app.js: var G = {}; module.exports = G; var DATA = G.DATA = 'DATA'; var F1 = G.F1 = function(val) { return val; }; This way I can export variables under the object G, and at the…
-
1
votes1
answer1290
viewsQ: Conversion of ASCII code to characters does not work
First of all, I’m new to developing Android. I would like to know why my application hangs when I try to convert ASCII code to characters. private String crip(String str, String psw) { int code = 0;…
-
0
votes1
answer62
viewsQ: Set construction project JRE input path to 'Javase-1.7'
I am trying to make a connection to Mysql database, but when I use PreparedStatement, eclipse returns: Definir projeto de construção JRE entrada caminho para 'JavaSE-1.7 Yes, I changed the compiler…
-
0
votes3
answers519
viewsQ: Why can’t I connect to my Mysql server?
I am trying to make a simple query using a PHP webservice. This is my current code: ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(); nameValuePairs.add(new…
-
5
votes2
answers258
viewsQ: App crashing when an image is selected
I am trying to get an image using an Intent, but when I select the image, my application closes immediately. This is my current code: private void capturarFoto() { String nameFoto =…
-
2
votes1
answer79
viewsQ: Is there a way to avoid the size specifications in the Android layout?
I work with Android on a day-to-day basis, and I would like to avoid the size specs views. For example: If I make a TextView, i have to assign Height and Width properties, so: <TextView…