by joviansummer original STEEMIT post: https://steemit.com/blog/@joviansummer/jsup-avle-1-1 안녕하세요. @joviansummer입니다. @jsup과 @avle의 보팅 코드를 갱신하여 적용하였습니다. 검토는 상당히 오래전부터 진행해 왔습니다만, 최근에 구체적인 설계 방향이 잡히고 기술적으로 어떻게 할 것인지에 대해서도 결정이 되면서 생각보다 빠르게 코드 수정이 진행되었습니다. 새로운 기능은 신청자에 대해서 포스팅이 아니라 댓글에도 보팅을 하는 것입니다. 매일 포스팅하는 것이 부담스럽고 힘들다면 댓글을 달면 됩니다. 당연히 1일1포스팅보다 1일1댓글이 훨씬 쉽고, 댓글을 많이 쓴다고 나쁠 것도 없다고 생각됩니다. 임대 보팅을 받기 위해 억지로 매일 포스팅하는 것은 본인에게도 괴로운 일이고 포스팅 자체도 결국 저품질화될 가능성이 큽니다. 매일 포스팅하는 것이 즐거운 사용자들도 있겠습니다만, 단지 보팅 때문에 억지로 쥐어 짜서 하루에 하나씩 힘들게 포스팅하거나 사실상 내용이 없다시피 한 포스팅을 하는 사용자들도 있는 것이 현실입니다. 보팅을 받아야 한다는 압박감으로 매일 억지로 포스트를 쓰기 시작하면서 스팀잇은 재미 없고 따분한 곳이 되어 갑니다. 게다가 스팀잇의 트렌딩 페이지는 사실상 대량의 임대 셀프 보팅을 받는 사용자의 포스팅을 모아놓은 공간처럼 되어 있어, 이대로 계속 가면 SNS 본연의 매력은 상실하고 코인 채굴장 그 이상도 이하도 아니게 될까 우려되는 측면도 있습니다. 댓글 보팅이 이런 문제를 완화하는데 조금이나마 기여할 수 있지 않을까 생각됩니다. 대상: @jsup 또는 @avle에 스팀파워를 임대하여 보팅을 받고 있는 계정 신청 방법: @jsup 또는 @joviansummer의 최근 포스트에 "댓글 보팅을 신청합니다"라는 내용으로 댓글을 써 주시면 됩니다. 제가 확인하고 서버에 등록하면 다음날부터 해당 계정은 포스트/댓글 관계 없이 그날 처음 작성하...
파이썬 flask로 hello world 웹페이지 작성
- Get link
- X
- Other Apps
by joviansummer
original STEEMIT post: https://steemit.com/blog/@joviansummer/flask-hello-world
파이썬 flask로 간단한 웹페이지를 만드는 예시입니다. 우선 flask 모듈을 설치합니다. 우분투 계열 리눅스의 경우 아래와 같이 python3-flask 패키지를 설치해 주면 됩니다.
sudo apt-get install python3-flask
예제 코드는 매우 간단합니다.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def root_page():
return "hello world!"
@app.route('/test/')
def test_page():
return "test"
# 본 스크립트를 import하지 않고 직접 실행할 경우 flask 자체 웹서버 실행(포트 5000)
if __name__ == "__main__":
app.run(host='127.0.0.1', port=5000)
위와 같은 스크립트를 실행하면 웹서버가 구동되어 루프백(loopback) 주소(127.0.0.1)의 5000번 포트를 열게 됩니다. 루트 페이지(http://localhost:5000/)에 접속하면 문자열 "hello world!"가 표시되고, 테스트 페이지(http://localhost:5000/test/)에 접속하면 문자열 "test"가 표시됩니다.
어떤 페이지에 접속하면 어떤 내용을 표시해 줄 것인지를 위와 같이 함수를 정의하고 데코레이터(decorator)를 이용해서 웹 앱의 route() 함수가 해당 함수를 받아서 처리합니다.
@joviansummer의 스팀 프로젝트
스팀 증인노드를 운영중입니다. @jswit에 증인투표해 주시면 감사하겠습니다.
(https://steemitwallet.com/~witnesses)
jsup 서비스에 큐레이션 보상 분배 기능이 추가되었습니다.
jSTEEM 프로젝트 - 텔레그램 챗봇으로 구현하는 스팀 블럭체인 탐색기
Posted through the AVLE Dapp (https://avle.io)
- Get link
- X
- Other Apps
Popular posts from this blog
Nuitka - 파이썬 스크립트를 바이너리 실행 파일로 변환
by joviansummer original STEEMIT post: https://steemit.com/blog/@joviansummer/nuitka 파이썬과 관련해서 재미 있는 프로젝트를 찾았습니다. Nuitka라는 프로젝트입니다. https://github.com/Nuitka/Nuitka 파이썬 스크립트를 C언어로 변환한 후에 컴파일하여 바이너리 실행 파일로 만들어준다고 합니다. 아직 사용해 보진 않았는데요. 라즈베리파이처럼 작은 컴퓨터에서 컴퓨팅 자원이 아쉬운 상황이라면 파이썬 스크립트를 직접 실행하는 것보다 Nuitka로 컴파일한 바이너리를 실행하면 자원이 절약될 것 같기도 합니다. 소스 코드를 공개하지 않아야 할 경우(코드에 패스워드가 포함되어 있는 경우 등)에도 사용할 수 있을 것 같네요. 어쨌든 나중에 필요할 수도 있을 듯해서 여기에 메모해 둡니다. @joviansummer의 스팀 프로젝트 스팀 증인노드를 운영중입니다. @jswit에 증인투표해 주시면 감사하겠습니다. ( https://steemitwallet.com/~witnesses ) jswit 증인 노드 프로젝트를 시작합니다. jsup 업보팅(upvoting) 서비스 소개 jsup 수혜자 지정 기능 추가 jSTEEM 프로젝트 - 텔레그램 챗봇으로 구현하는 스팀 블럭체인 탐색기 STEEM.NFT - 디지털 아트 보존 프로젝트
[EN] STEEM-services: dapps/services webpage with sort and search functions
by joviansummer original STEEMIT post: https://steemit.com/blog/@joviansummer/en-steem-services-dapps-services-webpage-with-sort-and-search-functions Hello, this is @joviansummer(witness: @jswit). I expanded Steemit-Search website and made a simple webpage to list STEEM services. You can sort and search the records to find specific service. Here is the link: https://steemit.vercel.app/svcs If you want to add your service/dapp to the list, please write a reply to this post with the following information: category: social, nft, tool, voting, api, etc name: service/dapp name description: brief description for your service/dapp (preferably in English, less than 500 chars) link: link to your corresponding steemit post or webpage dev/admin: developer or admin account @steemchiller and @ety001, I took the liberty of adding SteemWorld, SDS API, and Steem Backup Data Server because I think they are essential services. If you want to add/modify/remove anything, please let me now. Than...
[ENG] jsup 2.0 - make your upvote great again
by joviansummer original STEEMIT post: https://steemit.com/blog/@joviansummer/eng-jsup-2-0-make-your-upvote-great-again Hello, this is @joviansummer, developer of @jsup service. Beneficiary feature of @jsup service has been updated. For more information about the beneficiary feature, please check the following post: How to support your family members and friends with @jsup curation project Previously, if you specified beneficiary, the beneficiary also received curation reward generated by upvote. Now, there are 2 modes of support for beneficiary. Upvote only: Daily upvote goes to the beneficiary, but curation/passive reward goes to the delegator. If the beneficiary does not write post, passive reward goes to the delegator. Full support: Same as before. Curation/passive reward goes to the beneficiary. You can specify beneficiary by replying to the latest post of @jsup or @joviansummer. Default mode is upvote only. If you want go give full support to your beneficiary, please...
Comments
Post a Comment