Skip to content

Instantly share code, notes, and snippets.

View burkeholland's full-sized avatar

Burke Holland burkeholland

  • Microsoft
  • Franklin, TN
View GitHub Profile
@burkeholland
burkeholland / script.md
Last active August 28, 2023 17:27
Copilot Demo Script

Copilot Demo Script

A few items to be aware of...

  1. Press ENTER twice when using instructional comments. Copilot often requires the second line break to pick up on the intent correctly.

Ghost Text

"There are two extension for GitHub Copilot. We'll look at both. The first one is the GitHub Copilot extension itself. You can install that from the extension marketplace. [show extension in marketplace]. Once installed, you'll need to sign-in with your GitHub account. If you don't already have an active Copilot subscription, you'll need to activate one in order to use GitHub Copilot."

@burkeholland
burkeholland / scraper.py
Last active May 30, 2023 14:02
scraper
# write a web scraper that will scrape CSS Tricks and FreeCodeCamp for all articles written by author Burke Holland
import requests
from bs4 import BeautifulSoup
import csv
# get the html from the page
page = requests.get("https://css-tricks.com/author/burkeholland/")
soup = BeautifulSoup(page.text, "html.parser")
@burkeholland
burkeholland / index.css
Last active May 9, 2023 02:04
copilot-demo
/* sans-serf font for html and body */
html,
body {
font-family: sans-serif;
}
.header {
text-align: center;
/* fixed to the top */
position: fixed;
/**
* @param {string} s
* @return {boolean}
*/
var isPalindrome = function (s) {
// two pointer method
left = 0;
right = s.length - 1;
sl = s.toLowerCase();
Visual Studio Code - Insiders (1.70.0-insider, undefined, desktop)
Jupyter Extension Version: 2022.7.1001981020.
Python Extension Version: 2022.10.1.
Workspace folder /Users/burkeholland/dev/burkeholland/data-science
info 10:2:5.997: ZMQ install verified.
User belongs to experiment group 'jupyterTestcf'
User belongs to experiment group 'jupyterEnhancedDataViewer'
info 10:2:7.16: LSP Notebooks experiment is enabled
info 10:2:8.518: Loading webview. View is notset
info 10:2:8.520: Loading web view...
@burkeholland
burkeholland / Titanic.ipynb
Created November 15, 2021 23:56
Titanic Changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@burkeholland
burkeholland / Titanic.ipynb
Created November 15, 2021 23:55
my notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@burkeholland
burkeholland / notebooks-content-schedule.md
Created October 20, 2021 23:40
Proposed changes to for Notebooks November

Instead of focusing on the basics, lets focus on what VS Code can do that others cannot. That is primarily going to revolve around extensions.

  • [] File - New Notebook
  • [] Skin your notebooks (4 images w/themes)
  • [] Debug your Notebook
  • [] Diff your Notebook
  • [] Pyodid - Run your Notebook in the browser (github.dev / vscode.dev)
  • [] Open your Notebook on github.com with github.dev
  • [] Give people a tour of your Notebook (Codetour)
  • [] Use Remote-Containers for instant data science env (ZERO SETUP)
#Imports
import pandas as pd
import numpy as np
import pandas_profiling
from sklearn.model_selection import train_test_split
from sklearn import preprocessing
from sklearn.naive_bayes import GaussianNB
from sklearn.metrics import accuracy_score
from sklearn.tree import DecisionTreeClassifier
from sklearn.metrics import accuracy_score
@burkeholland
burkeholland / router-example.js
Created September 28, 2021 16:26
Router Example
<Router>
<div className="main">
<Nav user={user} />
<div className="container">
<Switch>
<Route path="/" exact>
<Home />
</Route>
<Route path="/edit/:id?">
<Edit />