This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
#!/usr/bin/env python | |
# Python script to decrypt encrypted ENEX notes exported from Evernote as ENEX | |
# | |
# This will onle work on notes encypted after 2014 using the "ENC0" format | |
# | |
# This script requires a modified version of pbkdf2.py to support SHA256 | |
# https://github.com/PaulUithol/python-pbkdf2 | |
# | |
# There's no helpful error if your password was incorrect, it will just |
Tell us three things about GSoc that most people are unaware of.
i) A lot of the people forget the fact that all the organizations have other work to do apart from GSoC. I've seen a lot of students on IRC channels who assume that everyone is only there to help GSoC candidates; they ask for help and when nobody replies - they get irritated and take it out on them.
ii) A bit related to this is the fact that most of the students are very new to professional communication, and have just no idea about how to talk to people on IRC or mailing lists.
iii) People also need to understand that helping the community is the real goal of any project. Sutdents usually just focus on the code they are writing while totally ignoring public forums and the problem real users of their project face.
Please describe you experience working with some of the sharpest minds in your field.
<? | |
// | |
// [ BUY BTC & ETH DAILY ON BITSTAMP ] | |
// by @levelsio | |
// | |
// 2017-08-23 | |
// | |
// 1) buy $40/day BTC | |
// 2) buy $10/day ETH | |
// |
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
// SPDX-License-Identifier: MIT | |
// Source: | |
// https://github.com/ensdomains/ens-contracts/blob/master/contracts/ethregistrar/StringUtils.sol | |
pragma solidity >=0.8.4; | |
library StringUtils { | |
/** | |
* @dev Returns the length of a given string | |
* | |
* @param s The string to measure the length of |
# pip install streamlit | |
# pip install audio-recorder-streamlit | |
# pip install openai | |
import streamlit as st | |
from audio_recorder_streamlit import audio_recorder | |
from openai import OpenAI | |
API_KEY = 'enter-openai-api-key-here' | |