All Questions

2
answers

Add users to a Git project

I have the following problem .. on a server I have a project and it is in a Bitbucket repository. If I do git shortlog -sn I'm ready: 36 root 4 Mi User I need to add another authorized user from Bitbucker to commit and push...
asked on 30.08.2018 / 16:36
1
answer

Start an AutoCompleteTextView with a default object

I am working with a form to edit the information of a client, the form has three AutoCompleteTextView . Each AutoCompleteTextView has an adapter that receives a List<Object> . As it is a form to edit, you need each...
asked on 10.03.2016 / 00:49
1
answer

Maintain DataGridView format when doing C # filter

I happen to have a DatagridView with the following format (ver Imagen) (Orange -> CheckBox and white disabled -> CheckBox activated, it turns out that I want to filter this DataGridView and I do it like this: public...
asked on 18.10.2018 / 17:12
1
answer

laravel 5.5, multiple drivers in one or more views?

Greetings wherever you are on that side of the receiver, I have weeks learning about this giant that is laravel (5.5), I have a system to develop during my degree work, but I have a big failure, I can not find or not how to pass the methods of t...
asked on 06.10.2018 / 00:43
1
answer

How to get the last registration if I use group by

I need to list all the users who have created a vote, a user can create many votes and that user belongs to a company. I'm grouping them because I need the last vote per user, but I need to order the voting in progress first (4) and then the...
asked on 08.10.2018 / 03:19
1
answer

Facebook Login

I have a code with which I make a login through Facebook, and it is as follows: <script> window.fbAsyncInit = function() { FB.init({ appId : 'xxxxxxxxxxxxxxxx', xfbml : true, version : 'v...
asked on 23.05.2016 / 02:53
1
answer

Login Facebook Javascript SDK does not work in IE 11?

I'm trying to integrate "authenticate" with the Facebook SDK JavaScript, it works in Firefox / Chrome / Safari but in Internet Explorer it stays in "stand by" already to give the application permission to access my information. Is there somethin...
asked on 17.12.2015 / 23:14
2
answers

What is the meaning of "... args" in the argument of a Javascript function?

Reading a bit of Javascript code, I've come across this: router.route('/:id') .put((...args) => controller.update(...args)) .get((...args) => controller.findById(...args)); Is anyone clear about what ... args means?     
asked on 12.02.2017 / 20:07
1
answer

Double quotes or single quotes in HTML?

Personally I like to use double quotes about attributes / HTML values, but I have seen codes where the use of single quotes is what dominates the document and even! some with absence of quotes. <input type="text" name="age" /> <input...
asked on 17.12.2018 / 05:25
2
answers

Android / iOS, open the browser with javascript from a WebView

Hi, I would like a suggestion, I try to open the browser from a page that is loaded from WebView / UIWebView , in an application iOS or Android for example: window.open( 'http://www.stackoverflow', '_blank'. );...
asked on 29.01.2016 / 19:38