並び順

ブックマーク数

期間指定

  • から
  • まで

441 - 480 件 / 1074件

新着順 人気順

mappingの検索結果441 - 480 件 / 1074件

  • Awesome Open Source Games | Curated list of awesome lists | Project-Awesome.org

    Open source games that have the source code available on GitHub. Contents Major Companies Browser-Based Boardgame Arcade FPS RPG MMORPG Strategy Racing Sandbox Puzzle Clicker Point and Click Others Native Action Arcade Rhythm FPS MMORPG RPG Platform Puzzle/card/board Racing Programming Sandbox Strategy Mobile Games Android IOS Chat bots Just The Source Frameworks/Engines/Libraries Maps/Hacks/Plugi

    • 【チュートリアル紹介】モデリングの初級的なテクニックを学ぼう! | CGbox

      「Digital Modeling Lecture 5 Multiple Materials & UV Mapping」では、複数の素材やUVマッピングを使用して建築物をデジタルモデリングする技術について紹介しています。 講師は、異なるテクスチャをモデルに効率的に組み合わせる方法や、UVマッピングを使用してテクスチャの配置を制御し、繰り返しパターンやディテールの制御を実現する方法を実演しています。 テクスチャやジオメトリの変形によって、モデルに奥行きや立体感を付加するための実践的なヒントやテクニックを提供しています。 気になる人は視聴してみてください! 合わせてみたいチュートリアル! 今回紹介したチュートリアルと近しいジャンルのものをいくつか紹介します! 興味が沸いたらぜひ視聴してみてください。 モデリングの基本ワークフローを学べる!

        【チュートリアル紹介】モデリングの初級的なテクニックを学ぼう! | CGbox
      • Think Machine — Multidimensional Mind Mapping

        Old-school mind mappers lose information. They force everything into a 2D hierarchy, making it harder to brainstorm. Think Machine let's you represent information as simple or as complex as you want—it's up to you. Information isn't neat—it's all tangled up! Which is exactly what Think Machine is great at—showing and exploring the connections between pieces of information.

          Think Machine — Multidimensional Mind Mapping
        • GitHub - AnswerDotAI/gpu.cpp: A lightweight library for portable low-level GPU computation using WebGPU.

          With gpu.cpp we want to enable a high-leverage library for individual developers and researchers to incorporate GPU computation into programs relying on nothing more than a standard C++ compiler as tooling. Our goals are: High power-to-weight ratio API: Provide the smallest API surface area that can cover the full range of GPU compute needs. Fast compile/run cycles: Ensure projects can build nearl

            GitHub - AnswerDotAI/gpu.cpp: A lightweight library for portable low-level GPU computation using WebGPU.
          • Translatotron 3: Speech to Speech Translation with Monolingual Data

            This paper presents Translatotron 3, a novel approach to unsupervised direct speech-to-speech translation from monolingual speech-text datasets by combining masked autoencoder, unsupervised embedding mapping, and back-translation. Experimental results in speech-to-speech translation tasks between Spanish and English show that Translatotron 3 outperforms a baseline cascade system, reporting $18.14$

            • Blog - iMessage with PQ3: The new state of the art in quantum-secure messaging at scale - Apple Security Research

              iMessage with PQ3: The new state of the art in quantum-secure messaging at scale Today we are announcing the most significant cryptographic security upgrade in iMessage history with the introduction of PQ3, a groundbreaking post-quantum cryptographic protocol that advances the state of the art of end-to-end secure messaging. With compromise-resilient encryption and extensive defenses against even

              • Visual overview of a custom malloc() implementation — The silent tower

                Visual overview of a custom malloc() implementation# This post was discussed on Hacker News. C programmers will undoubtedly recognize the standard function malloc(), the language's memory allocator and close confident of everyone's favorite segfaults. malloc() is the mechanism through which programs obtain memory at runtime, and it often ends up being the primary way in which objects are created a

                • Blue/Green deployments using AWS CDK Pipelines and AWS CodeDeploy | Amazon Web Services

                  AWS DevOps Blog Blue/Green deployments using AWS CDK Pipelines and AWS CodeDeploy Customers often ask for help with implementing Blue/Green deployments to Amazon Elastic Container Service (Amazon ECS) using AWS CodeDeploy. Their use cases usually involve cross-Region and cross-account deployment scenarios. These requirements are challenging enough on their own, but in addition to those, there are

                    Blue/Green deployments using AWS CDK Pipelines and AWS CodeDeploy | Amazon Web Services
                  • 大阪Ruby会議03に登壇します #osrb03 - ルニラボ

                    長らくブログを放置していましたが、良い機会なので再稼働します。 ここ何年かは基本的に所属企業のブログの方でこういった記事を書いていました。 Ruby2.7の(実験的)新機能「パターンマッチ」で遊ぶ - メドピア開発者ブログ Feature Toggleを用いたRailsアプリの継続的なリリースと要注意事項 - メドピア開発者ブログ はじめに ということで開催がもう明日に迫っていますが、大阪Ruby会議03にて登壇させていただくこととなりました。うれしいね。 2023/09/09 16:20より ブラウザから「今すぐ」gemをロードする方法 というタイトルのセッションで登壇予定です。 rubykansai.github.io 登壇内容 登壇内容は以下を予定しています。 ruby.wasmにて、3rd party製のgemを利用するアプローチや、 ブラウザ側のAPIを利用する方法の解説をします

                      大阪Ruby会議03に登壇します #osrb03 - ルニラボ
                    • Copy Hunting | TigerBeetle

                      I have a super power. I want to share it in this blog post so that you, my dear reader, also have it! This is the super power: I know that LLVM IR is text. Let me explain. When we hack on something, usually it is enough to study the source code. Whether we are implementing a new feature, hunting down a bug, or optimizing performance, usually the mapping between the source code and the resulting ma

                        Copy Hunting | TigerBeetle
                      • A Logic Language for Distributed SQL Queries

                        If you’ve worked with microservices, you know how hard it is to solve for shared capabilities. Authorization is one such capability. Most services will need some kind of authorization, and so you want a clean authorization implementation that every service can reuse. But authorization as a domain is messy. Authorization logic blurs with domain-specific information, and data needed to evaluate auth

                          A Logic Language for Distributed SQL Queries
                        • 【PythonとSQLiteの活用】無料の競走馬データベース作成

                          主要な機能 以下が、競走馬データベースを作成するスクリプトになります。 import requests from bs4 import BeautifulSoup import re import math import pandas as pd import sqlite3 import time def insert_or_update_data(df, conn): """データフレームの各行をチェックし、データベースに挿入または更新します""" cursor = conn.cursor() for index, row in df.iterrows(): cursor.execute('SELECT horse_id FROM horses WHERE horse_id = ?', (row['horse_id'],)) data = cursor.fetchone() if da

                            【PythonとSQLiteの活用】無料の競走馬データベース作成
                          • GitHub - Azure-Samples/contoso-chat: This sample has the full End2End process of creating RAG application with Prompt Flow and AI Studio. It includes GPT 3.5 Turbo LLM application code, evaluations, deployment automation with AZD CLI, GitHub actions for e

                            This sample has the full End2End process of creating RAG application with Prompt Flow and AI Studio. It includes GPT 3.5 Turbo LLM application code, evaluations, deployment automation with AZD CLI, GitHub actions for evaluation and deployment and intent mapping for multiple LLM task mapping. License

                              GitHub - Azure-Samples/contoso-chat: This sample has the full End2End process of creating RAG application with Prompt Flow and AI Studio. It includes GPT 3.5 Turbo LLM application code, evaluations, deployment automation with AZD CLI, GitHub actions for e
                            • マイクロサービス間でのデータの変更イベントと同期 #のびしろウィーク

                              この記事は LayerXテックアドカレ2023 の39日目の記事です。 昨日の記事は、suguru さんのバクラク Enabling Team の課題とのびしろでした! 今日はバクラク事業部 Enabling Team エンジニアの @yyoshiki41(中川佳希)が担当します。 のびしろウィーク 👐 のびしろウィークは、LayerXの各チームメンバーがチームの伸びしろについて発信する期間です! プロダクトや組織の成長過程で常に状況が変わるため、社内には解決されていない問題や整備されていない環境、いわば「のびしろ」がたくさんあります。 のびしろを読んでみて、「その課題、詳しく聞きたい!取り組んでみたい!」と少しでも思っていただけたら、ぜひ一度お話出来れば幸いです! 本記事のテーマは、バックエンドマイクロサービス間でのデータの変更イベントとデータ同期についてです。 複数プロダクトで利用さ

                                マイクロサービス間でのデータの変更イベントと同期 #のびしろウィーク
                              • Homoiconic Python

                                The idea of a programming language being able to implement itself is fascinating. It stirs an intense feeling of curiosity: "What would that even look like?" Since its inception in the early '60s, Lisp has managed to do exactly that. John McCarthy, In the early '60s, unlocked a collection of remarkable ideas that work really well together and continue to be relevant decades later. First through th

                                  Homoiconic Python
                                • 日経電子版での自作SSRフレームワーク基盤についてなど: Cybozu Frontend Weekly (2023-07-18号)

                                  日経電子版での自作SSRフレームワーク基盤についてなど: Cybozu Frontend Weekly (2023-07-18号) こんにちは!サイボウズ株式会社フロントエンドエンジニアの おぐえもん(@oguemon_com) です。 はじめに サイボウズでは毎週火曜日に Frontend Weekly という「一週間にあったフロントエンドニュースを共有する会」を社内で開催しています。 今回は、2023/07/18 の Frontend Weekly で取り上げた記事や話題を紹介します。 取り上げた記事・話題 日経電子版での自作 SSR フレームワーク基盤について — HACK The Nikkei 日経新聞社が日経電子版で使っている独自 SSR フレームワークの紹介記事です。 この記事では、SSR フレームワークを自社開発している理由、どのようにして実装しているのかなどに触れています。

                                    日経電子版での自作SSRフレームワーク基盤についてなど: Cybozu Frontend Weekly (2023-07-18号)
                                  • Amazon Bedrockに新登場した「Knowledge base」を試してみた(Pinecone利用編) | WP-kyoto

                                    この記事は、「AWS Community Builders Advent Calendar 2023」4日目の記事です。 Amazon BedrockにRAG(検索拡張生成)を行うためのナレッジベース機能が登場しました。RAGはかなり興味のある分野ですので、早速触ってみました。 Knowledge baseを使うための下準備: Pinecone編 Knowledge baseを利用するには、Vector DBが必要です。AWSの場合はOpensearch Serviceを使うことになりますが、今回は別件で試し中だったPineconeを利用しました。 https://www.pinecone.io/ AWSの外にあるリソースを利用するため、接続情報をAWSに保存する必要があります。Knowledge baseで利用するには、AWS Secrets Managerを利用しましょう。 [キー/値

                                      Amazon Bedrockに新登場した「Knowledge base」を試してみた(Pinecone利用編) | WP-kyoto
                                    • BigQuery で商品を「意味&ランキング検索」できる Chat Bot を作ってみた - G-gen Tech Blog

                                      G-gen の神谷です。本記事では、BigQuery の機能を使って、商品を意味&ランキング検索できる ChatBot を作ってみたので、そのご紹介ができればと思います。 アプリの概要 ユースケース 背景とメリット アーキテクチャ システムアーキテクチャ RAG テーブル設計 検索処理の詳細 使っている技術と実装例 BigQuery ML のテキストエンべディング関数 BigQuery リモート関数用のコネクションオブジェクト作成 Vertex AI API を BigQuery のリモート関数として登録 テキストデータからエンベディングベクトルの抽出 BigQuery ML の類似ベクトル検索関数 入力されたテキストから類似アイテムを検索 検索高速化のためのベクトルインデックス登録 Cloud Functionsによる Google Chat アプリケーション構築 アプリの概要 このアプ

                                        BigQuery で商品を「意味&ランキング検索」できる Chat Bot を作ってみた - G-gen Tech Blog
                                      • 「AIと社会」思考整理ノートVol.1:AI問題のタクソノミー - 重ね描き日記(rmaruy_blogあらため)

                                        本連載について AIの社会的影響について考え始めたのは、8年ほど前。当時は「ブームだしちょっと考えてみよう」というつもりだったが、社会的の関心は落ち着くどころかどんどん大きくなっていき、私自身も考え続けることになった。いまでは、AI関連の新聞記事に目を通すのが日課になってしまった。 「AIと社会」に関してどんな論点があり、何を知っておくとよいのか。すでに膨大な文献があるのは承知しているが、自分なりの考えを文章にしておきたい。「AIと社会」思考整理ノートと題した、2~3回の連載をやってみる*1。 第1回は、AIがもたらす「問題」について考える。 Vol.1:AI問題のタクソノミー AIと社会の関係、とりわけその負の側面に関する議論は、たいてい「問題の列挙」から始まる。人工知能(AI)という用語でくくられる技術範囲は広く、大規模言語モデルや強化学習など技術の範囲に絞っても、その応用範囲が広く、

                                          「AIと社会」思考整理ノートVol.1:AI問題のタクソノミー - 重ね描き日記(rmaruy_blogあらため)
                                        • 2024-06-07: MSTest 3.4, OpenAI for .NET 2.0.0-beta.1, Serilog 4.0.0, Windows App SDK 1.6.0-experimental1 - WeekRef.NET

                                          2024-06-07: MSTest 3.4, OpenAI for .NET 2.0.0-beta.1, Serilog 4.0.0, Windows App SDK 1.6.0-experimental1 トピックス MSTest 3.4 is here with WinUI support and new analyzers! - .NET Blog https://devblogs.microsoft.com/dotnet/introducing-mstest-34/ MSTest 3.4 がリリースされた。 このリリースでは MSTest.Analyzer の様々な改善とバグ修正、STA スレッドのサポート、フィクスチャーメソッドのタイムアウトサポート、MSTest.Sdk での Playwright や Aspire のサポート、MSTest.Runner の WinUI のサ

                                          • Gartner Says Generative AI is at the Peak of Inflated Expectations for Revenue and Sales Technology

                                            Gartner Says Generative AI is at the Peak of Inflated Expectations for Revenue and Sales Technology The 2023 Gartner Hype Cycle for Revenue and Sales Technology Shows that New Technology Investments Put Customer Experience Back at Center of Buying Journey There are five innovative revenue and sales technologies that are improving customer experience (CX) through coordinated efforts to support digi

                                              Gartner Says Generative AI is at the Peak of Inflated Expectations for Revenue and Sales Technology
                                            • 作家活動をより効率的に!検索機能によって作品管理にかかる時間を短縮 - Pepabo Tech Portal

                                              はじめに こんにちは、私はminne事業部でwebアプリケーションエンジニアをしている、kazuです。(過去の執筆記事はこちら) minneでは、購入者が作品検索をする際に利用する検索機能を、OpenSearchを使って実装しています。また、searchkickというgemを使って、OpenSearchを扱いやすくしています。 そして今回、購入者が触る画面ではなく、作家・ブランドが自身の作品を管理する管理画面(以下、「作品管理画面」と呼称します)において、キーワードや作品IDで検索できる機能を実装しました。今回は、その機能の実装について紹介します。 何を伝えるものか 作品管理画面で検索機能を実装する際に、どのようなことを考えたか、どのような実装をしたかを伝えたいと思います。 その際につまづいた点にも言及し、その解決策を紹介します。 まずOpenSearchとは何か OpenSearchはオ

                                                作家活動をより効率的に!検索機能によって作品管理にかかる時間を短縮 - Pepabo Tech Portal
                                              • 【効率爆上がり】GoogleカレンダーとNotionを自動連携|管理の山田|Notion公式アンバサダー

                                                こんにちは!Notionを全力で広めている山田です。 今回はNotion Automationsというツールを活用したGoogleカレンダーとNotionの自動連携方法をご紹介します。 皆さんは予定とタスク、どのように管理されていますか? 「一元管理できてます!」って方には今回の機能は不要ですが、別々のツールで管理している方、どのように管理するか悩んでいる方は必見です。 このツールを使えば、 1️⃣ Googleカレンダーで召集された予定 ➡︎ Notionに自動で連携 2️⃣ Notionに登録したタスク ➡︎ Googleカレンダーに自動で連携 といった形で双方向に予定とタスクを自動連携することができるので、無駄なツールの行き来を無くすことができるんです! 予定とタスクを一元管理ちょっとツールを行き来するだけ。 と考えると大したことがないように感じますが、ツールの切り替えは思っている以

                                                  【効率爆上がり】GoogleカレンダーとNotionを自動連携|管理の山田|Notion公式アンバサダー
                                                • Noble Numbat Release Notes

                                                  Table of Contents Introduction New features in 24.04 LTS Known Issues Official flavours More information Introduction These release notes for Ubuntu 24.04 LTS (Noble Numbat) provide an overview of the release and document the known issues with Ubuntu and its flavours. Support lifespan Ubuntu 24.04 LTS will be supported for 5 years until June 2029. If you need Long Term Support, we recommend you us

                                                  • Home | Org Topologies

                                                    Org Topologies™ Primer is a free, comprehensive summary of the Org Topologies™ method to help you assess and design your agile ecosystem towards its thoughtful evolution over time. Sixteen Archetypes ​ The Org Topologies™ Map is an overview of recognizable organizational archetypes observable in any value-creating organizations, including high-tech R&D and product development, at any scale. These

                                                      Home | Org Topologies
                                                    • Troubleshooting containers

                                                      Understanding containerization and improve debugging As I delve more into kubernetes, the more I get distracted by side quests. This is one of those. In this DLC, I try to understand containerization, how it works, and essentially learn how to debug a running docker container. I had first encountered chroot while installing ArchLinux. Basically while installation, you mount the chose partition to

                                                      • 【イスラエル】音楽フェスで、「ハマス」に殺害された260人の遺体を回収

                                                        イスラエル南部のコミュニティに対する、パレスチナの武装組織「ハマス」による奇襲攻撃や、イスラエル側の反撃により、双方に多くの犠牲者が出ている。 双方合わせて死者は1100人以上 10月7日に行われた「ハマス」の奇襲攻撃により、イスラエル側の死者数は、兵士44人を含む少なくとも700人に上ったという。 また報復攻撃として実施されたイスラエル側の空爆などにより、ガザ地区では少なくとも413人の死者が出たそうだ。 すでに7日以来、数千人のイスラエル人やパレスチナ人が負傷し、キブツ砂漠で開催されていた音楽フェスティバルでも「ハマス」の攻撃が行われ、260人の遺体が発見されて、回収されたという。 SNSには当時、音楽フェスの会場から、イスラエル人らが逃げる動画も投稿されている。 BREAKING: Search and rescue mission at Nova festival next to

                                                          【イスラエル】音楽フェスで、「ハマス」に殺害された260人の遺体を回収
                                                        • Travel Update! The NIST CSF 2.0 is HERE…Along with Many Helpful Resources…

                                                          The NIST Cybersecurity Framework (CSF) development process all started with Executive Order (EO)13636 over a decade ago, which called for building a set of approaches (a framework) for reducing risks to critical infrastructure. Through this EO, NIST was tasked with developing a "Cybersecurity Framework." We knew that, to do this the right way, NIST would need to work alongside industry, academia,

                                                          • Bluesky and the AT Protocol: Usable Decentralized Social Media

                                                            Bluesky and the AT Protocol: Usable Decentralized Social Media Martin Kleppmann martin.kleppmann@cst.cam.ac.uk University of Cambridge Cambridge, UK Paul Frazee Jake Gold Jay Graber Daniel Holmgren Bluesky Social PBC United States Devin Ivy Jeromy Johnson Bryan Newbold Jaz Volpert Bluesky Social PBC United States ABSTRACT Bluesky is a new social network built upon the AT Protocol, a de- centralize

                                                            • GitHub - AnswerDotAI/rerankers

                                                              Rerankers are an important part of any retrieval architecture, but they're also often more obscure than other parts of the pipeline. Sometimes, it can be hard to even know which one to use. Every problem is different, and the best model for use X is not necessarily the same one as for use Y. Moreover, new reranking methods keep popping up: for example, RankGPT, using LLMs to rerank documents, appe

                                                                GitHub - AnswerDotAI/rerankers
                                                              • Reversing Choplifter – Blondihacks

                                                                Because it seemed like a good idea at the time. The Apple II line of computers had an amazing run, from 1977 to 1993. In that time, hundreds of thousands of pieces of software were written for it, including many tens of thousands of games. Like any platform, however, the number of truly great games within that range is much smaller. If you ask any former (or current) Apple II user what the best fi

                                                                • Mapping the Mind of a Large Language Model

                                                                  Today we report a significant advance in understanding the inner workings of AI models. We have identified how millions of concepts are represented inside Claude Sonnet, one of our deployed large language models. This is the first ever detailed look inside a modern, production-grade large language model. This interpretability discovery could, in future, help us make AI models safer. We mostly trea

                                                                    Mapping the Mind of a Large Language Model
                                                                  • Fog of War

                                                                    Remix is designed to make your application performant by default. Our latest feature, Fog of War1, helps your application stay performant no matter how large it grows. How Remix Makes Fetch(es) Happen Remix has primarily been a compiler and server-runtime on top of React Router aimed at giving you the idiomatic and performant way we would have written a React Router SSR app. Could you build your o

                                                                      Fog of War
                                                                    • untitled

                                                                      Special Section: Doing Psychological Science Study of Mathematically Precocious Youth After 35 Years Uncovering Antecedents for the Development of Math-Science Expertise David Lubinski and Camilla Persson Benbow Vanderbilt University ABSTRACT—This review provides an account of the Study of Mathematically Precocious Youth (SMPY) after 35 years of longitudinal research. Findings from recent 20-year

                                                                      • 【QLoRA編】日本語LLMのファインチューニング & 低スペックのローカル環境のアプリで動かす | 子供プログラマー

                                                                        *ダウンロードされる圧縮ファイルを解凍するとCSV形式ファイルが編集できるようになります。 チュートリアルで利用しているサンプルデータセットも公開しています。 ご自身のオリジナルデータセットで学習前に、必要に応じて練習用としてご活用いただけますと幸いです。 ダウンロード時点のファイル名は ・sample_dataset (sample_dataset.csv) になっていますが、利用する際には ・dataset (dataset.csv) という名前に変更してご利用ください。 *ダウンロードされる圧縮ファイルを解凍するとCSV形式ファイルが編集できるようになります。 【unsloth編】 QLoRA:日本語LLMのファインチューニング – 最終更新:2024年4月5日 ローカル環境で使うために、日本語LLMのファインチューニングし「GGUF形式」で保存してみましょう 【ステップ1】 ファイ

                                                                          【QLoRA編】日本語LLMのファインチューニング & 低スペックのローカル環境のアプリで動かす | 子供プログラマー
                                                                        • CISA shares free tools to help secure data in the cloud

                                                                          The U.S. Cybersecurity and Infrastructure Security Agency (CISA) has shared a factsheet providing details on free tools and guidance for securing digital assets after switching to the cloud from on-premises environments. The newly released factsheet helps network defenders, incident response analysts, and cybersecurity professionals mitigate the risk of information theft and exposure, as well as d

                                                                            CISA shares free tools to help secure data in the cloud
                                                                          • Release 3.35.0 - 2023.12.29 · zloirock/core-js

                                                                            { Map, Set, WeakMap, WeakSet }.{ from, of } became non-generic, following this and some other notes. Now they can be invoked without this, but no longer return subclass instances Fixed handling some cases of non-enumerable symbol keys from Symbol polyfill Removed unneeded NodeJS domains-related logic from queueMicrotask polyfill Fixed subclassing of wrapped ArrayBuffer Refactoring, many different

                                                                              Release 3.35.0 - 2023.12.29 · zloirock/core-js
                                                                            • Performance Analysis of Python's `dict()` and `{}`

                                                                              Some time ago, during a code review, I had a discussion with a colleague of mine about preferring dict() over {} in new Python code. They argued that dict() is more readable — and expresses intent more clearly — therefore should be preferred. I wasn’t convinced by that, but at that time I didn’t have any counterarguments, so I passed. Yet that made me wonder: what’s the difference between the dict

                                                                                Performance Analysis of Python's `dict()` and `{}`
                                                                              • De voorspelling is dat de markt voor Automatisch Geleide Voertuigen tijdens de voorspellingsperiode USD 3,39 miljard zal bereiken met een CAGR van 7,50%. – iCrowdNewswire Dutch

                                                                                Vrijwaring: de onderstaande tekst is automatisch vertaald vanuit een andere taal met behulp van een vertaaltool van derden. De voorspelling is dat de markt voor Automatisch Geleide Voertuigen tijdens de voorspellingsperiode USD 3,39 miljard zal bereiken met een CAGR van 7,50%. Wereldwijd marktoverzicht voorautomatisch geleide voertuigen Market Research Future (MRFR) heeft een gekookt onderzoeksrap

                                                                                • Learnings from 'ts-blank-space`

                                                                                  ts-blank-space-doc.md Learnings from ts-blank-space tags: TypeScript, type erasure, type stripping ts-blank-space As part of my work on the JavaScript Tooling team at Bloomberg I have implemented an experimental (not yet used in production) package to transform TypeScript into JavaScript using a somewhat novel approach. This is a description of what I learned from implementing the idea. The source

                                                                                    Learnings from 'ts-blank-space`