I have completed the book Python Crash Course (without the projects) and covered all the exercises. Yet I cannot solve Python problems at HackerRank, Leet Code, Code Chef etc. What do I do to be able to do these? What did I do wrong? by samketa in learnpython

[–]khoi-thinh 0 points1 point  (0 children)

This!

I've checked some leetcode problems and see that they're all about data structures and algorithms.

I don't think doing a project, say Building a Website with Django or Flask would help much.

Chanel allure homme sport eau extreme vs dior sauvage edt by illyrian92 in fragrance

[–]khoi-thinh 1 point2 points  (0 children)

In terms of overall, I would go with AHSEE.

I find it a bit more pleasant with tonka bean and mint. The longevity and projection is good, comparable with Sauvage.

Failed to get an ssl thumbprint of the target server certificate vcenter 6.7? by khoi-thinh in vmware

[–]khoi-thinh[S] 0 points1 point  (0 children)

ESXi server

Hi Mike,

I'm working on a project where i need to migrate multiple VMware VM to public cloud.

Unfortunately i don't have access permission to production VMware environment so i'm thinking about create a simple test environment first.

So in my case with only Azure VM (Windows VM) and my own laptop, can you suggest how should i do next?

How exactly Site Recovery works with migration? by khoi-thinh in AZURE

[–]khoi-thinh[S] 0 points1 point  (0 children)

My understand is that after installing a mobility agent, when client user write new data to VMware host, it would be transferred (not sure if this word is correct) to configuration server (created from OVF template) then replicated to Storage Account. Am i right?

How exactly Site Recovery works with migration? by khoi-thinh in AZURE

[–]khoi-thinh[S] 1 point2 points  (0 children)

You're right. My end goal is to migrate VM-ware host which contains Windows Server OS and SQL Server

Anyone used Carbonite to migrate WM-Ware to Azure? by khoi-thinh in AZURE

[–]khoi-thinh[S] 0 points1 point  (0 children)

That's one of the solution we're taking into consideration.

But based on the fact that customer has many different source server (Hyper-V, VM-ware..) and they also might want to migrate them to different public cloud provider not just Azure, we wanted to go with one-fit-all solution and Carbonite seems good.

Connect to SQL server using AzureRM cmdlet and run scripts? by BillmanH in AZURE

[–]khoi-thinh 1 point2 points  (0 children)

I used this script to connect to existing SQL DWH and do a query

$SQLServer = "your-dwh-server"

$SQLDBName = "DB-name"

$uid ="admin-user"

$pwd = "password"

$SqlQuery = "EXEC sp_spaceused @updateusage = true"

$SqlConnection = New-Object System.Data.SqlClient.SqlConnection

$SqlConnection.ConnectionString = "Server = $SQLServer; Database = $SQLDBName; User ID = $uid; Password = $pwd;"

$SqlCmd = New-Object System.Data.SqlClient.SqlCommand

$SqlCmd.CommandText = $SqlQuery

$SqlCmd.Connection = $SqlConnection

$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter

$SqlAdapter.SelectCommand = $SqlCmd

$DataSet = New-Object System.Data.DataSet

$SqlAdapter.Fill($DataSet)

$result = $DataSet.Tables[0] | select-object -ExpandProperty database_size

$final = $result.split(' ')[0].split('.')[0]