What is Hackers' Pub?

Hackers' Pub is a place for software engineers to share their knowledge and experience with each other. It's also an ActivityPub-enabled social network, so you can follow your favorite hackers in the fediverse and get their latest posts in your feed.

0
1
0
1

一个四川的博主拍了自己村子里的长辈说方言的搞笑视频,有人在评论区留言问他们怎么做到每一句话都押韵?四川人在底下答复说老辈子骨子里带的,上过学的年轻人反而说不出来了。参与N学姐的语音学实验的时候,我很好奇为什么在问卷里会设置除了普通话外的方言(母语)选项,她告诉我们口腔肌肉记忆存储的第一门语言事实上才是我们的母语,毕竟我们并不是一生下来就学习了普通话不是吗?打脑壳有一期讲严歌苓提到她曾经写过一本带四川方言(事实上是成都话)的小说,嘉宾说新生代粤语文学有林棹的潮汐图,而我们的方言文学早已断代。那天在德铁上刷到YAng这个博主的贴子,读到怔忡,明明在质硬的高地德语包围之中,沱江却倏忽流过眼前。我想起来我妈在我十多岁时仍然抱有写日记和随笔的习惯,当然她没上过什么学,不会漂亮的字句和文法,她写的实际也就是她在生活中说的话,但那事实上是我第一次接触到的所谓方言文学。十来岁的某个下午,我偷偷翻开她的日记本,看到她写自己到菜市场买春颠菜,说春颠这个词就是在讲春天冰融化时候最顶端滴下来的一点绿,又写晚饭做春颠炒鸡蛋、蒸河鱼和白砂糖沾番茄。她的字词让我心里轰然地自卑、震撼和羞愧,这不是我在课堂上、书籍里读到的任何一种语言,我早就习惯于一种集体化的、宏大的、政治的符号系统,这种表达是如此陌生,却又像泥土、田埂、南河的水声一样熟悉。我第一次意识到自己一直在使用一种被驯化过的语言,这些成群的宏大的符号将我和本该属于我的真实生活体验隔离。所谓真正的母语,早已在我身体里亡佚。

0
0
0
0

입시이야기가 시작되면 다들 튀어나오는것은 다들 어느정도의 차이는 있지만 트라우마가 생겼기 때문인듯 저도 방황 참 오래해서 ㅋㅋㅋ
이제그만이야기함 입시보다 내취업이 더 중요하다........

0
1
0
0
0
0
0
0
0
0

내 생각에 우리나라는 전투민족이라서 펜을 안들면 칼을 드는 성질이라 어린시절부터 대신 펜들라고 강요해서 칼들생각 못하게 집중시킨게 아닌가 싶어
화가 많은건 교육탓이 아니라 종특이었던 거고

0
1

그냥 이 노트 이후로 입시얘기 보이면 그분은 바로 뮤트 걸게요
어차피 답을 낼 수도 없는 문제인걸 아는데다 다들 입시도 끝난 사람들인데 굳이 제 탐라에 *방구석 행정가 행동* 하는 사람들은 들이기 싫음

1
0
0

Job Interviewer: Why are you interested in this role?

Me: I heard you have legacy code. I consider myself a digital archaeologist. I love digging through ancient ruins and wondering 'What were they even thinking?' In the current economic climate it's job security!

0
1
1

평가시스템이 공정하다 공정하지 않다를 논하기에는 어떠한 평가 시스템도 결국 권력자/기득권자의 필요에 자신을 얼마나 잘 맞출 수 있느냐의 문제이기 때문에 의미가 없음 답은 자본주의를 메우고 피냐타 경제를 실현하는 것 밖에 없다~~

농담하는 거 아님 진심임~~

0
0
1
0

깊게 생각하지 말란 소리임.
자기가 노력한 것에 보상 안 크면 실망해서 더 삐뚤어지는데 수능 잘봤는데 왜 대기업에 못 들어가지 대학점수높은데 왜 ㅈ소기업만 오퍼가 오지 수능 어차피 업무능력에 쓸데도 없고 대학 잘가도 백수고 이렇게 생각하면 사회탓만 오지라게 하고 내적으로 곪기만 하고 되는 일도 하나도 없단 말이지

0

이것으로 BotKit 0.2.0에 넣으려고 생각했던 기능은 다 추가했다. 이대로 0.2.0 출시하면 되려나? 뭔가 놓친 게 없으려나? 🤔

2

