Skip to content

Instantly share code, notes, and snippets.

var files = ["https://fonts.gstatic.com/s/bangers/v11/FeVQS0BTqb0h60ACH5FQ2J5hm25mww.woff2",
"https://fonts.gstatic.com/s/bangers/v11/FeVQS0BTqb0h60ACH5BQ2J5hm25mww.woff2",
"https://fonts.gstatic.com/s/bangers/v11/FeVQS0BTqb0h60ACH55Q2J5hm24.woff2",
"https://fonts.gstatic.com/s/comingsoon/v9/qWcuB6mzpYL7AJ2VfdQR1t-VWDnRsDkg.woff2",
"https://fonts.gstatic.com/s/craftygirls/v8/va9B4kXI39VaDdlPJo8N_NveRhf6Xl7Glw.woff2",
"https://fonts.gstatic.com/s/deliusswashcaps/v10/oY1E8fPLr7v4JWCExZpWebxVKORpXUeaIGajv1Yt.woff2",
"https://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASlUaYpmDmYyVwrA.woff2",
"https://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASlU-YpmDmYyVwrA.woff2",
"https://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASlUeYpmDmYyVwrA.woff2",
"https://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASlUiYpmDmYyVwrA.woff2",
@tixastronauta
tixastronauta / facebook_leads.md
Last active January 2, 2024 18:19
Receiving Facebook Leads on a Webhook
@Gaya
Gaya / class-symbolic-press.php
Last active June 23, 2021 18:39
Symbolic Press is a helper to help you use your WordPress plugins with Symbolic Links. Read more on my blog: http://www.gayadesign.com/diy/using-wordpress-plugins-as-symbolic-links/
<?php
/**
* Symbolic Press is a helper to help you use your WordPress plugins with Symbolic Links.
*
* Read more about it on:
* @link http://www.gayadesign.com/diy/using-wordpress-plugins-as-symbolic-links/
*/
class Symbolic_Press {
public $plugin_path;
public $plugin_name;
@hanksudo
hanksudo / Front-end-Developer-Interview-Questions-TC.md
Last active May 2, 2024 06:26
Front-end-Developer-Interview-Questions - 前端工程師面試問題集(繁體中文版)

前端工程師面試問題集

@版本 2.0.0

譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.

此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。

Rebecca MurpheyBaseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。

@TexRx
TexRx / vanilla-not-jquery.js
Created June 5, 2013 04:44
Pure JS alternatives to common CSS class jQuery functions
function hasClass(elem, className) {
return new RegExp(' ' + className + ' ').test(' ' + elem.className + ' ');
}
function addClass(elem, className) {
if (!hasClass(elem, className)) {
elem.className += ' ' + className;
}
}
@ricardozea
ricardozea / ie67891011-css-hacks.txt
Last active February 2, 2023 15:17
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================