Posts by Marco Paulo Ollivier • 518 points
5 posts
-
13
votes3
answers1056
viewsA: What is "with" for in Javascript?
Javascript, with is a resource of the language able to circumvent the lexical scope, that is, independent of the order of arrangement of the variables, with will take a past expression as a…
-
1
votes3
answers2459
viewsA: How useful are Java Annotations?
Just to complement the other answers, I think I can give a good practical example that helps you understand some of the things explained above: As we already know, one of the utilities of…
-
1
votes0
answers834
viewsQ: Customize the Ckeditor taskbar (Java Version)
I am using the lib Ckeditor integration with JSF (ck-jsf-editor-0.9.4.jar) and is working properly, but the Toolbar that is appearing is the default and I would like to set this up. Would anyone…
-
3
votes4
answers3497
viewsA: Capture the values of JSON that is Online
Good morning. Just trying to complement the previous answers, when parsing the Object -> JSON/JSON -> Object, I prefer to use the Jackson. It supports JAXB specification. What’s good for you…
-
20
votes4
answers8186
viewsA: How to schedule a recurring task on linux?
There is a tool for linux called crontab. It is native. To edit the file just give the command crontab -e. crontab has the following format: [minutes] [hours] [days of the month] [month] [days of…