Posts by funke • 307 points
13 posts
-
0
votes2
answers959
viewsQ: How to remove item from array in Service after using $filter in the Angularjs controller?
I have a Service that provides a list of tasks. After getting this list by injecting dependencies into my controller I select a filter to order the completed tasks (task.done == true) to be last in…
-
2
votes4
answers3805
viewsQ: How to order an array dynamically with Angular JS?
I have a list of tasks. The list starts with unfinished tasks (task.done == false) first followed by completed tasks. However, when I select a task and select it as completed (task.done=true), I…
-
3
votes6
answers3209
viewsQ: How to turn string into time in PHP?
I have 2 strings that represent times. How to calculate the difference between the two. $string1 = "12:04:32"; $string2 = "18:07:34";
-
2
votes2
answers81
viewsA: Display most important information from a JSON file
<html ng-app="app"> <head>CDN ANGULAR JS</head> <body ng-controller="Crtl"> {{user.id}} </body> </html> angular.module('app',…
-
-3
votes1
answer57
viewsQ: Doubt about file storage on server
How best to store files on a server, such as binary in a database or save it in directories. There is some difference between processing cost in a web application?
-
3
votes1
answer216
viewsQ: Problems with api restfull
I have an API Restfull on the local Apache server that returns a list of database users (localhost/api/users). I’m using the site Jsonlint to validate my JSON. When access via browser i take the…
-
0
votes0
answers30
viewsQ: DBMS Setting all notnull columns automaticamene
Is there any configuration in sgbd that forces the database to set all columns of a table to notnull? Whenever I import some database or create a table in my BD, all columns receive the value not…
-
0
votes1
answer606
viewsQ: $modal.open(), problem with "controller" parameter declaration
I am trying to open a modal through the view, by the showModal() method, the problem is that I get an error referring to the controller declaration "editCrtl", which is very strange, since it is…
-
0
votes1
answer2529
viewsQ: Run Javafx app on Android
I have a desktop application that uses Javafx and would like to run it on tablets, someone has a tip?
-
2
votes1
answer275
viewsQ: Hibernate Boot
You can disable the check that Hibernate does every time the app starts? That is, at the time I create the table classes and I create the columns, it is normal that the first time the app runs…
-
0
votes1
answer76
viewsQ: Preventing entries from being deleted using Hibernate
Is there any way I can set that certain table entry in the database is not excluded? For example, I created a table usuários on the bench through the class User using the annotations of Hibernate…
-
2
votes1
answer673
viewsQ: Trouble creating entity with Hibernate/JPA
Good afternoon guys, a little while ago I came across a problem in which I can’t find the solution. This is the following: I have 2 classes in the database created through annotations using JPA.…
-
4
votes2
answers4196
viewsQ: Get list of objects with JPA and Hibernate
I’d like some help. In my code the method of entering the object in the database is working, however when trying to get a list of objects stored in the database, I get the error that my table is not…