- .NET
- ASP.NET
- MAUI
- Python
- FastAPI
- Matplotlib
- pandas
- PyTorch
Create new virtual environment
python3.10 -m venv .venv
Associate venv in VS Code
Create requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logo from './logo.svg'; | |
import './App.css'; | |
import {useState, useEffect} from 'react'; | |
import axios from 'axios'; | |
import {BarChart, Bar, YAxis} from 'recharts'; | |
function App() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What is your 60-90 second elevator pitch about yourself? | |
What was your first computer? | |
What is your favorite code/text editor? | |
What is your least favorite programming language? What would improve it? | |
How would you explain your job to an elementary school student? A a high school student? A professional outside of technology? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li class="nav-item"> | |
<a class="nav-link text-dark" | |
asp-area="" asp-page="/Questions/Index">Questions</a> | |
</li> | |
protected override void OnModelCreating(ModelBuilder modelBuilder) | |
{ | |
modelBuilder.Entity<Question>().HasData( | |
new List<Question>() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from microbit import * | |
LIGHT_LEVEL = 255 / 4 | |
ALL_PIXELS = set(list(range(25))) | |
def square(x, y, side): | |
pixels_on = set() | |
for x_offset in range(side): | |
for y_offset in range(side): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.