Skip to content

Instantly share code, notes, and snippets.

@connor11528
connor11528 / web3-companies.tsv
Last active February 27, 2024 19:44
This is the full list of Web3 companies that's referenced in our blog post, ultimate guide to web3 companies: https://www.employbl.com/blog/ultimate-guide-to-web3-companies
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 8 columns, instead of 1. in line 5.
Employbl ID Company Name HQ City HQ State website Year Founded Total Investment Amount Company Description
11222 NYDIG New York NY https://nydig.com/ 2017 $1,404,999,936.00 NYDIG is a technology and financial services firm dedicated to Bitcoin for institutions, private clients, and banks. The firm offers asset management, derivatives, financing, custody, and execution services. NYDIG's platform satisfies the highest regulatory, audit, and governance standards.
12226 Digital Currency Group New York NY dcg.co 2015 $1,300,000,000.00 We build and support bitcoin and blockchain companies by leveraging our insights, network, and access to capital.
1195 BlockFi Jersey City NJ https://blockfi.com/ 2017 $1,256,181,632.00 BlockFi provides the wealth management products crypto investors need, all powered by blockchain technology.
11766 Circle Boston MA https://www.circle.com/en/ 2013 $1,111,000,064.00 Circle helps businesses and developers harness the power of stablecoins for payments and internet commerce worldwide.
43
name HQ City website Year Founded Total Investment Amount Company Description
Tegus Chicago tegus.co 2016 $91,500,000.00 The Buy Side's Leading Primary Research Platform
Hologram Chicago hologram.io 2014 $82,353,000.00 Hologram is a cellular platform designed for the Internet of Things. Thousands of connectivity teams rely on Hologram to keep their fleets connected around the world — from Burbank to Brisbane. Hologram was founded in 2014 by Benjamin Forgan and Patrick Wilbur. Inspired by the connectivity challenges affecting food delivery startups in Singapore, Hologram's co-founders focused their efforts on removing the red tape preventing fast-growing IoT teams from launching cellular equipped fleets around the world. What started as a Kickstarter, under Hologram's old name, Konekt, has blossomed into the de facto networks IoT teams use to launch their products. In the years since Hologram was founded, the company has been a partner to leading technology pioneers around the world. Hologram made it possibl

Why I'll never use Affirm again

tldr: I'll never use Affirm again because when there are issues with their payment system that could severely impact your credit score for years, their customer support is unequipped to help and their underlying support infrastructure is poorly designed.

On Jan 3 2022, I purchase a product from a merchant for $271. As part of the purchase, I signed up for a 0% APR installment plan via Affirm to pay the balance in four equal payments over six weeks. The merchant ended up not shipping the product for over two months, by which time I had fully paid off the loan from Affirm, and they were unresponsive to my requests for a shipping date. Because of this, on Mar 10 2022 I initiated a chargeback with my bank (Chase) on the last loan payment, which I paid on Feb 15 2022. As soon as I initiated the chargeback, the merchant became responsive and shipped the product. On Mar 11 2022, I received the tracking number for the purchase and I called Chase to cancel the chargeback.

Since Ma

@LoganTFox
LoganTFox / Imgix.php
Created February 25, 2021 19:00
Custom Statamic tag wrapper for the Imgix API.
<?php
namespace App\Tags;
use Imgix\UrlBuilder;
use Statamic\Tags\Tags;
class Imgix extends Tags
{
private static $html_attributes = ['accesskey', 'align', 'alt', 'border', 'class', 'contenteditable', 'contextmenu', 'dir', 'height', 'hidden', 'id', 'lang', 'longdesc', 'sizes', 'style', 'tabindex', 'title', 'usemap', 'width'];
// resources/js/models/Model.js
export default class Model {
constructor (attributes = {}) {
this.fill(attributes)
}
static make (attributes = {}) {
return Array.isArray(attributes)
? attributes.map(nested => new this(nested))
@lorisleiva
lorisleiva / readme.md
Last active December 26, 2021 13:09
Webpack aliases with Laravel Mix

Step 1: configure Webpack aliases

// webpack.mix.js

const mix = require('laravel-mix')
const path = require('path')

// ...
@reinink
reinink / query.sql
Last active November 14, 2023 11:08
Text search across multiple tables using MySQL
select
first_name,
last_name
from
users
left join
companies on companies.id = users.company_id
where (
companies.name like 'TERM%' or
first_name like 'TERM%' or
@rubenvanassche
rubenvanassche / tests.yml
Last active March 3, 2024 11:12
A simple Laravel testing workflow for GitHub Actions
name: Tests (PHP)
on: [push]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

Consider the following example. We have a sales class that has instances with the following shape.

{
  date: '2019-04-21',
  total: 1050,
  salesperson: Ref(Class('users'), '1234')
}
@connor11528
connor11528 / app\Http\Middleware\IsAdmin.php
Created March 1, 2018 13:39
Middleware to check if user is an admin in Laravel 5
<?php
namespace App\Http\Middleware;
use Closure;
class IsAdmin
{
/**
* Handle an incoming request.
*