Skip to content

Instantly share code, notes, and snippets.

lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@1js/react-ecs-client':
specifier: ^2.0.4
version: 2.0.4(react@17.0.2)
2023-08-04T22:31:46.4017403Z ##[section]Starting: Run Dependabot
2023-08-04T22:31:46.4021467Z ==============================================================================
2023-08-04T22:31:46.4021602Z Task : Dependabot
2023-08-04T22:31:46.4021660Z Description : Automatically update dependencies and vulnerabilities in your code
2023-08-04T22:31:46.4021755Z Version : 1.20.531
2023-08-04T22:31:46.4021818Z Author : Tingle Software
2023-08-04T22:31:46.4021879Z Help : For help please visit https://github.com/tinglesoftware/dependabot-azure-devops
2023-08-04T22:31:46.4021981Z ==============================================================================
2023-08-04T22:31:46.6910307Z [command]/usr/bin/docker run --rm -i -e DEPENDABOT_PACKAGE_MANAGER=npm -e DEPENDABOT_OPEN_PULL_REQUESTS_LIMIT=3 -e DEPENDABOT_DIRECTORY=/ -e DEPENDABOT_TARGET_BRANCH=main -e DEPENDABOT_VERSIONING_STRATEGY=increase -e DEPENDABOT_MILESTONE=163501 -e DEPENDABOT_EXTRA_CREDENTIALS=[{"type":"npm_registry","token":"P
No authorization settings were found in the configs.
Try to log in to the registry by running "pnpm login"
or add the auth tokens manually to the ~/.npmrc file.
 ERR_PNPM_FETCH_401  GET https://pkgs.dev.azure.com/1edu/_packaging/Upstreams/npm/registry/tslib: Unauthorized - 401
No authorization header was set for the request.
No authorization settings were found in the configs.
Try to log in to the registry by running "pnpm login"
["Adeyemi Aladesawe","Amit Bhatia","Andrew Craswell","Avik Choudhury","Andres Delgado","Anthony Dawson","Allie Ello","Andrew Gordon","Anca Huza","Angela Harris","Anne Marie Hagel","Andrew Nickels","Alex Payne","Angie Pazhavila","Anouk Pape","Alicia Redmond","Aaron Sheerin","Ayuna Vogel","Adina Vlaicu","Aditya Venneti","Amanda Wilson","Andrea Wanerstrand","Bill Anderson","Bre'Ana Deen","Bev Hess","Brooke Hudson","Brian Hinkelman","Benjamin Jiang","Bernadette Kelly","Benjamin Lin","Bill Noonan","Brandon Neeb","Bob Maher","BJ O'Hare","Beth Pan","Brad Joseph","Brian Moore","Brian Telnes","Bill West","Christopher Busch","Carolyn Clark","Christine Clacey","Cait Huntsman","Cindy Healy","Cheryl Hong","Chris Howd","Calla Jordan","Corissa Koopmans","Carolyn Lesser","Charl Lee-Pearce","Christopher Mingle","Caren Mallue Dool","Chandler Nunez","Cecilia Perez-Benitoa","Chris Sitzman","Cindy Staley","Chee Sing Chen","Chris Thompson","Chris Wells","Dan MacFetridge","Dana Bartley","Dave Lockwood","Dawn Porter","Dan Bond","Dan
{"completed":[{"id":"ddb2fa2b-c0c8-44e1-9f3a-3e0c7b60c171","event_id":27271,"external_id":"sqUz22","order":10,"name":"Adeyemi Aladesawe","description":"Build your network","points":50,"enabled":true,"datetime_completed":"2018-09-18T16:49:38.204Z"},{"id":"b186c39c-a77b-4fa6-945b-fb2c7348590d","event_id":27271,"external_id":"XLsPB6","order":11,"name":"Amit Bhatia","description":"Build your network","points":50,"enabled":true,"datetime_completed":"2018-09-18T16:49:26.685Z"},{"id":"4e2aef49-ed4a-437f-91c1-f66c79266325","event_id":27271,"external_id":"UFUyPw","order":12,"name":"Andrew Craswell","description":"Build your network","points":50,"enabled":true,"datetime_completed":"2018-09-18T16:48:21.462Z"},{"id":"8d7d6700-ae36-4ccf-9615-3337732aa883","event_id":27271,"external_id":"9aQGrU","order":13,"name":"Avik Choudhury","description":"Build your network","points":50,"enabled":true,"datetime_completed":"2018-09-18T16:48:27.233Z"},{"id":"335a59e0-cb7f-4cee-9cb4-a0ec1969c5f8","event_id":27271,"external_id":"nVo25k",
@font-face {
font-family: SegoeUI;
src:
local("Segoe UI Light"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype");
font-weight: 100;
}
(function (plays) {
var i = plays;
var delayInMilliseconds = 5500;
var playBtn = angular.element('.vjs-play-control');
for (i = i; 0 < i; i--) {
setTimeout(function () {
playBtn.click();
console.info('Play successful!');
setTimeout(function () {
@AndrewCraswell
AndrewCraswell / OneWeekAutoShare.js
Created July 19, 2017 19:58
Script to automatically share a OneWeek hackathon project. Each share is delayed by 50ms to not overload the server causing a crash. To modify the number of times shared, edit the number on line 14. Paste the script into a browser's developer console to execute.
(function (shares) {
var i = shares;
var delayInMilliseconds = 50;
var shareBtn = angular.element('.share-button > a');
shareBtn.attr('href', 'javascript:void(0);');
for (i = i; 0 < i; i--) {
setTimeout(function () {
shareBtn.click();
(function (tip) {
var i = tip;
var delayInMilliseconds = 1000;
for (i = i; 0 < i; i--) {
setTimeout(function () {
$('#id_tip_amount').val(1);
$('#id_tip_message').click();
}, i*delayInMilliseconds);
}
@AndrewCraswell
AndrewCraswell / gulp-bundle-assets ASP.NET 4.5
Created March 10, 2016 19:19
A controller in ASP.NET 4.5 that returns a bundle config file generated by the gulp-bundle-assets package.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using System.IO;
using System.Web.Mvc;
namespace DurandalTest.Controllers {
public class DurandalController : Controller {
public ActionResult Index() {