Posts by panchester • 173 points
9 posts
-
0
votes2
answers492
viewsQ: How to format date in firefox
I was making a web page and needed a textarea to date. When I put type date input into Chrome it creates a date mask, not allowing users to type letters and do not need to type the / to separate the…
-
3
votes2
answers3522
viewsQ: Enable field when radio is selected
I’m learning javascript, so I was testing to make a radio that, when selected, enables a text area, and when not selected, disable it. But what I was doing did not work and I did not understand why.…
javascriptasked panchester 173 -
3
votes1
answer163
viewsQ: error in cloning bitbucket repository by ssh
I followed the steps of that website in order to access Bitbucket via SSH on Ubuntu. However when I finished and tried to clone a repository the terminal printed this error: Warning: Permanently…
-
0
votes1
answer538
viewsQ: class panels bootstrap is not working
I installed the bootstrap framework and testing some components of the site some worked and others did not and I do not know the reason, I tested the dropdawn and Jumbotron and both worked, but when…
-
1
votes0
answers115
viewsQ: How to detect fraud through a text field?
I must make a program of hiring simple services with evaluation of the service after completed and deal with fraud in this hiring. Fraud in this case would be a server that create multiple profiles…
-
0
votes1
answer1081
viewsA: Problem with file transfer via java socket
I managed to reach a solution, I only changed the method of sending File and receiving File and before the method of sending the file I put a Thread.Sleep(200). I believe it may be less than 200,…
-
0
votes1
answer1081
viewsQ: Problem with file transfer via java socket
I am trying to make a client/server program that accepts more than one client and that client sends files to the server. The transfer was working properly, however when I put a while so that when…
-
2
votes2
answers2082
viewsQ: Generate random numbers from a predefined set
How to generate a random number in a range of non-sequential numbers. For example, a function that randomly chooses between the values, 3, 10, 20 and 2334 in the language C
-
5
votes1
answer4346
viewsQ: How to sort alphabetically and numerically the same list?
In my college work I must make a list of the kind of class I created and I must sort it in two different ways, one by alphabetical order and the other by average score. Also other information is…