Skip to content

Instantly share code, notes, and snippets.

View williesmithchen's full-sized avatar

williesmithchen williesmithchen

View GitHub Profile
@williesmithchen
williesmithchen / Front-end-Developer-Interview-Questions-TC.md
Created October 13, 2022 01:06 — forked from hanksudo/Front-end-Developer-Interview-Questions-TC.md
Front-end-Developer-Interview-Questions - 前端工程師面試問題集(繁體中文版)

前端工程師面試問題集

@版本 2.0.0

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

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

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

@williesmithchen
williesmithchen / useParentStackNavigator.js
Created January 21, 2021 04:40
useParentStackNavigator with react-navigationv5
import React from 'react';
import { useNavigation } from '@react-navigation/native';
const useParentStackNavigator = props => {
const navigation = useNavigation();
// loop for getStackNavigator(dangerouslyGetParent)
const getStackNavigator = React.useCallback(_navigation => {
return _navigation.dangerouslyGetParent()
? getStackNavigator(_navigation.dangerouslyGetParent())
@williesmithchen
williesmithchen / target.js
Created June 7, 2017 04:32 — forked from wemee/target.js
台哥大_接收端
// 將原本網頁中
// ga('create' ...
// 的地方取代成
var clientId = (function(){
var e=window.location.href,
n="clientId",
o=new RegExp("[?&]"+n+"(=([^&#]*)|&|#|$)"),
c=o.exec(e);
return c ? decodeURIComponent(c[2].replace(/\+/g)):null;
})();
<!DOCTYPE html PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

Share Counts

I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.

If you want to roll up all of these into a single jQuery plugin check out Sharrre

Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.

Twitter