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
// https://github.com/googlefonts/noto-fonts/tree/main/hinted/ttf/NotoSans | |
// https://github.com/googlefonts/noto-fonts/tree/main/hinted/ttf/NotoSerif | |
const fontDownloadLinks = []; | |
document | |
.querySelectorAll('.js-details-container.Details .js-navigation-open.Link--primary') | |
.forEach(anchor => { | |
fontDownloadLinks.push(anchor.href.replace('/blob/', '/raw/')); | |
}); |
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; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
public static class Util { | |
public static Boolean TCKimlikNumarasıGeçerliMi (String tcKimlikNo) { | |
// Toplam 11 basamaklı olmalı, ilk basamak 0 olmamalı. | |
if (!Regex.IsMatch(tcKimlikNo, @"^[1-9]\d{10}$")) { | |
return false; | |
} |
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
// ==UserScript== | |
// @name Traverse visible and clickable elements (shift + up or down arrows) | |
// @description Spatial navigation similar to good old Presto-based Opera | |
// @version 1.4.7 | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
const placeToReplace = window.EventTarget && EventTarget.prototype.addEventListener ? EventTarget : Element; |
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
show_tooltip_animation=disabled | |
font_size_preference_tabbox= | |
reverse_lang_value=reverse | |
context_menu_translate_forget=false | |
show_tooltip_animation_speed=20 | |
learning_border_color=#006600 | |
translate_selection_middle_click_translate=true | |
view_reverse_translate_tooltip=false | |
tooltip_theme_custom_path= | |
save_last_lang_reverse=false |
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
// ==UserScript== | |
// @name Tüm siteler için erişilebilirlik iyileştirmeleri | |
// @description tabindex ile ilgili saçmalıkları ve href'i olmayan anchor element'ları düzeltir. | |
// @namespace yarak | |
// @match *://*/* | |
// @exclude *.local/* | |
// @version 3.0.3 | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Open image or link embedded within a tweet | |
// @namespace https://twitter.com/ | |
// @version 1 | |
// @include https://twitter.com/* | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
document.addEventListener('keydown', function (e) { |
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
// ==UserScript== | |
// @name Gitlab accessibility improvement tool | |
// @namespace https://gitlab.com/ | |
// @description Makes gitlab more accessible. | |
// @include https://gitlab.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(function () { |
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
// ==UserScript== | |
// @name Ekşi sözlük için erişilebilirlik iyileştirmeleri | |
// @namespace https://eksisozluk.com/ | |
// @include https://eksisozluk.com/* | |
// @version 1.1.1 | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
setTimeout(() => window.wrappedJSObject.jQuery($ => $(document).off('keypress')), 1); |
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
tc=n=>{if(n=n.split('').map(Number),o=n[e=i=0],c=n[9],t=10,o)for(;++i<9;)eval((i%2?'e':'o')+'+=n[i]');return!((7*o-e+t)%t-c|(o+e+c)%t-n[t])} |
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 ($) { "use strict"; | |
var templates = {}; | |
// cfg.consumerName {String} (if undefined, templateId is used instead) | |
// cfg.templateId {String} (required) | |
function makeItRactive (el, cfg) { | |
var $el = $(el), | |
options = $.extend(true, {}, $el.data(), typeof cfg === "object" && cfg), | |
data = {}, | |
templateId = options.templateId, |