"내가 버튜버가 되면... 자본주의를 메워야 같은 소리 맨날 하다가 /논란 항목 생기고 매장당하지 않을까?" 같은 소리를 어제 했는데
다른 분이
"걍 페미라는거 하나만으로도 이미 끝 아님?" 라고 하셔서 아맞내 상태가 되었음

0

Coming soon in 0.2.0: Native post support!

We're excited to share a preview of the upcoming quoting features in BotKit 0.2.0. This update will make it easier for your bots to engage with quoted content across the fediverse.

The quoting feature set includes:

Here's a quick example of how you can use the quote detection:

bot.onQuote = async (session, quote) => {
  // The quote parameter is a Message object representing the post that quoted your bot
  await quote.reply(text`Thanks for quoting my post, ${quote.actor}!`);
  
  // You can access the original quoted message
  const originalPost = quote.quoteTarget;
  console.log(`Original message: ${originalPost?.text}`);
};

And creating quote posts is just as simple:

// Quote in a new post
await session.publish(
  text`I'm quoting this interesting message!`,
  { quoteTarget: someMessage }
);

// Or quote in a reply
await message.reply(
  text`Interesting point! I'm quoting another relevant post here.`,
  { quoteTarget: anotherMessage }
);

Remember that quoting behavior may vary across different implementations—some platforms like Misskey display quotes prominently, while others like Mastodon might implement them differently.

Want to try these features right now? You can install the development version from JSR:

deno add jsr:@fedify/botkit@0.2.0-dev.90+d6ab4bdc

We're looking forward to seeing how you use these quoting capabilities in your bots!

0

Coming soon in 0.2.0: Native post support!

We're excited to share a preview of the upcoming quoting features in BotKit 0.2.0. This update will make it easier for your bots to engage with quoted content across the fediverse.

The quoting feature set includes:

Here's a quick example of how you can use the quote detection:

bot.onQuote = async (session, quote) => {
  // The quote parameter is a Message object representing the post that quoted your bot
  await quote.reply(text`Thanks for quoting my post, ${quote.actor}!`);
  
  // You can access the original quoted message
  const originalPost = quote.quoteTarget;
  console.log(`Original message: ${originalPost?.text}`);
};

And creating quote posts is just as simple:

// Quote in a new post
await session.publish(
  text`I'm quoting this interesting message!`,
  { quoteTarget: someMessage }
);

// Or quote in a reply
await message.reply(
  text`Interesting point! I'm quoting another relevant post here.`,
  { quoteTarget: anotherMessage }
);

Remember that quoting behavior may vary across different implementations—some platforms like Misskey display quotes prominently, while others like Mastodon might implement them differently.

Want to try these features right now? You can install the development version from JSR:

deno add jsr:@fedify/botkit@0.2.0-dev.90+d6ab4bdc

We're looking forward to seeing how you use these quoting capabilities in your bots!

0
0
0

Coming soon in 0.2.0: Native post support!

We're excited to share a preview of the upcoming quoting features in BotKit 0.2.0. This update will make it easier for your bots to engage with quoted content across the fediverse.

The quoting feature set includes:

Here's a quick example of how you can use the quote detection:

bot.onQuote = async (session, quote) => {
  // The quote parameter is a Message object representing the post that quoted your bot
  await quote.reply(text`Thanks for quoting my post, ${quote.actor}!`);
  
  // You can access the original quoted message
  const originalPost = quote.quoteTarget;
  console.log(`Original message: ${originalPost?.text}`);
};

And creating quote posts is just as simple:

// Quote in a new post
await session.publish(
  text`I'm quoting this interesting message!`,
  { quoteTarget: someMessage }
);

// Or quote in a reply
await message.reply(
  text`Interesting point! I'm quoting another relevant post here.`,
  { quoteTarget: anotherMessage }
);

Remember that quoting behavior may vary across different implementations—some platforms like Misskey display quotes prominently, while others like Mastodon might implement them differently.

Want to try these features right now? You can install the development version from JSR:

deno add jsr:@fedify/botkit@0.2.0-dev.90+d6ab4bdc

We're looking forward to seeing how you use these quoting capabilities in your bots!

0
0

뭐 정시는 이상하다 수능은 썩었다 이런 얘기만 나오는데
어차피 기득권으로 인해 발생하는 불평등이 어디에든 있다는걸 감안하면 수시보다 정시가 오히려 더 공정하다고 봄

1
0
1
0
1
0
0
0
0
0
0
0
0