this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

like bomb

alice ceb07bf6 c2a8666a

+26 -9
+5 -5
pnpm-lock.yaml
··· 495 495 postcss: ^8.1.0 496 496 dependencies: 497 497 browserslist: 4.21.5 498 - caniuse-lite: 1.0.30001485 498 + caniuse-lite: 1.0.30001486 499 499 fraction.js: 4.2.0 500 500 normalize-range: 0.1.2 501 501 picocolors: 1.0.0 ··· 559 559 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 560 560 hasBin: true 561 561 dependencies: 562 - caniuse-lite: 1.0.30001485 562 + caniuse-lite: 1.0.30001486 563 563 electron-to-chromium: 1.4.385 564 564 node-releases: 2.0.10 565 565 update-browserslist-db: 1.0.11(browserslist@4.21.5) ··· 596 596 engines: {node: '>= 6'} 597 597 dev: false 598 598 599 - /caniuse-lite@1.0.30001485: 600 - resolution: {integrity: sha512-8aUpZ7sjhlOyiNsg+pgcrTTPUXKh+rg544QYHSvQErljVEKJzvkYkCR/hUFeeVoEfTToUtY9cUKNRC7+c45YkA==} 599 + /caniuse-lite@1.0.30001486: 600 + resolution: {integrity: sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg==} 601 601 dev: false 602 602 603 603 /chalk@4.1.2: ··· 1882 1882 '@next/env': 13.4.1 1883 1883 '@swc/helpers': 0.5.1 1884 1884 busboy: 1.6.0 1885 - caniuse-lite: 1.0.30001485 1885 + caniuse-lite: 1.0.30001486 1886 1886 postcss: 8.4.14 1887 1887 react: 18.2.0 1888 1888 react-dom: 18.2.0(react@18.2.0)
-1
src/app/[name]/page.tsx
··· 1 - import GA from '@/utils/ga'; 2 1 import type { Metadata } from 'next'; 3 2 4 3 interface person {
-2
src/app/alice/page.tsx
··· 1 - import GA from '@/utils/ga'; 2 - 3 1 export const metadata = { 4 2 title: 'alice.bsky.sh', 5 3 description: "i'm alice",
+1 -1
src/app/layout.tsx
··· 1 - import './globals.css'; 1 + // import './globals.css'; 2 2 import React from 'react'; 3 3 import GA from '@/utils/ga'; 4 4
+20
src/app/likebomb/page.tsx
··· 1 + export const metadata = { 2 + title: 'Bluesky Like Bomb', 3 + description: 'A way to like all posts in a thread easily.', 4 + }; 5 + 6 + export default function Page() { 7 + return ( 8 + <> 9 + <div> 10 + Drag this to your bookmarks bar. Clicking it will like every visible post in the thread.{' '} 11 + <div 12 + dangerouslySetInnerHTML={{ 13 + __html: 14 + '<a href="javascript:void%20function()%7Bconst%20a=document.querySelectorAll(%22div%5Baria-label=%5C%22Like%5C%22%5D%22),b=%5B...a%5D.filter(a=%3E!!a.offsetParent);b.forEach(a=%3Ea.click())%7D();">bsky like bomb</a>', 15 + }} 16 + ></div> 17 + </div> 18 + </> 19 + ); 20 + }