Qual a diferença entre um Dev e um QA? Mindset! Visão!
Dimensões de um Tester: Business, DevOps, Técnica
Cucumber - Se o cliente entender use, senão não vale a pena.
** Mobile Segurança - @abstractj
Dia 1
Using The File Geodatabase API
cd C:\Python27\ArcGIS10.3\Scripts | |
del pylint.log | |
.\pylint --output-format=parseable $(Get-ChildItem $env:WORKSPACE\MinisterioCidades\*.py) >pylint.log | |
copy pylint.log $env:WORKSPACE |
echo "*************** PYLINT *********************" | |
SETLOCAL EnableDelayedExpansion | |
set path=%path%;c:\Python27\ArcGIS10.3\;c:\Python27\ArcGIS10.3\Scripts | |
del pylint.log | |
set _f= | |
for /f %%x in ('dir MinisterioCidades\*.py /b') do set _f=!_f! MinisterioCidades\%%x | |
echo %_f% | |
pylint --output-format=parseable %_f% >pylint.log | |
echo %ERRORLEVEL% |
ATALHOS Eclipse
CTRL + 1 ==> Show options on a statement
CTRL + SHIFT + R = Locate something
CTRL + O => Outline
CTRL + 3 => Fast Menu
<com.esri.android.map.MapView | |
android:id="@+id/map" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
initExtent="-6225455.543131757, -2901885.860126649, -5547005.195999772, -2589825.202412621" > | |
</com.esri.android.map.MapView> | |
XMin:-6225455.543131757 | |
YMin: -2901885.860126649 |
using System; | |
namespace DetectingConnectedDrives | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var driveInfo = System.IO.DriveInfo.GetDrives(); |
private void ExecutarQueryLinq() | |
{ | |
using (var session = this.SessionProvider.OpenStateLessSession()) | |
{ | |
Expression<Func<ProcessoAlocacao, bool>> expressionWhereClause = p => p.DataAlocacao < new DateTime(2014, 1, 28); | |
Func<ProcessoAlocacao, bool> funcWhereClause = p => p.DataAlocacao < new DateTime(2014, 1, 28); | |
// Expression irá gerar sql com filtro | |
var command2 = session.Query<ProcessoAlocacao>().Where(expressionWhereClause).ToList(); | |
this.Log.Debug("(1)command.ToList().Count(): {0} ", command2.Count()); |
using System.DirectoryServices; | |
namespace Utils.Web.Services.Configuration | |
{ | |
public class AutenticadorActiveDirectory : IAutenticadorService | |
{ | |
private const int ERROR_LOGON_FAILURE = -2147023570; | |
private const string UserAccountControlString = "useraccountcontrol"; | |
private readonly string _caminhoAd; |