Readit News logoReadit News
techthumb commented on Nasdaq/Verafin: AI Leader in Financial Crime Prevention   verafin.com/artificial-in... · Posted by u/techthumb
techthumb · a month ago
Machine Learning capabilities analyze vast volumes of financial data, including transactions and check images to detect unusual customer behavior and suspicious activity with high accuracy and fewer false positives.
techthumb commented on Modules, not microservices   blogs.newardassociates.co... · Posted by u/PretzelFisch
techthumb · 3 years ago
Transaction boundaries are a critical aspect of a system.

I've often noticed that these boundaries are not considered when carving out microservices.

Subsequently, workarounds are put in place that tend to be complicated as they attempt to implement two phase commits.

techthumb commented on Microsoft buys near 4% stake in London Stock Exchange   cnbc.com/2022/12/12/micro... · Posted by u/almog
ajoseps · 3 years ago
i think the NASDAQ AWS agreement was to only move data products like historic data and maybe research clusters to the cloud. I think the exchange itself is still going to be running in the usual location.
techthumb · 3 years ago
NASDAQ has moved the matching engine to AWS Outposts

https://www.nasdaq.com/press-release/nasdaq-completes-migrat...

techthumb commented on JSON Crack – Visualize JSON data into graphs   jsoncrack.com... · Posted by u/iCutMoon
medv · 3 years ago
For working with JSON from terminal recommend: https://fx.wtf
techthumb · 3 years ago
There's also https://jless.io
techthumb commented on Ask HN: If Kubernetes is the solution, why are there so many DevOps jobs?    · Posted by u/picozeta
techthumb · 3 years ago
K8S is not easy.

  It helps standardize:
    - deployments of containers
    - health checks
    - cron jobs
    - load balancing
What is the "old way" of doing things?

Is it same/similar across teams within and outside your organization.

If not, what would it cost to build consensus and shared understanding?

How would you build this consensus outside your organization?

For small organizations, one should do whatever makes them productive.

However, as soon as you need to standardize across teams and projects, you can either build your own standards and tooling or use something like K8S.

  Once you have K8S, the extensibility feature kicks in to address issues such as:
   - Encrypted comms between pods
   - Rotating short lived certificates
I don't love K8S.

However, if not K8S then, what alternative should we consider to build consensus and a shared understanding?

techthumb commented on Cloudflare Announces First Quarter 2022 Financial Results   cloudflare.com/press-rele... · Posted by u/tomklein
techthumb · 3 years ago
I love Cloudflare & their products.

From a moat perspective, I wonder if the TAM of this business in the context of the three cloud providers is substantial.

Their stock price is back down to reasonable levels.

Perhaps they'll remain a niche player in the market?

techthumb commented on Tea – the toolkit that builds the Internet   tea.xyz/... · Posted by u/tnorthcutt
dorianmariefr · 3 years ago
> $ sh <(curl tea.xyz)

Nope

techthumb · 3 years ago

    #!/bin/sh

    set -e

    if [ -n "$VERBOSE" ]; then
      set -x
    fi

    if [ "$1" = "--show" ] && [ $2 = "twitter" ]; then
      echo "https://twitter.com/teaxyz_"
    elif [ -n "$1" ]; then
      # Hi, I know you’re excited but genuinely, pls wait for release
      # I added this so I can do CI :/
      case $(uname) in
        Darwin) suffix=macOS-aarch64;;
        Linux)  suffix=linux-x86-64;;
        *)
          echo "unsupported OS or architecture" >&2
          exit 1;;
      esac

      if [ "$1" = "brew" ]; then
        d="$HOME"/.tea/bin
        mkdir -p "$d"
        curl https://tea.xyz/dist/tea-$suffix -o "$d"/tea
        echo "$d" >> $GITHUB_PATH
      else
        mkdir opt
        curl https://tea.xyz/dist/tea-$suffix -o ./opt/tea
        chmod u+x ./opt/tea
        shift
        ./opt/tea "$@"
      fi
    else
      echo
      echo "418 I’m a teapot"
      echo
      echo "thanks for your interest in tea."
      echo "alas, we’re not quite ready to serve you yet."
      echo
      echo "while you wait why not follow us on Twitter:"
      echo
      echo '    open $(sh <(curl tea.xyz) --show twitter)'
      echo
    fi

techthumb commented on Ask HN: AT&T Charging for FaceTime?    · Posted by u/ada1981
bruceb · 4 years ago
You can widen your location on bumble? How did you match with person in South Africa?
techthumb · 4 years ago
Good to see someone asking the important questions :)

u/techthumb

KarmaCake day309August 3, 2014View Original