- 블록체인 개발자 취업 관련 자주 물어보는 질문 정리 (@9oelm): https://9oelm.github.io/2025-07-25-breaking-into-blockchain-dev-career/
- 신입을 위한 블록체인/Web3 마케팅 취업 가이드 A to Z (클레연님): https://blog.naver.com/lariceorclaire/224077280859
- 이력서 예시 1 (@9oelm): https://raw.githubusercontent.com/9oelM/datastore/main/Screenshot%202025-11-01%20at%2019.21.44.png
- 이력서 예시 2 (@zsystm): https://docs.google.com/document/d/1eKlb67nm_YBrzFIYvKKS1epdC-cDMOxYt4WoznV_DX0/edit?tab=t.0
- 이력서 예시 3 (클레연님): https://blog.naver.com/lariceorclaire/223644953579
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "openapi": "3.1.0", | |
| "info": { "title": "FastAPI", "version": "0.1.0" }, | |
| "paths": { | |
| "/generate_wallet": { | |
| "post": { | |
| "summary": "Generate Wallet", | |
| "description": "Parameters required:\n - password (str): The user's password.\n - referral_code (Optional[str]): The user's referral code. Omit if not used.\n\n1) Generate a brand-new mnemonic (SECP256K1).\n2) Create the XRPL Wallet from that mnemonic.\n3) Encrypt the mnemonic and store partial info in Supabase.\n4) Return: mnemonic (plaintext), encrypted_credentials, and classic_address.", | |
| "operationId": "generate_wallet_generate_wallet_post", | |
| "requestBody": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euv | |
| # Get outdated dependencies | |
| result=$(npm outdated | tail -n +2 | awk '{print $1}') | |
| # Exit early if there are no outdated dependencies | |
| if [ -z "$result" ]; then | |
| echo "No outdated dependencies found." |
Starter is the simplest possible hook: it just accepts all transactions and logs that it is running.
to test:
- in the develop pane, compile starter.c
- in the deploy pane, deploy it to Alice account
- set up payment transaction from Alice to Bob
- run it and see in the debug stream 'Accept.c: Called.'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "log" | |
| "time" | |
| ) | |
| type Big struct { | |
| test string | |
| test1 string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { NotionGraph } from "@graphcentral/notion-graph-scraper"; | |
| (async () => { | |
| const notionGraph = new NotionGraph({ | |
| maxDiscoverableNodes: 2000, | |
| maxDiscoverableNodesInOtherSpaces: 2000, | |
| maxConcurrentRequest: 100, | |
| verbose: true, | |
| }); | |
| const graph = await notionGraph.buildGraphFromRootNode( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e # exit on first error | |
| TRANSLATION="kjv" | |
| all_books=" | |
| 'GEN' => 'Genesis', | |
| 'EXO' => 'Exodus', | |
| 'LEV' => 'Leviticus', | |
| 'NUM' => 'Numbers', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| PAGE_SIZE="1" | |
| ONLY_IPS="1" | |
| usage=" | |
| A part of | |
| ___ ___ ___ | |
| /\ \ /\ \ /\__\ | |
| /::\ \ \:\ \ /::| | | |
| /:/\:\ \ \:\ \ /:|:| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function tcSync<Fn extends (...args: any) => any, Deps extends Parameters<Fn> = Parameters<Fn>>(fn: Fn, deps: Deps): TcResult<ReturnType<Fn>> { | |
| try { | |
| const data: ReturnType<Fn> = fn(...deps); | |
| return [null, data]; | |
| } catch (e) { | |
| return [e] as [Error] | |
| } | |
| } |
This is how I configured the deploy of my rails apps to AWS Elastic Beanstalk through CircleCI 1.0.
If you are using the Circle CI 2.0, take a look at this article from ryansimms
On Project Settings > Environment Variables add this keys:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
The aws user must have the right permissions. This can be hard, maybe, this can help you.
NewerOlder