Forwarded from Telegram Contests
Announcing the Aptitude Test Contest
Task:
Create a set of 3 Quizzes that can be used to test a person's knowledge of the English Language, their Mathematical Ability and their capacity for Spatial & Logical Thinking.
Winners will be rewarded from the remaining ~âŦ250,000 Quiz Contest prize pool.
Full details:
https://contest.com/docs/aptitude-tests
FAQ:
https://contest.com/docs/aptitude-tests#frequently-asked-questions
You must confirm your availability and register to participate. The evaluation task for entry to this contest will be held on the 9th of January 2021, at 4 pm UTC.
Task:
Create a set of 3 Quizzes that can be used to test a person's knowledge of the English Language, their Mathematical Ability and their capacity for Spatial & Logical Thinking.
Winners will be rewarded from the remaining ~âŦ250,000 Quiz Contest prize pool.
Full details:
https://contest.com/docs/aptitude-tests
FAQ:
https://contest.com/docs/aptitude-tests#frequently-asked-questions
You must confirm your availability and register to participate. The evaluation task for entry to this contest will be held on the 9th of January 2021, at 4 pm UTC.
Forwarded from Awesome Android Apps
def hello():
return 'hello 2045'Changing to
def hello:
'hello 2045'# indentation only thru tabs
TG_TOKEN=
tid=
text=
!pip install python-telegram-bot
from telegram import Bot# to get notification from colab after running
bot= Bot(TG_TOKEN)
async def send_message(text):
try:
await bot.send_message(tid,text)
except Exception as e:
print(e)
print('send message failed')
import asyncio
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
asyncio.run(send_message(text))
Python X đ
livereload==2.5.1 Bug free version #random_module
from flask import Flask, request, render_template, url_for,send_file,send_from_directory
app=Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
from livereload import Server
app.debug = 1
server = Server(app.wsgi_app)
server.serve()
#snippet |flask with livereload