Skip to content

Instantly share code, notes, and snippets.

View elbruno's full-sized avatar
💭
@Home rocking some AI projects

El Bruno elbruno

💭
@Home rocking some AI projects
View GitHub Profile
@elbruno
elbruno / vscode.dotnerun.launch.json
Created June 5, 2025 16:32
vscode.dotnerun.launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET: run Active File",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": ["run", "${file}"],
"cwd": "${workspaceFolder}",
@svaza
svaza / ML Starter Roadmap for a .NET & Azure Developer.md
Created February 24, 2025 01:32
ML Starter Roadmap for a .NET & Azure Developer

ML Starter Roadmap for a .NET & Azure Developer

🎯 Goal:

To understand core ML concepts, build simple models, and integrate them with .NET & Azure.


Phase 1: ML Fundamentals Without the Overhead (Month 1)

1️⃣ Basics of ML & AI

@svaza
svaza / Generative AI Learning Roadmap for a .NET & Azure Developer.md
Last active May 3, 2025 00:22
Generative AI Learning Roadmap for a .NET & Azure Developer

🎯 Generative AI Roadmap for Intelligent Application Development (With Azure Integration)

Objective

Leverage Generative AI and pre-trained ML models using APIs/SDKs (OpenAI, Azure, HuggingFace, etc.) to:

  • Build intelligent business apps
  • Solve real-world problems
  • Integrate AI features into existing backends

@elbruno
elbruno / camera.py
Last active May 29, 2023 20:37
camera.py
# Copyright (c) 2023
# Author : Bruno Capuano
# Change Log :
# - Open and show the camera feed
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
@elbruno
elbruno / rustgetmyip.rs
Created February 1, 2023 15:46
rustgetmyip.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 Feb
Change Log :
- Demo learning with HTTP GET and POST request with Rust
- Source Demo: https://actix.rs/docs/getting-started
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
@elbruno
elbruno / rustarraysandprintlnmacro.rs
Created January 19, 2023 15:21
rustarraysandprintlnmacro.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demo working with arrays and println! macro
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / ruststringstructsandinterpolation.rs
Created January 18, 2023 15:16
ruststringstructsandinterpolation.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Working with strings with strucs and named arguments
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustStringsImplicitNamedArguments.rs
Created January 18, 2023 15:05
rustStringsImplicitNamedArguments.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Working with strings with implicit named arguments
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustgenericlogfunctionsample.rs
Created January 14, 2023 14:36
rustgenericlogfunctionsample.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demos working with generics in Rust
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@elbruno
elbruno / rustgenericsagenamesample.rs
Created January 12, 2023 18:34
rustgenericsagenamesample.rs
/*
Copyright (c) 2023
Author : Bruno Capuano
Create Time : 2023 January
Change Log :
- Demos working with generics in Rust
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal