I'm a computer scientist with a passion for Julia programming and a love for a wide range of activities. Here's a bit about me:
using Dates
Base.@kwdef struct AbhimanyuAryan
job๐::String = "computer scientist"
bdate๐
::Date = Date(1995, 9, 13)
website๐::String = "https://abhimanyuaryan.com"
current_projects๐ ๏ธ::Vector{String}
hobbies๐::Vector{String} = ["dance", "gym", "football", "table tennis", "lawn tennis", "swimming", "boxing", "computer games", "hacking", "almost anything that gets my adrenaline up"]
end
age(a::AbhimanyuAryan) = Dates.year(now()) - Dates.year(a.bdate๐
)
Base.summary(a::AbhimanyuAryan) = "Some $(age(a)) year old $(a.job๐)"
workson(a::AbhimanyuAryan) = a.current_projects๐ ๏ธ
me = AbhimanyuAryan(current_projects๐ ๏ธ = [
"Genie.jl",
"Stipple.jl (plotly, ui)",
"SearchLight.jl"
])
println(summary(me))
println("works on: $(join(me.current_projects๐ ๏ธ, ', '))")
println("has hobbies: $(join(me.hobbies๐, ', '))")
As an open-source contributor, I am enthusiastic about building a reliable web ecosystem that facilitates the work of data scientists, researchers, and machine learning practitioners. Passionate about the intersection of EdTech, Large Language Models (LLMs), and cloud technologies, I embarked on my journey in India's leading EdTech sector, advocating for self-driven education over traditional models for scalable learning. Currently, I am deeply exploring the potential of LLMs and AI, driven by a vision to revolutionize how we learn and interact with technology.
struct EuropeMap
map::Array{String,1}
home_country::String
end
function show_home(map::EuropeMap)
for line in map.map
println(line)
end
println("\njulia> where abhimanyu lives")
println(" Home: ", map.home_country)
end
eu = EuropeMap([
" +----+ +----+",
" |UK | |NOR |",
" +-----+----+----+ +----+",
" |IRE |FR |GER |",
" | +----+ |",
" |PT |SP* | | +----+",
" +-----+----| IT |-----|POL |",
" | | | +----+",
" |GRE | |",
" +----+----+"
], "some where in ๐ช๐บ")
show_home(eu)