Skip to content

Instantly share code, notes, and snippets.

View malanjp's full-sized avatar
🏠
Working from home

malan malanjp

🏠
Working from home
View GitHub Profile
@kojira
kojira / rabble.md
Last active May 9, 2023 13:07
Nostrのrabble氏の投稿の日本語訳

fiatjafはブログ記事を投稿しましたが、これがblueskyに関していくつかの議論を巻き起こしました:https://fiatjaf.com/ab1127fb.html

これは、bluesky開発者のPaul Frazeeから長いskeetストリームの返信が来たことを引き金にしました:https://staging.bsky.app/profile/pfrazee.com/post/3jv72j3fp6g2r

そして、私はいくつかの考えをまとめました:

分散型プロトコルの世界は勢いを増しており、NostrやBlueskyのようなプロジェクトが先頭に立っているのは興味深いことです。私たちの多くは、これらのプロトコルの開発に何年もの時間を費やしており、今では世界中で関心を集めています。私は長い間、さまざまな分散型ソーシャルメディアプロトコルを追跡しており、興味がある方はこちらでオープンソーシャルメディアプロトコルプロジェクトの包括的なデータベースを見つけることができます:https://airtable.com/shri7e7EHoTi0cEjO

Nostr、at_protocolなどのプロジェクトは、私が@pfrazeeや@jayといった才能ある人々と一緒に働いたことのあるSecure Scuttlebuttからインスピレーションを受けています。NostrはScuttlebuttの若干変更されたバージョンであり、at_protocolはより大幅な再構想を示しています。at_protocolはIPFSエコシステムやW3C DID標準からアイデアを借りている一方、Nostrはビットコイン技術からの概念を取り入れています(ブロックチェーンや暗号通貨プロジェクトではありません)。両プロジェクトとも、資金提供を行いながらも方向性をコントロールしない から大きな支援を受けています。

@zanona
zanona / sentry-serverless-firebase.ts
Last active June 8, 2024 21:11
Missing Sentry's firebase serverless wrappers
/**
* Temporary wrapper for firebase functions until @sentry/serverless support is implemented
* It currently supports wrapping https, pubsub and firestore handlers.
* usage: https.onRequest(wrap((req, res) => {...}))
*/
import type {Event} from '@sentry/types';
import type {https} from 'firebase-functions';
import type {onRequest, onCall} from 'firebase-functions/lib/providers/https';
import type {ScheduleBuilder} from 'firebase-functions/lib/providers/pubsub';
import type {DocumentBuilder} from 'firebase-functions/lib/providers/firestore';
@numberwhun
numberwhun / 22 Hacking Sites To Practice Your Hacking Skills
Created July 14, 2016 00:36
22 Hacking Sites To Practice Your Hacking Skills
Taken from: https://hackerlists.com/hacking-sites/
22 Hacking Sites, CTFs and Wargames To Practice Your Hacking Skills
InfoSec skills are in such high demand right now. As the world continues to turn everything into an app and connect even the most basic devices to the internet, the demand is only going to grow, so it’s no surprise everyone wants to learn hacking these days.
However, almost every day I come across a forum post where someone is asking where they should begin to learn hacking or how to practice hacking. I’ve compiled this list of some of the best hacking sites to hopefully be a valuable resource for those wondering how they can build and practice their hacking skill set. I hope you find this list helpful, and if you know of any other quality hacking sites, please let me know in the comments, so I can add them to the list.
1. CTF365 https://ctf365.com/
@palexander
palexander / gist:2975305
Last active January 21, 2022 14:03
Compiling and running mosh on Dreamhost
# Thanks to @samsonjs for the cleaned up version:
# https://gist.github.com/samsonjs/4076746
PREFIX=$HOME
VERSION=1.2.3
# Install Protocol Buffers
wget http://protobuf.googlecode.com/files/protobuf-2.4.1.tar.bz2
tar -xf protobuf-2.4.1.tar.bz2
cd protobuf-2.4.1