Ryan Niemeyer - [email protected] - @rpniemeyer - leankit.com
Start here for all things VS Code: https://code.visualstudio.com/
Github project here: https://github.com/Microsoft/vscode
/* | |
Forked from https://gist.github.com/zuazo/a91ecbb97b90ef3ef9ce8caf361199a2 | |
Which was forked from https://gist.github.com/p0kR/95e05e689be4e59b1b8fb6e383b9e25a | |
After purchasing a Humble Book Bundle, go to your download page for that bundle. | |
Open a console window on the page and paste in the below JavaScript. | |
JamesSkemp fork changes: | |
- Fix ZIP file downloads. | |
- Add Chrome URLs to setting pages. |
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ | |
"type": "os", | |
"style": "plain", |
import { ChildProcess, spawn } from 'child_process'; | |
import * as puppeteer from 'puppeteer'; | |
const DEBUG = Boolean(process.env.DEBUG); | |
const CI = Boolean(process.env.CI); | |
const QUERY = Boolean(process.env.QUERY); | |
jest.setTimeout((QUERY ? 200 : 100) * 1000); | |
interface MemorySample { |
youtube.com##.ytp-ce-covering-overlay | |
youtube.com##.ytp-ce-element-shadow | |
youtube.com##.ytp-ce-covering-image | |
youtube.com##.ytp-ce-expanding-image | |
youtube.com##.ytp-ce-element.ytp-ce-video.ytp-ce-element-show |
Start here for all things VS Code: https://code.visualstudio.com/
Github project here: https://github.com/Microsoft/vscode
/* | |
Forked from https://gist.github.com/p0kR/95e05e689be4e59b1b8fb6e383b9e25a | |
After purchasing a humble book bundle, go to your download page for that bundle. | |
Open a console window for the page and paste in the below javascript | |
this fork downloads all formats and does so without using jquery (since that didnt work for me) | |
note that if you are in chrome, chrome will not download the pdfs for you by default, to fix this | |
Settings (chrome://settings) --> Advanced --> Privacy and security --> Content settings --> PDF documents --> Download PDF files instead of automatically opening them in Chrome --> Turn ON |
I work as a full-stack developer at work. We are a Windows & Azure shop, so we are using Windows as our development platform, hence this customization.
For my console needs, I am using Cmder which is based on ConEmu with PowerShell as my shell of choice.
Yes, yes, I know nowadays you can use the Linux subsystem on Windows 10 which allow you to run Ubuntu on Windows. If you are looking for customization of the Ubuntu bash shell, check out this article by Scott Hanselman.
We currently have a Visual Studio solution with two projects: one for our main site, using Web forms, and one for utilities, which is currently Extension methods on Item. (The latter project has been in the queue to migrate to a NuGet package on our local NuGet server.)
Running Sitecore 8.1.160519.
var imagePath = @"C:\Users\James\Desktop\HL0hEkH.gif"; | |
var exportDirectory = @"C:\Users\James\SkyDrive\Projects\graphic samples\export\"; | |
var exportPathFormat = exportDirectory + "{0}.png"; | |
Image img = Image.FromFile(imagePath); | |
var totalFrames = img.GetFrameCount(FrameDimension.Time); | |
string.Format("Total frames: {0}", totalFrames).Dump(); |