Skip to content

Instantly share code, notes, and snippets.

View liamsnowdon's full-sized avatar

Liam Snowdon liamsnowdon

View GitHub Profile
Vue.js 19 hrs 29 mins █████████████▎░░░░░░░ 63.1%
TypeScript 8 hrs 28 mins █████▊░░░░░░░░░░░░░░░ 27.4%
Markdown 1 hr 52 mins █▎░░░░░░░░░░░░░░░░░░░ 6.1%
JSON 29 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.6%
YAML 10 mins ░░░░░░░░░░░░░░░░░░░░░ 0.6%
@liamsnowdon
liamsnowdon / autoclicker.js
Last active September 2, 2021 13:08
Cookie Clicker Autoclicker
const DefinitelyNotCheats = (function () {
return {
bigCookieAutoClickerInterval: null,
goldenCookieAutoClickerInterval: null,
initAutoClickers () {
this.initBigCookieAutoClicker();
this.initGoldenCookieAutoClicker();
},
@liamsnowdon
liamsnowdon / css-line-clamping-with-fade-out-fallback.markdown
Created June 20, 2019 20:32
CSS Line Clamping with Fade Out Fallback

CSS Line Clamping with Fade Out Fallback

Simple way to add line clamping to text. In browsers that support it, -webkit-line-clamp will be used. For those that don't, it will be faded out.

A Pen by liamsnowdon on CodePen.

License.