Skip to content

Commit fda8b46

Browse files
committed
nulo.lol
1 parent 4ba8abb commit fda8b46

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

scraper-manzana/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
API_TOKEN=1234
2-
API_URL=https://milei.nulo.in
2+
API_URL=https://milei.nulo.lol
33

44
ACCOUNTS_FILE_FORMAT="username:password:email:emailPassword:twoFactorSecret:ANY:authToken"
55

scraper-manzana/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// top 100 retuiteados as of 2024-04-17 (solo datos de milei.nulo.in)
1+
// top 100 retuiteados as of 2024-04-17 (solo datos de milei.nulo.lol)
22
export const trackeados = [
33
"986255022949269504", // DiegoMac227|612
44
"1169664359628509184", // laderechadiario|320

scraper-manzana/dbs/scraps/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { type Scrap, zPostScrapRes } from "api/schema.ts";
55
import { and, desc, eq, inArray, isNotNull, isNull, not } from "drizzle-orm";
66
import "dotenv/config";
77

8-
const API_URL = process.env.API_URL ?? "https://milei.nulo.in";
8+
const API_URL = process.env.API_URL ?? "https://milei.nulo.lol";
99
console.info(`API_URL=${API_URL}`);
1010
if (!process.env.API_TOKEN) console.error("Missing API_TOKEN");
1111

scraper-manzana/trigger/save-new-tweets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const saveNewTweetsTask = schedules.task({
99
run: async (payload, { ctx }) => {
1010
const API_TOKEN = process.env.API_TOKEN;
1111
if (!API_TOKEN) throw new Error("Missing API_TOKEN");
12-
const API_URL = process.env.API_URL ?? "https://milei.nulo.in";
12+
const API_URL = process.env.API_URL ?? "https://milei.nulo.lol";
1313

1414
const lastTweetIds: string[] = await (
1515
await fetch(`${API_URL}/api/internal/scraper/last-ids`)

sitio/src/lib/components/Meta.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<meta name="twitter:title" content={title} />
3232
<meta name="twitter:description" content={description} />
3333
<!-- twitter requiere url completa https://leimao.github.io/blog/Missing-Image-Twitter-Card/ -->
34-
<meta name="twitter:image" content={"https://milei.nulo.in" + cardPath} />
34+
<meta name="twitter:image" content={"https://milei.nulo.lol" + cardPath} />
3535

3636
{#if keywords}
3737
<meta

sitio/src/routes/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
}
158158
</script>
159159

160-
<Meta keywords={true} canonical={"https://milei.nulo.in"} />
160+
<Meta keywords={true} canonical={"https://milei.nulo.lol"} />
161161

162162
<div
163163
class="flex min-h-screen flex-col justify-center gap-2 p-2"
@@ -213,8 +213,8 @@
213213
</h2>
214214
<small>
215215
<a
216-
href="https://milei.nulo.in"
217-
class="text-blue-600 underline dark:text-blue-200">milei.nulo.in</a
216+
href="https://milei.nulo.lol"
217+
class="text-blue-600 underline dark:text-blue-200">milei.nulo.lol</a
218218
>
219219
{#if data.lastUpdated}
220220
- actualizado {lastUpdatedFormatter.format(data.lastUpdated.finishedAt)}

sitio/src/routes/Footer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Compartir por
44
<a
55
class="rounded bg-green-600 px-3 py-2 font-medium text-white"
6-
href={`https://api.whatsapp.com/send?text=${encodeURIComponent("¿Cuántos tweets likeó nuestro Presidente las últimas 24 horas? https://milei.nulo.in/?ref=wsp-link")}`}
6+
href={`https://api.whatsapp.com/send?text=${encodeURIComponent("¿Cuántos tweets likeó nuestro Presidente las últimas 24 horas? https://milei.nulo.lol/?ref=wsp-link")}`}
77
>WhatsApp</a
88
>
99
</div>

sitio/src/routes/api/datasets/likes.csv/+server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function GET() {
3131
return new Response(csv, {
3232
headers: {
3333
"Content-Type": "text/csv",
34-
"Content-Disposition": `attachment; filename=liked-tweets-milei.nulo.in-${new Date().toISOString()}.csv`,
34+
"Content-Disposition": `attachment; filename=liked-tweets-milei.nulo.lol-${new Date().toISOString()}.csv`,
3535
"Access-Control-Allow-Origin": "*",
3636
"Access-Control-Allow-Methods": "GET",
3737
"Access-Control-Allow-Headers": "Content-Type",

sitio/src/routes/api/datasets/retweets.csv/+server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const GET: RequestHandler = async () => {
5656
return new Response(csv, {
5757
headers: {
5858
"Content-Type": "text/csv",
59-
"Content-Disposition": `attachment; filename=retweets-milei.nulo.in-${new Date().toISOString()}.csv`,
59+
"Content-Disposition": `attachment; filename=retweets-milei.nulo.lol-${new Date().toISOString()}.csv`,
6060
"Access-Control-Allow-Origin": "*",
6161
"Access-Control-Allow-Methods": "GET",
6262
"Access-Control-Allow-Headers": "Content-Type",

sitio/src/routes/info/faq/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
});
1515
1616
const result = md.render(`
17-
[milei.nulo.in](https://milei.nulo.in)
17+
[milei.nulo.lol](https://milei.nulo.lol)
1818
1919
# Preguntas frequentes
2020
@@ -26,7 +26,7 @@ Si, [según él mismo](https://twitter.com/somoscorta/status/1761792806702444956
2626
2727
## ¿Como puedo verificar un like de Milei?
2828
29-
Como ya detecté en varias ocasiones que se generen capturas de pantallas falsas de los likes de Milei, hice [una herramienta](https://milei.nulo.in/chequear) que cualquiera puede usar para verificarlos. Tan solo tiene que copiar el enlace del tweet original y pegarlo en el sitio. ¿Dudas? ¡Contactame!
29+
Como ya detecté en varias ocasiones que se generen capturas de pantallas falsas de los likes de Milei, hice [una herramienta](https://milei.nulo.lol/chequear) que cualquiera puede usar para verificarlos. Tan solo tiene que copiar el enlace del tweet original y pegarlo en el sitio. ¿Dudas? ¡Contactame!
3030
3131
## ¿Como calculas el tiempo en Twitter?
3232
@@ -62,7 +62,7 @@ Podés mandarme un mensaje por Telegram ([@esoesnulo](https://t.me/esoesnulo)),
6262
`);
6363
</script>
6464

65-
<Meta title="Preguntas frecuentes - milei.nulo.in" />
65+
<Meta title="Preguntas frecuentes - milei.nulo.lol" />
6666

6767
<main class="mx-auto px-2 py-7">
6868
<Prose>

0 commit comments

Comments
 (0)