I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| ; 7-Zip Windows 11 Context Menu entries via whitelisted id reuse example by AveYo | |
| ; Add to archive.. only single files (multiple would need a single instance redirect tool) | |
| [-HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\connectNetworkDrive] | |
| [HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\connectNetworkDrive] | |
| "MuiVerb"="@C:\\Program Files\\7-Zip\\7-zip.dll,-2324" | |
| "Position"="Middle" | |
| "Icon"="C:\\Program Files\\7-Zip\\7-zip.dll,0" |
This file contains hidden or 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
| #===========================================# | |
| # +Psycho-Pass # | |
| # |+Season 1 # | |
| # |-01 - First Episode.mkv # | |
| # |-02 - Second Episode.mkv # | |
| # |-... # | |
| # |-Season 2 # | |
| # |-Extract-Subtitles-And-Attachments.ps1 # | |
| #===========================================# |
This file contains hidden or 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
| webdriver.FindElement(By.Id("search_button")).Click(); | |
| Thread.Sleep(5000); | |
| IWebElement searchResult = webdriver.FindElement(By.Id("search_result")); |
This file contains hidden or 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
| #!/bin/bash -e | |
| # a script that extracts the subtitle file of every mkv movie file and saves it with the same name | |
| # copy to the folder where the mkv files live and run "./mkvextractTracks.sh" in terminal | |
| # options: [trackID] | |
| # example: ./mkvextractTracks.sh 1 | |
| # | |
| # info: | |
| # mkvextract is used to extract the subtitles, so mkvtoolnix app (which contains the mkvextract binary) is used: | |
| # https://mkvtoolnix.download/downloads.html |
This file contains hidden or 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
| define(['knockout','numeral'],function(ko,numeral){ | |
| ko.bindingHandlers.money = { | |
| update: function (element, valueAccessor,allBindingsAccessor) { | |
| var format = allBindingsAccessor().format || "00,000"; | |
| var value = ko.utils.unwrapObservable(valueAccessor()); | |
| $(element).text(numeral(value).format(format)); | |
| } | |
| }; | |
| }); |
This file contains hidden or 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
| ko.utils.addOrRemoveItem = function (array, value, included) { /* .. */ } | |
| ko.utils.anyDomNodeIsAttachedToDocument = function (nodes) { /* .. */ } | |
| ko.utils.arrayFilter = function (array, predicate) { /* .. */ } | |
| ko.utils.arrayFirst = function (array, predicate, predicateOwner) { /* .. */ } | |
| ko.utils.arrayForEach = function (array, action) { /* .. */ } |
This file contains hidden or 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 (ko, handlers, unwrap, extend) { | |
| "use strict"; | |
| extend(handlers, { | |
| href: { | |
| update: function (element, valueAccessor) { | |
| handlers.attr.update(element, function () { | |
| return { href: valueAccessor() }; | |
| }); | |
| } | |
| }, |
This file contains hidden or 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.IO; | |
| using Microsoft.Ajax.Utilities; | |
| /// <summary> | |
| /// Minify javascript files with externally overridable configuration settings. | |
| /// </summary> | |
| public class ConfigurableJsMinify : StandardFileBundleTransform { | |
| protected bool includeFilenamesInOutput; |
This file contains hidden or 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 ($) { | |
| var getElementValue = function(el) { | |
| return parseFloat(el.autoNumeric('get'), 10); | |
| } | |
| var getModelValue = function(accessor) { | |
| return parseFloat(ko.utils.unwrapObservable(accessor()), 10); | |
| } |
NewerOlder