並び順

ブックマーク数

期間指定

  • から
  • まで

281 - 320 件 / 803件

新着順 人気順

divideの検索結果281 - 320 件 / 803件

  • JavaScript to Know for React

    JavaScript to Know for ReactJuly 15th, 2020 — 14 min read One of the things I love most about React compared to other frameworks that I've used is how exposed you are to JavaScript when you're using it. There's no template DSL (JSX compiles to sensible JavaScript), the component API has only gotten simpler with the addition of React Hooks, and the framework offers you very little abstraction outsi

      JavaScript to Know for React
    • GHQが戦後の日本人に封印したイギリスのインド統治方法について書かれた本~~『英帝國敗るるの日』

      以前このブログで、かつて豊かであったインドが、イギリスの植民地となって以降富が奪われて行ったことを書いたのだが、戦後の日本人はイギリスという国は紳士の国だと学校で教わり、イギリスがそのようなひどいことをしたことはマスコミなどでも伝えられることはなかった。 前回に書いたように、イギリスが植民地としたオーストラリアでは、タスマニア島の原住民を絶滅させ、オーストラリア原住民も大半を殺戮したのだが、高い文明社会を築いていたインドに対するイギリスの統治もまた酷かった。イギリスはインド人にアヘンを製造させ、半分をインドで消費させ、幼児にも吸飲させていたという。 イギリスはインドを世界最大のアヘン産地とし、約半分をインドで消費させるために、インド人にアヘンの消費を推奨した。子供たちは二歳になるまでにアヘンを飲まされ、そのため多くの子供は死に、平均寿命はわずかに26歳であった。イギリスはアヘンの有害性を認

        GHQが戦後の日本人に封印したイギリスのインド統治方法について書かれた本~~『英帝國敗るるの日』
      • 階級、政治、スリーフォード・モッズとアイドルズ | ele-king

        昨年、このサイトの記事で、音楽における政治の重要性について書いた。アーティストがオーディエンスの生活と繋がりを持ち、自分たちの音楽と世界への視点を豊かにする方法と、メインストリームな組織以外の場所で、繋がりを築く方法について述べた。しかしその記事では取り上げなかったひとつの大きなイシュー(問題点)がある。政治に内在する対立が芸術に入り込んだ時に何が起こるのか、ということだ。 これこそが、多くの人が日常的な交流のなかで、政治の話を避けようとする主な理由だ。新しい同僚に対して慎重になって政治についての話題を避けたり、高校時代の旧友が、政敵について好意的に語ると胃が締めつけられる気がしたり、何杯かの酒の後に抑制が効かずに家族と衝突してしまったりする。学校の教師をしている両親の息子である自分は、普段、ミュージシャン、ライター、アーティストやその他のクリエイティヴな人びとの輪のなかでほとんどの時間を

          階級、政治、スリーフォード・モッズとアイドルズ | ele-king
        • bliki: Waterfall Process

          In the software world, “waterfall” is commonly used to describe a style of software process, one that contrasts with the ideas of iterative, or agile styles. Like many well-known terms in software it's meaning is ill-defined and origins are obscure - but I find its essential theme is breaking down a large effort into phases based on activity. It's not clear how the word “waterfall” became so preva

            bliki: Waterfall Process
          • What does a Public Relations agency do? - Best Proven Info

            This type of company is dedicated to managing the communication of a company. We tell you what it takes to work with them. The lines that divide and differentiate an agency. PR of a media company is as thin as the one that separates the love hate, so it is common to confuse what are the tasks that performs one and the other, it is not surprising that in its own dynamics it has than supply function

              What does a Public Relations agency do? - Best Proven Info
            • Totality - kawasima

              数学の用語では全域性と呼ばれる code:f f = x => y 関数fの定義域xの取りうる値すべてに対応する値域yが存在することである。 全域性を持たない関数の例として代表的には割り算がよく取り上げられる。 code:divide.ts type Divide = (a:number, b: number) => number const divide: Divide = (a,b) => b !== 0 ? a/b : NaN 割る数に0は取りえないので、このdivide関数は全域性が無いことを意味する。 全域性を持たせるためには、3つのアプローチがあるとされる。 1. 定義域にデフォルト値を返す。 2. 戻り値にエラーケースを含める。 3. 引数(定義域)を全域性担保できる範囲に限定する。 1はこれが出来る場合と出来ない場合がある。上記例のように割り算の場合、どんな数字をデフォルト

                Totality - kawasima
              • Retrieval Augmented Generation at scale — Building a distributed system for synchronizing and…

                Disclaimer: We will go into some technical and architectural details of how we do this at Neum AI — A data platform for embeddings management, optimization, and synchronization at large scale, essentially helping with large-scale RAG. As we’ve shared in other blogs in the past, getting a Retrieval Augmented Generation (RAG) application started is pretty straightforward. The problem comes when tryi

                  Retrieval Augmented Generation at scale — Building a distributed system for synchronizing and…
                • TechCrunch | Startup and Technology News

                  The Series C funding, which brings its total raise to around $95 million, will go toward mass production of the startup’s inaugural products

                    TechCrunch | Startup and Technology News
                  • Reference Collection to push back against "Common Statistical Myths"

                    Note: This topic is a wiki, meaning that this main body of the topic can be edited by others. Use the Reply button only to post questions or comments about material contained in the body, or to suggest new statistical myths you’d like to see someone write about. I am not claiming to be the leading authority on any or all of the things listed below, but several of us on Twitter have repeatedly floa

                      Reference Collection to push back against "Common Statistical Myths"
                    • JavaScriptの数値計算はどれくらい正確なのか

                      JavaScriptは様々な用途で使われるプログラミング言語で、色々な用途に対応するための一通りの機能が揃っています。その中には、数値計算の機能も含まれています。 数値計算、特に小数の計算においては、計算結果の正確性が度々問題になります。プログラムにおいては、色々な要因で計算結果には誤差が発生します。一例として、浮動小数点数の場合は数を表現するために使えるビット数が有限であることから、計算結果は真の値(数学的な意味での正しい計算結果)と異なる値になることがあります(いわゆる丸め誤差)。例えば、JavaScriptの数値はIEEE 754 倍精度浮動小数点数(いわゆるdouble)ですが、doubleでは1 / 10の結果(0.1)を正確に表すことができず、結果の浮動小数点数は(10進数で書き下すと)0.10000000000000000555111512312578270211815834

                        JavaScriptの数値計算はどれくらい正確なのか
                      • V Language Review (2022)

                        V is a programming language promising to be “Simple, fast, safe, compiled. For developing maintainable software.” V has a controversial past but what is the state of V in 2022? Is V worth checking out? In this post, we’ll take a look at V as it exists in May 2022. TLDR Read the summary Rules of engagement I’ll be using the current version of V built from git which is 50ab2cfd1ae02d4f4280f38c60b8db

                        • The Art of Malware – Danus Minimus – Reverse Engineer and Malware Analyst

                          Bringing the Dead back to life I would like to dedicate this post(or perhaps series of posts) to Mark Ludwig, the author of The Giant Black Book of Computer Viruses, who passed away in 2011. You’ve sparked my initial interest in viruses back in 2013 when I was only 15, and although back then I could barely understand your book I would like to make some closure in modern day era. You saw viruses as

                          • Nostr and ATProto - Shreyan Jain

                            This post could’ve been titled “Nostr vs ATProto”, but that really isn’t what I wanted to do here. While I will be comparing and contrasting them a lot, and that’s kind of even the point of writing this, I didn’t want to really pit the two against each other at all, and especially not with the title. I also want to try avoiding commenting on the differences between the communities that have formed

                            • Chapter 2 - Implementing SLOs, Google SRE Book

                              Implementing SLOs By Steven Thurgood and David Ferguson with Alex Hidalgo and Betsy Beyer Service level objectives (SLOs) specify a target level for the reliability of your service. Because SLOs are key to making data-driven decisions about reliability, they’re at the core of SRE practices. In many ways, this is the most important chapter in this book. Once you’re equipped with a few guidelines, s

                              • inyecciones para el nervio ciático $ farmacia benavides - Foro de castings, actores, modelos y eventos | YateCasting España

                                Farmacia europea inyecciones para el nervio ciático - completo anonimato - Calidad farmacéutica y dosificación. - Le reembolsaremos si el artículo no es adecuado para usted. - Entrega rápida garantizada en todo el mundo. - Varios métodos de pago: MasterCard / Visa / AMEX / PayPal / BitCoin farmacia benavides Recomendado de los visited medicamento, ciatico neurodinamia a sistema técnicas dosis de d

                                • Why an Engineering Manager Should Not Review Code

                                  Observing the Machine — Midjourney v5.1When discussing team organization, I am often asked: “Why don’t you have the tech lead manage the team?” My response is to hiss like a vampire exposed to holy water. When the follow-up question is: “Given you want managers on your teams, can the manager still perform code reviews?” I burst into flames. This question comes up all the time. But, let’s think abo

                                    Why an Engineering Manager Should Not Review Code
                                  • Abandoning a Cat

                                    Of course I have a lot of memories of my father. It’s only natural, considering that we lived under the same roof of our not exactly spacious home from the time I was born until I left home at eighteen. And, as is the case with most children and parents, I imagine, some of my memories of my father are happy, some not quite so much. But the memories that remain most vividly in my mind now fall into

                                      Abandoning a Cat
                                    • The new dot com bubble is here: it’s called online advertising

                                      Sometime in June 2003, Mel Karmazin, the president of Viacom, one of the largest media conglomerates in the world, walked into the Google offices in Mountain View, California. Google was a hip, young tech company that made money – actual money! – off the internet. Karmazin was there to find out how. Larry Page and Eric Schmidt, Google’s founder and its CEO respectively, were already seated in the

                                        The new dot com bubble is here: it’s called online advertising
                                      • 鷹尾祥(アキラ)のExcel BI ブログ

                                        『Excelpパワークエリ データ収集・整形を自由自在にする本』 大手出版社による日本初のパワークエリ専門書ですが、全くの初心者から始まり、M言語の導入部分までステップアップできる内容となっています。皆さんの日常業務のデータ収集・整形をほとんど自動化できるように目指した本です。 Power BIにもそのまま利用できますので、ご活用ください。 Excelパワークエリ データ収集・整形を自由自在にする本 作者:鷹尾 祥 翔泳社 Amazon 『Excelパワーピボット 7つのステップでデータ集計・分析を「自動化」する本』 この本は、Excelでレポートを自動化するときに、パワークエリ、パワーピボット、DAXを全体としてどう使えば良いかをテーマにした本です。世界一優しいビジネスインテリジェンスの入門書を目指しました。 Power BIのベースとなった技術なので、PBIにも応用可能です。 Exce

                                          鷹尾祥(アキラ)のExcel BI ブログ
                                        • Austrian doctors speak out after suicide of GP following Covid threats

                                          Her death prompted a wave of vigils and demonstrations. There have also been calls for laws against bullying and psychological warfare to be tightened, including making it easier to prosecute perpetrators in other EU countries, after at least two of the people believed to have targeted Kellermayr with death threats were identified as coming from Germany. Thousands of people gathered outside St Ste

                                            Austrian doctors speak out after suicide of GP following Covid threats
                                          • Publishing Node modules with TypeScript and ES modules - LogRocket Blog

                                            Editor’s note: This article was last updated by Ikeh Akinyemi on 1 May 2023 to include information about TypeScript module exports and how to import modules that were previously exported. For further reading, check out our post “How to organize code in TypeScript using modules.” TypeScript has become a very popular language to write JavaScript in, and for good reason. Its typing system and compile

                                              Publishing Node modules with TypeScript and ES modules - LogRocket Blog
                                            • ジャップと呼ばれた悔しさと悲しさ 強制収容所で生まれ、広島で育ち、米国に生きる私の終戦74年(南龍太) - エキスパート - Yahoo!ニュース

                                              太平洋戦争のさなか、強制収容所に生まれ、終戦後広島で育ち、再び米国へ戻り、複雑なアイデンティティーを持って生きてきた。真珠湾攻撃のあった12月7日になると普段仲の良い友達にまで「Jap!」と蔑称で呼ばれた過去。米国で不動産会社を営む日系3世の古本武司さん(74)の半生は、日本人に対する差別との闘いだった。「次世代の人たちに自分のような体験をさせたくない」との思いを胸に、戦争や差別のない世界の実現に向けて訴え続ける。 行きたくなかった学校 「私の家族は10日くらい前のnotice(通知)で、スーツケース1つで他は全部捨てて(収容所に)入りまして」。時の大統領令で強制収容が認められ、家族は皆、米西部カリフォルニア州にあるトゥーリーレーク収容所に送られた。1944年、「そこで私は生まれました」。 古本さん(左から2番目)と家族、トゥーリーレーク収容所で 終戦直後、古本さんが1歳の時に両親と共に祖

                                                ジャップと呼ばれた悔しさと悲しさ 強制収容所で生まれ、広島で育ち、米国に生きる私の終戦74年(南龍太) - エキスパート - Yahoo!ニュース
                                              • en línea Proviron 25 mg - http://url-qr.tk/Proviron 25 mg - Proviron 25 mg farmacia benavides - Foro de castings, actores, modelos y eventos | YateCasting España

                                                en línea Proviron 25 mg - http://url-qr.tk/Proviron 25 mg - Proviron 25 mg farmacia benavides - Calidad y dosificación farmacéutica. - Productos 100% legales. en línea Proviron 25 mg - Entrega rápida garantizada. - Diferentes métodos de pago: MasterCard / Visa / AMEX / PayPal / BitCoin Proviron 25 mg farmacia benavides _______________________________________________________________________________

                                                • Formatting text for app surfaces

                                                  These are developer-focused instructions that cover posting messages to Slack via APIs. For user instructions on message formatting in your Slack client, refer to this Help Center article. App surfaces such as messages, modals, or Home tabs can contain all types of textual treasures. The text itself can be formatted and placed inside blocks to create rich message layouts. The Block Kit elements th

                                                    Formatting text for app surfaces
                                                  • 嘘だらけの推理ADV『Telling Lies』8月23日に日本語対応で配信へ。4人の生活を覗き見、隠された真実を見つけ出す - AUTOMATON

                                                    ホーム ニュース 嘘だらけの推理ADV『Telling Lies』8月23日に日本語対応で配信へ。4人の生活を覗き見、隠された真実を見つけ出す Annapurna Interactiveは8月17日、『Telling Lies』を現地時間8月23日に配信すると発表した。対応プラットフォームはPC/Mac(Steam)およびiOS。『Telling Lies』は、『Her Story』『サイレントヒル シャッタードメモリーズ』といったアドベンチャーゲームを手がけてきたサム・バーロー氏による新作である。Steamストアでは日本語対応の表記が確認されている。そのほかのAnnapurna Interactive作品と同様に、日本語でプレイできることだろう。 『Telling Lies』では、プレイヤーは盗み出された NSA(アメリカ国家安全保障局)のデータベースが入ったノートPCを調べていく。デー

                                                      嘘だらけの推理ADV『Telling Lies』8月23日に日本語対応で配信へ。4人の生活を覗き見、隠された真実を見つけ出す - AUTOMATON
                                                    • A Complete guide to Semantic Segmentation in 2024

                                                      Published: May 19, 2021 ● Updated: Mar 21, 2024 IntroDeep learning has been very successful when working with images as data and is currently at a stage where it works better than humans on multiple use-cases. The most important problems that humans have been interested in solving with computer vision are image classification, object detection and segmentation in the increasing order of their diff

                                                        A Complete guide to Semantic Segmentation in 2024
                                                      • 7 Vue Patterns That You Should Be Using More Often

                                                        Let’s be honest, reading documentation is not something that most of us enjoy, but when working with a modern front-end framework like Vue, which is constantly evolving, a lot of things change with every new release and you might have missed some of the new and shiny features that were later introduced. Let's take a look at those interesting but not so popular features. Keep in mind that all of th

                                                          7 Vue Patterns That You Should Be Using More Often
                                                        • So you want to write a GUI framework

                                                          Through several recent discussions of GUI programming in Rust, I have been left with the impression that the term ‘GUI’ means significantly different things to different people. I would like to try and clarify this point somewhat, first by describing some of the different things that people refer to as GUI frameworks/toolkits, and then by exploring in detail the necessary components of one of thes

                                                          • FoundationDB: A Distributed Key-Value Store – Communications of the ACM

                                                            CACM Web Account Membership in ACM includes a subscription to Communications of the ACM (CACM), the computing industry's most trusted source for staying connected to the world of advanced computing. Sign In Sign Up FoundationDB is an open-source transactional key-value store created more than 10 years ago. It is one of the first systems to combine the flexibility and scalability of NoSQL architect

                                                            • The Best GPUs for Deep Learning in 2023 — An In-depth Analysis

                                                              Deep learning is a field with intense computational requirements, and your choice of GPU will fundamentally determine your deep learning experience. But what features are important if you want to buy a new GPU? GPU RAM, cores, tensor cores, caches? How to make a cost-efficient choice? This blog post will delve into these questions, tackle common misconceptions, give you an intuitive understanding

                                                                The Best GPUs for Deep Learning in 2023 — An In-depth Analysis
                                                              • The State of Transfer Learning in NLP

                                                                Update 16.10.2020: Added Chinese and Spanish translations. This post expands on the NAACL 2019 tutorial on Transfer Learning in NLP. The tutorial was organized by Matthew Peters, Swabha Swayamdipta, Thomas Wolf, and me. In this post, I highlight key insights and takeaways and provide updates based on recent work. You can see the structure of this post below: The slides, a Colaboratory notebook, an

                                                                  The State of Transfer Learning in NLP
                                                                • Build a micro-frontend application with React - LogRocket Blog

                                                                  Editor’s note: This article was last updated by Muhammed Ali on 18 March 2024 to cover common issues when building micro-frontends and their solutions, as well as examples of micro-frontend communication strategies such as event-based communication and using React’s Context API. Working on large-scale projects and managing their codebases can be a big challenge for teams. Although micro-frontends

                                                                    Build a micro-frontend application with React - LogRocket Blog
                                                                  • A Job for Life, or Not? A Class Divide Deepens in Japan (Published 2020)

                                                                    Setsuko Hikita at home in Tokyo. Ms. Hikita sued her employer for paying her less than many of her co-workers and denying her a retirement allowance.Credit...Noriko Hayashi for The New York Times TOKYO — For more than a decade, Setsuko Hikita spent her working days selling snacks and newspapers in the bowels of Tokyo’s bustling metro system. Amid the chaos of morning commutes and the scramble to c

                                                                      A Job for Life, or Not? A Class Divide Deepens in Japan (Published 2020)
                                                                    • Ray Tracing in pure CMake

                                                                      Without further ado, I present: a basic whitted ray tracer, complete with multicore rendering, written in 100% pure CMake. If you don't care about the details, and just want to see the code, you can find it here. Rendered in 7m23s on a i5-10210U, 8 processesAt this point, those familiar with CMake may have some questions, so keep reading to find out how it all works. Fixed-Point ArithmeticGood new

                                                                        Ray Tracing in pure CMake
                                                                      • City In A Bottle – A 256 Byte Raycasting System

                                                                        Hello size coding fans. Today, I have something amazing to share: A tiny raycasting engine and city generator that fits in a standalone 256 byte html file. In this post I will share all the secrets about how this magical program works. Here’s my tweet that contains the code and a video of the output… A City in a Bottle 🌆 <canvas style=width:99% id=c onclick=setInterval('for(c.width=w=99,++t,i=6e3

                                                                          City In A Bottle – A 256 Byte Raycasting System
                                                                        • Horarios y canales: sigue el Barcelona vs. Betis EN VIVO por LaLiga Santander 2020 | by priyong | Nov, 2020 | Medium

                                                                          Horarios y canales: sigue el Barcelona vs. Betis EN VIVO por LaLiga Santander 2020 Evangelicalism in America is nearing extinction due to the movement’s devotion to politics at the expense of its original calling to share the gospel, according to Mark Galli, former editor-in-chief of Christianity Today. “The evangelicalism that transformed the world is, for all practical purposes, dying if not alr

                                                                            Horarios y canales: sigue el Barcelona vs. Betis EN VIVO por LaLiga Santander 2020 | by priyong | Nov, 2020 | Medium
                                                                          • エラスティックリーダーシップ――自己組織化チームの育て方 - forest book

                                                                            最近出版された本ではありませんが、じっくり読む機会があったので簡単に所感をまとめてみます。購入したのは約1年前でした。それから積ん読していて、読み始めてからも時間のあるときに少しずつ読み進めて1ヶ月ぐらいかかりました。 www.oreilly.co.jp 買っておくといつか読む可能性がある。 読まないよりは少しでも読んだほうがよい。 一通り読めてよかった。 。。。 そんな所感は誰も期待してないでしょうから、少し振り返りながら私にとって関心のある内容をまとめてみます。私はリーダーや管理職に就いたことがないので本当の意味では、本書のリーダーの難しさや悩み、葛藤などは理解できていないと思います。 一方でメンバーの立場でリーダーを補佐してきたことや、いくつかの企業やチームでそれぞれのリーダーに接してきたこと、自分にとって働きやすかったリーダーなど、やはり、本書を読んで共感できるところは多々あります

                                                                              エラスティックリーダーシップ――自己組織化チームの育て方 - forest book
                                                                            • Use Llama 3.1 405B for synthetic data generation and distillation to fine-tune smaller models | Amazon Web Services

                                                                              AWS Machine Learning Blog Use Llama 3.1 405B for synthetic data generation and distillation to fine-tune smaller models Today, we are excited to announce the availability of the Llama 3.1 405B model on Amazon SageMaker JumpStart, and Amazon Bedrock in preview. The Llama 3.1 models are a collection of state-of-the-art pre-trained and instruct fine-tuned generative artificial intelligence (AI) model

                                                                                Use Llama 3.1 405B for synthetic data generation and distillation to fine-tune smaller models | Amazon Web Services
                                                                              • The threat from the illiberal left

                                                                                The threat from the illiberal leftDon’t underestimate the danger of left-leaning identity politics SOMETHING HAS gone very wrong with Western liberalism. At its heart classical liberalism believes human progress is brought about by debate and reform. The best way to navigate disruptive change in a divided world is through a universal commitment to individual dignity, open markets and limited gover

                                                                                  The threat from the illiberal left
                                                                                • On Rails

                                                                                  16 years ago, David Heinemeier Hansson (DHH) took the stage and delivered one of the most impressive code demos the world has ever seen. It was not only an impeccable presentation but also a very well-timed one. In 2005, developers knew that in order to ship web apps, they needed to deal with a lot of boilerplate code. Ruby on Rails came to change all that. Last week, Remix went open source and th

                                                                                    On Rails