Posts by Guilherme Dambros • 172 points
10 posts
-
3
votes2
answers2369
viewsQ: Delay in publishing APP - Play store
Good morning, I’m in doubt about publishing my first public APP in the google store. I published on 15/08 and until today (20/08) the APP is still with status of 'Draft'. My impression is that this…
-
1
votes1
answer54
viewsA: Best practices/correct way to upgrade your local base
After asking this question and searching for answers on the web, I paid more attention to my mainActivity code. It turns out that there, all these *Dbhandler are instantiated (Code below), I believe…
-
3
votes1
answer54
viewsQ: Best practices/correct way to upgrade your local base
Good morning, I got an APP started by a colleague in the company. The problem is that I’m not flying yet with android. I need to make changes to the structure of the local bank (With the APP in…
-
1
votes1
answer1920
viewsA: Add Datatable features in Laravel 5.4 with Adminlte
After a good night’s sleep, everything becomes clearer. In fact, in addition to declaring the js and css paths out of the page. The paths were wrong, I was using the wrong variable. <link…
laravel-5.4answered Guilherme Dambros 172 -
1
votes1
answer1920
viewsQ: Add Datatable features in Laravel 5.4 with Adminlte
Good evening gentlemen, I recently started a project in order to update myself with Laravel 5.4, created a project and am using the adminLTE for the layout. The question is, this Adminlte has a…
laravel-5.4asked Guilherme Dambros 172 -
0
votes1
answer1320
viewsQ: Translate date long format from English to Portuguese
I’m converting a String to Date SimpleDateFormat dateFormat = new SimpleDateFormat("EE MMM dd HH:mm:ss z yyyy", Locale.ENGLISH); Date convertDate = new Date(); String dd =…
-
0
votes2
answers1071
viewsQ: Capture event close window
I need to perform an action when the user closes a window on my PHP system. I found a JS code that does this in IE, but Firefox does not work: document.onkeydown = fecharIE; window.onbeforeunload =…
-
2
votes1
answer200
viewsQ: Email return:null Laravel Socilite - Facebook/Github
I am trying to register/login a system via Facebook using the Socialite in the Laravel 5, but the problem is that the user’s email always returns as null. I also tested with the Github and the…
laravel-5asked Guilherme Dambros 172 -
2
votes1
answer92
viewsQ: Error in Gulp installation
I am installing Gulp on my Windows 7 by the command gulp . But you’re giving me the following mistake: [11:21:03] Error in plugin 'gulp-bower' Message: Failed to execute "git ls-remote --tags…
-
1
votes1
answer776
viewsA: Store form data temporarily before writing to the database
You can create an array in $_SESSION and for each set you add a new index in the array. To do this search for the size of the array and: $_SESSION[$tamanho+1]['nome'] = $_POST['nome'];…