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
name: Pull Request Branch Naming Conventions | |
on: | |
pull_request: | |
jobs: | |
check-branch-name: | |
runs-on: ubuntu-latest | |
steps: |
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
//Moved to: https://github.com/FiniteLooper/UserScripts |
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
.buildvnext-build-details-header .summary .reason, | |
.buildvnext-build-details-header .summary .duration{ | |
width: 60%; | |
} | |
.buildvnext-build-details-header .summary { | |
padding-right: 106px; | |
} | |
#timeline-bar-chart { |
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
<div class="row"> | |
<div class="col-md-8"> | |
<p>This is some content</p> | |
</div> | |
<div class="col-md-4"> | |
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
"ban": [ | |
true, | |
[ "angular", "each", "Don't rely on angular to perform loops. Either use a 'for of' loop or the native 'array.forEach': https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_each" ], | |
[ "jQuery", "each", "Don't rely on jQuery to perform loops. Either use a 'for of' loop or the native 'array.forEach': https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_each" ], | |
[ "$", "each", "Don't rely on jQuery to perform loops. Either use a 'for of' loop or the native 'array.forEach': https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_each" ], | |
[ "_", "each", "Don't rely on Underscore to perform loops. Either use a 'for of' loop or the native 'array.forEach': https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_each" ], | |
[ "_", "forEach", "Don't rely on Underscore to perform loops. Either use a 'for of' loop or the native 'array.forEach': https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_ |
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
#js-other-comments{ | |
padding: 5px; | |
border-top: 1px solid #C0C0C0; | |
} | |
#js-other-comments a{ | |
padding: 5px 7px; | |
} |
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
<script> | |
$(() => { | |
//run initially | |
appendDays(); | |
//run again on any page update | |
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(appendDays); | |
}); | |
function appendDays() { |
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
$(function(){ | |
$("img[src$='.svg']").each(function(i,el) { | |
$.get(el.src, function(data) { | |
var svg = $(data).find('svg'); | |
if (svg) { | |
$(el).replaceWith(svg); | |
} | |
}); | |
}); |
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
using System.Linq; | |
using System.Web.Optimization; | |
namespace System.Web.Mvc | |
{ | |
public static class HtmlHelperExtensions | |
{ | |
public static IHtmlString Script(this HtmlHelper helper, params string[] urls) | |
{ |
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
<nav class="container_12"> | |
<?php | |
//Counter | |
$i=0; | |
//An array that will eventually contain the correct top-level navigation items in it | |
$menu_arr = array(); | |
//Loop though all the nav items in Wordpress | |
foreach ( wp_get_nav_menu_items('Nav') as $key => $item ) { |
NewerOlder