Posts by Jair Henrique • 156 points
4 posts
-
4
votes1
answer14553
viewsA: How to send local network messages on Windows
Older versions of Windows used send net. Syntax: net send recepient_name text_of_the_message Commando: net send windows2k texto da mensagem If you’re using an above version of Vista, try msg.…
windowsanswered Jair Henrique 156 -
3
votes2
answers123
viewsA: Error Unexpected token for
You need to put this object somewhere: { title: array5[i], start: array1[i]+'T'+array3[i], end: array2[i]+'T'+array4[i]' } For example: var objs = [] for (i = 0; i< array1.length; i++) {…
javascriptanswered Jair Henrique 156 -
1
votes2
answers1487
viewsA: How to round age with Postgresql?
You can use the function date_part http://www.postgresql.org/docs/9.4/static/functions-datetime.html…
-
3
votes1
answer210
viewsA: Search with OR in Django
If you want to get all the tags of a Taginfo is a simple search, since you have a ForeignKey in Tag tags = Tag.objects.filter(taginfo_idtaginfo1__in=[LIST_OF_IDS])…