Comparing files using the command line Using Visual Studio Code
"%LOCALAPPDATA%\Programs\Microsoft VS Code\code.exe" --diff file1.cs file2.cs
Using Visual Studio Code Insiders
@startuml Kanban Board | |
caption "Kanban board for 2019.12.19" | |
rectangle stack_TODO as "To-do" { | |
node Task3 [ | |
** Task Name ** | |
==== |
import csv | |
import numpy as np | |
from collections import Counter | |
from nltk.corpus import brown | |
from mittens import GloVe, Mittens | |
from sklearn.feature_extraction import stop_words | |
from sklearn.feature_extraction.text import CountVectorizer | |
def glove2dict(glove_filename): |
(() => { | |
let count = 0; | |
function getAllButtons() { | |
return document.querySelectorAll('button.is-following') || []; | |
} | |
async function unfollowAll() { | |
const buttons = getAllButtons(); |
(() => { | |
let count = 0; | |
function getAllButtons() { | |
return document.querySelectorAll('button.is-following') || []; | |
} | |
async function unfollowAll() { | |
const buttons = getAllButtons(); |
<Configuration> | |
<Add OfficeClientEdition="64" Channel="PerpetualVL2019" ForceUpgrade="TRUE"> | |
<Product ID="ProPlus2019Volume" PIDKEY="NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP"> | |
<Language ID="MatchOS" /> | |
<!-- If you need , comment it. --> | |
<!-- <ExcludeApp ID="Word" /> --> | |
<!-- <ExcludeApp ID="Excel" /> --> | |
<!-- <ExcludeApp ID="PowerPoint" /> --> | |
<ExcludeApp ID="Access" /> | |
<ExcludeApp ID="Groove" /> |
from typing import Union, Dict | |
from io import BytesIO, StringIO | |
import json | |
import pandas as pd | |
import requests | |
from pydrive2.auth import GoogleAuth | |
from pydrive2.drive import GoogleDrive | |
def read_private_file_from_gdrive( | |
file_url: str, file_format: str, google_auth: GoogleAuth, **kwargs |