Here is a good link where the concept of Blockchain is explained simply:
https://www.datasciencecentral.com/profiles/blogs/blockchain-basics
Praveen's CTO Blog
Here is a good link where the concept of Blockchain is explained simply:
https://www.datasciencecentral.com/profiles/blogs/blockchain-basics
Compatibility: v5.x
$zipfile = "https://www..../xyz/test.zip"
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
$AllProtocols = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12'
[System.Net.ServicePointManager]::SecurityProtocol = $AllProtocols
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
#$res = Invoke-WebRequest -Uri $zipfile
$webRequest = [System.Net.HttpWebRequest]::Create($zipfile)
$webRequest.Method = "GET"
[System.Net.HttpWebResponse]$webResponse = $webRequest.GetResponse()
Write-Output $webResponse.LastModified
Compatibility: v5.x
If you are a .NET developer then you are already familiar with this code
$connectionString = "Data Source=localhost;Integrated Security=SSPI;Initial Catalog=AdventureWorks2016CTP3"
$dt = New-Object System.Data.DataTable
$da = New-Object System.Data.SqlClient.SqlDataAdapter("SELECT TOP 10 * FROM Person.Address", $connectionString)
$da.Fill($dt)
Write-Output $dt.Rows[0]["AddressLine1"]
# or
ForEach ($dr in $dt.Rows) {
Write-Output $dr["AddressLine1"]
}
Register: http://k-mug.net/register
I have started an Azure training series under the brand ‘Tech Hour’ at the company I work for – Orion. Plan is to deliver short sessions of 30 to 45 minutes which spans 100 days. Below are the azure topics planned to cover:
I will be delivering a session on Microsoft SQL Server 2016 R Services and introduction to R Language on Saturday 16th September 2017 at Infopark, Kochi.
More details : http://www.mobconf.com/
Register for this full day event for free here
Learn how to architect distributed cloud applications with the correct developer mindset using the right technologies and the best cloud patterns. This technology-agnostic course begins by explaining the benefits of distributed cloud applications with an emphasis on maintaining high-availability and scalability in a cost-effective way, while also dealing with inevitable hardware and software failures.
More Info here.
17 Ultimate Data Science Projects To Boost Your Knowledge and Skills
Url: Analytics Vidhya
It provides prescriptive guidance including the following topics:
You can register for the event here http://k-mug.net/register. Here goes the flyer I designed for this event: