' Program.vb : application entry point
' https://ziaoul.com
Imports System
Imports Portfolio.Core
Public Class Developer
Public Property Name As String = "Md Ziaoul Hoque"
Public Property Title As String = "Coder & Digital Marketing Strategist"
Public Property Location As String = "London, United Kingdom"
Public Property WorkingSince As Integer = 2008
Public Property YearsExperience As Integer = 18
Public Function Introduce() As String
Return String.Format("Hi, I'm {0}, {1}.", Name, Title)
End Function
End Class
Module Program
Sub Main()
Dim dev As New Developer()
Console.WriteLine(dev.Introduce())
Console.WriteLine("I build web platforms and the infrastructure that keeps them running.")
Console.WriteLine("Based in " & dev.Location)
' Everything else lives in the files on the left.
' Or press Ctrl+Shift+P and ask.
Portfolio.Run(dev)
End Sub
End Moduleconsole output
Md Ziaoul Hoque
Md Ziaoul Hoque
Coder & Digital Marketing Strategist
I build web platforms and the infrastructure that keeps them running.
18years on the web, since 2008
72skills tracked
8disciplines
7qualifications and certificates
Md Ziaoul Hoque : interactive shell
Type "help" for commands, or "neofetch" for the summary.
~/portfolio ❯