$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#PHP Code | |
<?php | |
$wsdl = "http://localhost/WCF.Integration.Services/ITestService.svc?wsdl"; | |
$url=$wsdl; | |
$svc = 'ITestService'; | |
$func = 'TestMethod'; | |
$client = new SoapClient($url, array('soap_version' => SOAP_1_2, | |
'encoding'=>'ISO-8859-1', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#PHP Code | |
<?php | |
$url = "http://localhost/WCF.Integration.Services/ITestService.svc?wsdl"; | |
ini_set("soap.wsdl_cache_enabled", "1"); | |
$client = new SoapClient($url); | |
try | |
{ | |
$info = $client->TestMethod(array('methodParameter' => "Test")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [TESTDB] | |
GO | |
DECLARE @findColumn varchar(30) = '%Test%'; | |
SELECT t.name AS table_name, | |
SCHEMA_NAME(schema_id) AS schema_name, | |
c.name AS column_name | |
FROM sys.tables AS t | |
INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID | |
WHERE c.name LIKE @findColumn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [TESTDB] | |
GO | |
SELECT t.name, SCHEMA_NAME(schema_id) AS schema_name FROM sys.tables AS t WHERE t.name like '%Test%' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GIT KOMUTLARI | |
--------------- | |
- KULLANICI BILGILERI : | |
git config --global user.name "kullanıcı adı / rumuz" | |
git config --global user.email "E-posta" | |
git config --list # Calisma ve kullanici bilgilerini göster | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
No 'Access-Control-Allow-Origin' header is present on the requested resource | |
Angular 2 | |
chrome.exe --user-data-dir="C:/Chrome dev session" --disable-web-security |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Angular 2 | |
Ng CLI | |
Scaffold Usage | |
Component => ng g component my-new-component | |
Directive => ng g directive my-new-directive | |
Pipe => ng g pipe my-new-pipe | |
Service => ng g service my-new-service | |
Class => ng g class my-new-class | |
Interface => ng g interface my-new-interface | |
Enum => ng g enum my-new-enum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Another way of splitting a gulpfile into multiple files based on: | |
http://macr.ae/article/splitting-gulpfile-multiple-files.html | |
https://github.com/gulpjs/gulp/blob/master/docs/recipes/split-tasks-across-multiple-files.md | |
*/ | |
'use strict'; | |
var gulp = require('gulp'), | |
plugins = require('gulp-load-plugins')(), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
///////////////////////////////////////////////////////////////////////////// | |
// GULP PLUGINS | |
var gulp = require('gulp'), | |
watch = require('gulp-watch'), | |
autoprefix = require('gulp-autoprefixer'), | |
sass = require('gulp-sass'), | |
rename = require('gulp-rename'), | |
concat = require('gulp-concat'), |
OlderNewer