Main URL: fip.fr
Wikipedia: en.wikipedia.org/wiki/FIP_(radio_station)
Mobile apps: Android / iOS
Direct streams for your listening pleasure
Main URL: fip.fr
Wikipedia: en.wikipedia.org/wiki/FIP_(radio_station)
Mobile apps: Android / iOS
Direct streams for your listening pleasure
| //SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| contract Token { | |
| address public owner; | |
| uint256 public totalSupply; | |
| mapping (address => uint256) public balanceOf; | |
| mapping (address => mapping (address => uint256)) public allowance; | |
| string public symbol = "TOKEN"; | |
| uint256 public decimals = 18; |
| from instagram_private_api import Client, ClientCompatPatch | |
| from instagram_private_api.errors import ClientError | |
| username = "" | |
| password = "" | |
| api = Client(username, password) # have to disable 2fa | |
| posts = [] | |
| user_feed = api.user_feed(api.authenticated_user_id, max_id="") | |
| posts.extend(user_feed['items']) |
I recently stumbled upon Falsehoods programmers believe about time zones, which got a good laugh out of me. It reminded me of other great lists of falsehoods, such as about names or time, and made me look for an equivalent for Ethereum. Having found none, here is my humble contribution to this set.
estimateGas will return the gas required by my transactionCalling estimateGas will return the gas that your transaction would require if it were mined now. The current state of the chain may be very different to the state in which your tx will get mined. So when your tx i
| with import <nixpkgs> {}; | |
| let | |
| my-python-packages = python-packages: with python-packages; [ | |
| pip | |
| setuptools | |
| ]; | |
| python-with-my-packages = pkgs.python3.withPackages my-python-packages; | |
| # define packages to install with special handling for OSX |
| package main | |
| import ( | |
| "flag" | |
| "image" | |
| "image/color" | |
| "time" | |
| "github.com/peterhellberg/gfx" | |
| ) |
To avoid some bugs in wg-quick and/or iptables on my Synology:
Credit where credit is due. I got this idea from the Wireguard website. https://www.wireguard.com/netns/#the-new-namespace-solution
| #!/usr/bin/python3 | |
| from bluepy import btle | |
| import sys | |
| class DiscoLH(btle.DefaultDelegate): | |
| def __init__(self): | |
| self.devices = [] | |
| btle.DefaultDelegate.__init__(self) |