Skip to content

Instantly share code, notes, and snippets.

View chief10's full-sized avatar
🎯
Focusing

chief10

🎯
Focusing
  • Los Angeles, CA
View GitHub Profile
@chief10
chief10 / Points.md
Last active November 2, 2024 01:15

There were too many points in your text for me to address but ill just start with these. I got kind of lazy towards the end

Affordable Care Act (ACA)

The flagship goal of the ACA was to make it so people with pre-existing conditions could get health insurance. Imagine having type 1 Diabetes, losing your health insurance for whatever reason, and not being able to get more insurance to pay the $1000/mo for insulin. What about a normally healthy woman becoming pregnant -- pre-existing condition. Asmthma -- pre-existing condition. etc.

The individual mandate that taxed uninsured individuals was the backbone of the ACA for two important reasons: the ability to pass the law under rules of budget reconciliation, and to offset the additional costs associated with the guaranteeing people woith pre-existing conditions could get insurance.

[Budget Reconciliation](https://en.wikipedia.org/wiki/Reconciliation_(United_States_Congress)#:~:text=The%20procedure%20overrides%20the%20Senate's,president's%20as%20the%2

I mean you could do something like:

service.getDataFromApi = () => {
   //make http call
}

// other place you need the data
// inside of functionThatNeedsTheData();
const data = await service.getDataFromApi();
tl;dr
- Crypto and DeFi in particular pose an existential threat to traditional finance and big banks.
- The SEC & Banks want Tether to fail as loudly as possible, so they can point to it as a reason why the industry should be regulated and will basically have carte blanche authority to regulate crypto – and DeFi in particular – to the ground.
- To sour public sentiment to crypto in general – and get most of the public on the side harsher crypto regulation – they want a crypto crash to have the biggest splash possible – i.e. hurt as many retail investors as possible. What better way to do that than have people lose a ton of money RIGHT BEFORE Christmas?
- To achieve the above, we get back to why they would let the price pump. They would let the price pump because they understand most retail investors don’t know what they are doing and will FOMO in to BTC once news breaks of new all-time highs again.
- As we get into December, because there are several BTC ETFs being considered, they will be approved one aft
Stakers = 25% of Reward
Jackpot = 10% of Reward
1-number lottery (14):
- Cost: 1 MTR
- Reward: 5 MTR
- Stakers: 1.25 MTR
- Jackpot: 1
{
"name": "Uniswap (v3)",
"tickers": [
{
"base": "WBTC",
"target": "ETH",
"market": {
"name": "Uniswap (v3)",
"identifier": "uniswap",
"has_trading_incentive": false
{
"timezone": "UTC",
"serverTime": 1620938824355,
"rateLimits": [
{
"rateLimitType": "REQUEST_WEIGHT",
"interval": "MINUTE",
"intervalNum": 1,
"limit": 1200
},
@chief10
chief10 / projects.js
Last active May 7, 2021 23:38
Updated with market cap lowered to 280k
[{
id: 'interfinex-bills',
age: 130,
symbol: 'ifex',
market_cap: 281974,
name: 'Interfinex Bills'
},
{
id: 'bt-finance',
age: 80,
angular.module('mdo-angular-cryptography', [])
.provider('$crypto', function CryptoKeyProvider() {
var cryptoKey;
this.setCryptographyKey = function(value) {
this.cryptoKey = value;
}
this.$get = [function(){
return {
function promiser(a) {
return Promise.resolve(a)
.then((valueOfA) => {
//...
})
}
const fs = require('fs');
/**
* I chose this library because I like its api more than the streaming api;
* simply a matter of preference.
*/
const csv = require('csvtojson');
/**