All Questions

2
answers

How to check the existence of a folder?

How to check for a folder with a C / C ++ program, it looks for the directory, if it does not find the directory specified, it will make the decision to create it.     
asked on 14.12.2016 / 00:54
1
answer

API CEF or ITAÚ [closed]

Can anyone tell me what is the WebService / API of the Federal Savings Bank to send bank records generated on the site to register? They are demanding registration. But to register tickets generated on-line you will need a API or we...
asked on 06.01.2017 / 16:27
1
answer

User who has permission to create another SQL Server user

I'm trying to use a user other than SA to create new users on a SQL Server 2014 base, I've tried the db_accessadmin and db_securityadmin roles yet, but they do not permissions to change other roles. For example, when I create a user, I wa...
asked on 24.01.2017 / 11:46
1
answer

How to identify and count prefab collisions at Unity

I'm developing a game for android on the unity platform that is similar to the Tetris game, the difference that is geared towards chemistry, and instead of going down the tetrominos will go down the elements to compose a molecule. Well, what log...
asked on 20.06.2016 / 16:52
1
answer

Phonetic search on SQL server

I need to implement phonetic search for Portuguese (br). Does anyone have any solution for phonetic searching in SQL Server with C #? Should the search fetch within a string using the SOUNDEX function or some similar function that works in pt...
asked on 25.06.2016 / 15:00
1
answer

Brute force algorithm for game resolution Sudoku in C

I have the following code written in C : #include <stdio.h> #include <stdlib.h> #include <time.h> // Variáveis globais int jogo_tabuleiro[9][9] = {0}; int func_quadrante(int quadrante, int numero) { int linha_inic...
asked on 28.06.2016 / 06:00
1
answer

App.config how to use 'ConnectionString' encrypted

In my app.config I have a section that for my String connection: </configSections> <connectionStrings> <add name="Azure.Onee" connectionString="Server=tcp:tps****.database.windows.net,1433;Data Source=tps****.databas...
asked on 12.09.2016 / 14:52
1
answer

How to apply Pathfinding in a node structure?

I have a structure of nodes that represent my pages and their links, for example, from page A I can go to page B or page C. Besides that I can have page A pointing to B pointing to C pointing back to A. What I need to do is to determine a source...
asked on 13.01.2017 / 12:43
1
answer

Time Zone JavaScript

I have an application, where I get Time Zone from the PC. var d = new Date() var n = d.getTimezoneOffset(); In my situation, it returns 180, I believe it is -3 Hours (180/3). So, I have doubts which is the larger TimeZone and which is small...
asked on 30.07.2016 / 14:12
1
answer

How to turn hours in seconds in R?

I have the following times:    2:00:00 3:00:00 6:00:00 4:00:00 4:00:00 3:00:48 1:00:00 3:00:00 2:00:00 4: 00:00 1:30:00    2:00:00 1:00:00 3:00:00 4:00:00 4:30:00 5:00:00 1:00:00 1:30:00 2:00:00 3:00:00 3:00:48    4:00:00 4:30:00 How to...
asked on 06.10.2014 / 02:21