並び順

ブックマーク数

期間指定

  • から
  • まで

521 - 560 件 / 4412件

新着順 人気順

Onesの検索結果521 - 560 件 / 4412件

  • プリンス&ザ・レヴォリューション 85年パープル・レイン・ツアーのコンサートを完全収録したライヴ作品発売 - amass

    プリンス&ザ・レヴォリューションの1985年のコンサートを収録したライヴ作品『Prince and The Revolution: Live』が6月3日発売。伝説のパープル・レイン・ツアーの2時間にわたるパフォーマンスを完全収録。この作品から「Let's Go Crazy」のライヴ映像が公開されています。 プリンス財団とソニー・ミュージックエンタテインメント傘下のレガシー・レコーディングスは、2022年6月3日に、プリンス&ザ・レヴォリューションの1985年のコンサートを収録した作品『ライヴ 1985』(英タイトル ”LIVE”)をリリースすることを発表した。 “変えたいところは何もない。これまでに参加した中で、最もパワフルなコンサートのひとつだ”と生前にプリンス本人が語ったライヴ・パフォーマンスが、完全な形でついに発表されることが決定した。このコンサートは、1984年11月から85年4月

      プリンス&ザ・レヴォリューション 85年パープル・レイン・ツアーのコンサートを完全収録したライヴ作品発売 - amass
    • BitNetでMNISTを学習させて見えてきた性質|shi3z

      かれこれ一ヶ月弱くらいBitNetと格闘している。BitNetは、Microsoftが発明したと主張している1-Bit(1.58ビットとも言われる)量子化ニューラルネットワークのことだ。 僕はその辺に落ちてるコードを使って最初の最初はlossが2くらいまで下がったのだが、そもそもLLMはlossが1を切らないと実用性がない。 それ以降は6とか良くて5とかなのでたまたま最初に試したのがうまく行ったようだ。 しかしいつまで経っても良くならないのでBitNetの性質を根本的に見直す必要があるのでは?と思い、初心に帰って論理回路を学習させようとした。 BitNetのコードベースははちさんのコードと、Microsoftの公式な論文の実装を併用した。 まず試したのはこのようなコード from bitnet import * import torch from torch import optim im

        BitNetでMNISTを学習させて見えてきた性質|shi3z
      • Objective-Rust

        This is going to be another one of those posts where I did something ridiculous and then show you how I got there, so let’s just get right to it. use objc_rust::*; use std::ffi::CStr; pub fn main() { #[link(name = "Foundation", kind = "framework")] extern {} objc! { let cls = ObjCClass::lookup("NSNumber\0").unwrap(); let value = [[cls.into() numberWithUnsignedInt:42u32] stringValue]; let result =

          Objective-Rust
        • Parents' lawsuit accuses Japan of double standard on child 'abductions'

          TOKYO (Reuters) - A group of parents fighting against child “abductions” by their partners accused Japan in a lawsuit on Wednesday of having a double standard in how it treats domestic instances of such incidents, compared to international ones. Parents estranged from their children - plaintiffs in a class-action lawsuit against the Japanese government - pose in front of the Tokyo District Court,

            Parents' lawsuit accuses Japan of double standard on child 'abductions'
          • CUPID—for joyful coding

            What started as lighthearted iconoclasm, poking at the bear of SOLID, has developed into something more concrete and tangible. If I do not think the SOLID principles are useful these days, then what would I replace them with? Can any set of principles hold for all software? What do we even mean by principles? I believe that there are properties or characteristics of software that make it a joy to

            • Perl 5.32の連鎖比較(Chained comparisons)はどの様に実装されているのか - Acme::AnaTofuZ->new;

              この記事はPerl Advent Calendar 2020と琉大 Advent Calendar 2020の11日目の記事です。 PerlはPerl5になって長いですが、現在の最新の安定版のバージョンは5.32です。 Perl5.32で取り入れられた(厳密には5.31からですが)のおもしろ機能として連鎖比較(Chained comparisons)が存在します。 今までPerlで数値などが特定の範囲に含まれているかどうかをif文で判定するには次の様に書く必要がありました。 if (10 < $n && $n <= 20) これがこう書ける様になります!!! if ( 10 < $n <= 20 ) {...} 便利!!!!!!!!!!!!!!!!!!!!!!!! ...........というわけで、この便利な連鎖比較がどの様に実装されているかを探検してみます。 言語処理系の実装 さて今か

                Perl 5.32の連鎖比較(Chained comparisons)はどの様に実装されているのか - Acme::AnaTofuZ->new;
              • Takeshi Kitano Weighs in on Sex Abuse Scandal Rocking Japan’s Entertainment Industry: “These Stories Have Always Been Around” (Exclusive)

                Takeshi Kitano, arguably Japan’s most recognizable entertainer, has weighed in on the sexual abuse scandal that has shaken the country’s multibillion-dollar media landscape. Since March, a long-delayed reckoning has been brewing in the country’s entertainment industry. For decades, rumors of rampant sexual abuse had swirled around Johnny Kitagawa, the founder of Johnny & Associates (locally known

                  Takeshi Kitano Weighs in on Sex Abuse Scandal Rocking Japan’s Entertainment Industry: “These Stories Have Always Been Around” (Exclusive)
                • Highlights from Git 2.33

                  Open SourceHighlights from Git 2.33The open source Git project just released Git 2.33, with features and bug fixes from over 74 contributors. Here's a look at some of the most interesting features and changes. The open source Git project just released Git 2.33 with features and bug fixes from over 74 contributors, 19 of them new. We last caught up with you on the latest in Git when 2.31 was releas

                    Highlights from Git 2.33
                  • 【Python実装】LDAのトピックをParticle Filter(SMC)で推論 - ガシンラーニング

                    今回は、LDA(Latent Dirichlet Allocation)の逐次モンテカルロ法(Sequential Monte Calro)であるパーティクルフィルター(Particle Filter)によるトピック推論をPythonで実装しました。 コードは全てgithubに載せています。githubはこちら Twitterフォローよろしくお願いいたします。twitterはこちら 以下の書籍3.5章とこの書籍が参照している元論文を参考にしました。 Online Inference of Topics with Latent Dirichlet Allocation [Canini 2009]こちら こちらの書籍はトピックモデルに限らずベイズモデリング推論の良書です。 トピックモデルによる統計的潜在意味解析 (自然言語処理シリーズ) 作者: 佐藤一誠,奥村学 出版社/メーカー: コロナ社

                      【Python実装】LDAのトピックをParticle Filter(SMC)で推論 - ガシンラーニング
                    • secret_key_baseが漏れると何が起きるのか実際に試してみた|TechRacho by BPS株式会社

                      社内でRailsコードのレビューをしていて、 Dockerfile に環境変数で SECRET_KEY_BASE="dummy" のようにベタ書きしているのを見つけました。これはまずいよね、多分任意のセッション改ざんによるなりすましなどがし放題になりそうだよね、と思ったものの、これまで雰囲気で使っていて確かなことが言えなかったので、良い機会ということで少し調べてみることにしました。 🔗 secret_key_baseについて 🔗 secrets と credentials, RAILS_MASTER_KEY ってなんだっけ 🔗 secrets Rails 4.1で secrets.yml が登場して、environmentごとの認証情報を平文で保存していました。その後Rails 5.2で secrets.yml.enc が登場して、 RAILS_MASTER_KEY または secr

                        secret_key_baseが漏れると何が起きるのか実際に試してみた|TechRacho by BPS株式会社
                      • Microsoft's GitHub account hacked, private repositories stolen

                        The individual told us that they then downloaded 500GB of private projects and initially planned on selling it, but has now decided to leak it for free Based on the file stamps in full directory listing of the leaked files, the breach may have occurred on March 28th, 2020. Shiny Hunters told BleepingComputer that they no longer have access to Microsofts GitHub account. Private repositories leaked

                          Microsoft's GitHub account hacked, private repositories stolen
                        • グラフニューラルネットワークの予測結果を解釈してみよう - NTT Communications Engineers' Blog

                          この記事は、NTTコミュニケーションズ Advent Calendar 2023 11日目の記事です。 はじめに こんにちは。コミュニケーション&アプリケーションサービス部の石井です。 今年はAI分野においては LLM1 の話題で持ちきりの一年でしたが、そんな LLM とは全く関係のないグラフニューラルネットワーク(以下、GNN)の説明性に関する手法である GNNExplainer を題材に扱っていこうと思います。 GNN2 とはグラフで表現された構造化データを深層学習で扱うためのニューラルネットワーク手法の総称です。グラフデータはさまざまな事象を表現できる可能性を秘めていて、GNN の予測結果を解釈できれば、人との関係性把握やマーケティングへの応用など幅広い活用が期待できると思っています。GNN に興味がない方もこんな技術があるのかと深く考えずに読んでもらえればと思います。 本記事で扱う

                            グラフニューラルネットワークの予測結果を解釈してみよう - NTT Communications Engineers' Blog
                          • 2022 Year In Review | The Vue Point

                            Happy new year, Vue community! With 2023 upon us, we would like to take this opportunity to recap what happened in 2022, and discuss what to expect in 2023. Recap for 2022 ​In February 2022, we switched Vue's default version to 3.x. The switch marked the readiness of all the official parts of the framework for v3, including a major revamp of the documentation that provides guidance on latest best

                              2022 Year In Review | The Vue Point
                            • A Guide To CSS Debugging — Smashing Magazine

                              Debugging in CSS means figuring out what might be the problem when you have unexpected layout results. We’ll look at a few categories bugs often fit into, see how we can evaluate the situation, and explore techniques that help prevent these bugs. We’ve all been there, at the end of completing CSS for a layout and — what’s that? Ah! An extra scrollbar! Or maybe an element is an unexpected color. An

                                A Guide To CSS Debugging — Smashing Magazine
                              • Twitter Personality - AI Agent by Wordware

                                These are AI Agents built with Wordware, it will:find Twitter accounts onlinewill read your profile and tweetsthen it will use Large Language Models - like the ones in ChatGPT - to analyse your personalityfinally, it'll create a website with the analysis of your personality or compatibility

                                  Twitter Personality - AI Agent by Wordware
                                • Making slow Rust code fast

                                  Performance tuning using Criterion.rs and flamegraphs Performance is one of the top reasons developers choose Rust for their applications. In fact, it's the first reason listed under the "Why Rust?" section on the rust-lang.org homepage, even before memory safety. This is for good reason too--many benchmarks show that software written in Rust is fast, sometimes even the fastest. This doesn't mean

                                  • 【和訳あり】Peppa Pigの「Edmond Elephant's Birthday」で字幕なし英語動画に挑戦! - 塾の先生が英語で子育て

                                    Peppa Pigの「Edmond Elephant's Birthday」で字幕なし英語動画に挑戦! この記事の英語の難易度はレベル1(★☆☆☆☆)です。 難易度の詳細についてはこちらの記事をご覧ください。 www.jukupapa.com 海外アニメを使って楽しく英語学習ができれば最高ですね。 「Peppa Pig」は日本で手軽に見られる英語アニメの中でも、もっとも簡単な番組のひとつです。 そして日本のアンパンマンのように、イギリスで親しまれているキャラクターです。 「Peppa Pig」については、こちらで詳しく解説しています。 www.jukupapa.com この記事では「Peppa Pig」の実際の動画を使って、英語多観の練習ができるように構成されています。 この記事に沿って英語多観をして頂ければ、聞き取れる、理解できる英語表現が多くなっていることを実感できるはずです。 Pep

                                      【和訳あり】Peppa Pigの「Edmond Elephant's Birthday」で字幕なし英語動画に挑戦! - 塾の先生が英語で子育て
                                    • The State of WebAssembly 2021

                                      This blog post shares the results of the first State of WebAssembly Survey, with results from 250 respondents surveyed in June 2021. For those of you who just want some quick soundbites, here are the main findings: Rust is the most frequently used and most desired WebAssembly language. AssemblyScript is the second-most desireable WebAssembly language. WebAssembly is expected to have a significant

                                        The State of WebAssembly 2021
                                      • GitHub - michael-andreuzza/Marketing-for-Engineers: A curated collection of marketing articles & tools to grow your product.

                                        💎 It’s a hand-picked collection of resources for solving practical marketing tasks, such as: finding beta testers growing first user base advertising project without a budget scaling marketing activities for building constant revenue streams. We faced these questions, when we made our first product (tool for iOS engineers). It took us almost 2 years to learn how to market our project. 😤 During t

                                          GitHub - michael-andreuzza/Marketing-for-Engineers: A curated collection of marketing articles & tools to grow your product.
                                        • Effective TypeScript › Flow Nodes: How Type Inference Is Implemented

                                          In most programming languages a variable has a type and that type does not change. But one of the most interesting aspects of TypeScript's type system is that a symbol has a type at a location. Various control flow constructs can change this type: function refine(x: string | number) { // type of x is string | number here if (typeof x === 'number') { // type of x is number here. } else { // type of

                                            Effective TypeScript › Flow Nodes: How Type Inference Is Implemented
                                          • 制限導入後のBing Chatの能力を確認してみた|IT navi

                                            2月17日、Microsoftは「長い対話セッションは、新しいBingのチャットモデルを混乱させる可能性がある」として、Bingチャットでの1日当たりの質問を50回、1セッション当たりの質問を5回までとする制限を導入しました。 この制限導入後、Bing Chatへの規制が厳しくなり、能力が落ちたとの噂があったので確認してみました。 ※(2月22日追記) 質問回数の制限が1日当たり60回、1セッション当たり6回までに緩和されました。更に近日中に1日の上限を100回に増やす予定とのことです。 1.Bingチャットとの基本的な会話 最初に、基本的な会話を試してみました。 問 こんにちは、好きな食べ物は何ですか? 答 こんにちは、これはBingです。私は食べ物を食べませんが、色々な料理に興味があります。😊 問 年齢と趣味を教えて 答 申し訳ありませんが、私は自分のことについて話すことができません

                                              制限導入後のBing Chatの能力を確認してみた|IT navi
                                            • Rust to WebAssembly the hard way — surma.dev

                                              What follows is a brain dump of everything I know about compiling Rust to WebAssembly. Enjoy. Some time ago, I wrote a blog post on how to compile C to WebAssembly without Emscripten, i.e. without the default tool that makes that process easy. In Rust, the tool that makes WebAssembly easy is called wasm-bindgen, and we are going to ditch it! At the same time, Rust is a bit different in that WebAss

                                                Rust to WebAssembly the hard way — surma.dev
                                              • Understanding client-side JavaScript frameworks - Learn web development | MDN

                                                Complete beginners start here!Getting started with the webGetting started with the webInstalling basic softwareWhat will your website look like?Dealing with filesHTML basicsCSS basicsJavaScript basicsPublishing your websiteHow the web worksHTML — Structuring the webIntroduction to HTMLIntroduction to HTMLGetting started with HTMLWhat's in the head? Metadata in HTMLHTML text fundamentalsCreating hy

                                                  Understanding client-side JavaScript frameworks - Learn web development | MDN
                                                • FFmpeg - Ultimate Guide | IMG.LY Blog

                                                  These last two sometimes are referred to as "8 bit" or "10 bit" respectively, especially when talking about videos. That means 8/10 bits per single color channel. TransparencySome image formats support an additional channel together with the red, green, and blue components: the alpha channel. The alpha channel determines how transparent a single pixel is, and it can have different bit-depths, it i

                                                    FFmpeg - Ultimate Guide | IMG.LY Blog
                                                  • Prompt Engineering

                                                    Date: March 15, 2023 | Estimated Reading Time: 21 min | Author: Lilian Weng Prompt Engineering, also known as In-Context Prompting, refers to methods for how to communicate with LLM to steer its behavior for desired outcomes without updating the model weights. It is an empirical science and the effect of prompt engineering methods can vary a lot among models, thus requiring heavy experimentation a

                                                    • Golang Mini Reference 2022: A Quick Guide to the Modern Go Programming Language (REVIEW COPY)

                                                      Golang Mini Reference 2022 A Quick Guide to the Modern Go Programming Language (REVIEW COPY) Harry Yoon Version 0.9.0, 2022-08-24 REVIEW COPY This is review copy, not to be shared or distributed to others. Please forward any feedback or comments to the author. • feedback@codingbookspress.com The book is tentatively scheduled to be published on September 14th, 2022. We hope that when the release da

                                                      • 傾いたL字型のフィリップス曲線 - himaginary’s diary

                                                        というNBER論文をエガートソンらが上げている。原題は「The Slanted-L Phillips Curve」で、著者はPierpaolo Benigno(ベルン大)、Gauti B. Eggertsson(ブラウン大)。 以下はその要旨。 A slanted-L curve is well-suited to represent the non-linearity of the celebrated Phillips curve. We show this using cross-country data of major industrialized economies since 2009, including the inflationary surge of the 2020s. At high unemployment rates, an increase in deman

                                                          傾いたL字型のフィリップス曲線 - himaginary’s diary
                                                        • A decent VS Code + Ruby on Rails setup

                                                          Setting up VS Code for Ruby on Rails development can be tricky, so I wrote this article to help. Plus, I've turned the extensions in this article into a VS Code Extension Pack. Use it to install all the extensions from this article in 1-click, to get started quickly with VS Code + Ruby on Rails. Table of Contents Using VS Code as a Ruby on Rails editor shouldn't be so hard! It's tricky deciding wh

                                                            A decent VS Code + Ruby on Rails setup
                                                          • Open sourcing Kube2Hadoop: Secure access to HDFS from Kubernetes

                                                            Open Source Open sourcing Kube2Hadoop: Secure access to HDFS from Kubernetes Co-authors: Cong Gu, Abin Shahab, Chen Qiang, and Keqiu Hu Editor's note: This blog has been updated. LinkedIn AI has been traditionally Hadoop/YARN based, and we operate one of the world’s largest Hadoop data lakes, with over 4,500 users and 500PB of data. In the last few years, Kubernetes has also become very popular at

                                                              Open sourcing Kube2Hadoop: Secure access to HDFS from Kubernetes
                                                            • ゲーム開発者たちが「ポリゴン数の失敗話」に花を咲かせる。“1600万ポリゴンで構成された3Dポップタルト”をきっかけに - AUTOMATON

                                                              ゲーム開発中に遭遇したパフォーマンスに関するユニークな失敗談を、開発者たちが共有している。ゲームづくりにおいては、失敗はつきもの。いろんな要素をつなぎあわせて作られており、ユーザーは完成したものを遊ぶことがほとんど。しかしその裏では、さまざまな失敗が生じており、それらを修正したり改善したりしながらゲームはできあがっていく。そうしたゲームの失敗に関する体験談を、開発者たちが共有している。ことの発端は、アーティストのdatbx氏がVRChat用素材としてTwitterに投稿したとある画像だ。 この「1600万ポリゴンで構成された3Dポップタルト」の画像は、実際にはVRChat用ではなく、モデラーのminwin3d氏が現実のポップタルトから3Dモデルを作成する過程でTikTokに投稿したもの。しかし、そのポリゴン数だけでもゲーム開発者を恐怖に陥れるには十分だったようだ。 ポリゴンとは3Dモデルを

                                                                ゲーム開発者たちが「ポリゴン数の失敗話」に花を咲かせる。“1600万ポリゴンで構成された3Dポップタルト”をきっかけに - AUTOMATON
                                                              • Announcing Biome

                                                                We are happy to announce Biome, toolchain of the web. Biome is the official fork of Rome and it will continue to be Rome’s legacy. Biome is led and maintained by the same people that maintained Rome so far. Follow us: Github organization Official repository Official discord server Official twitter account I want to give you some background and context, which could help you to get why the core team

                                                                  Announcing Biome
                                                                • うそんこ文書アンソロジーに掲載された40作品のタイトルとその分類+α - 最後の短篇企鵝の剥製

                                                                  (これは深夜に書類仕事に追われているかわいそうなペンギン)『FAKES: An Anthology of Pseudo-Interviews, Faux-Lectures, Quasi-Letters, "Found" Texts, and Other Fraudulent Artifacts』(2012)というアンソロジーをだいたい読んだ。タイトルどおり、インタビューだの講義だの講演だの書評だのカタログだの手紙だの張り紙だの反省文だの説明書だの問題文だのとにかく、本来フィクションには用いられない、一定程度形式の定まっているテキストのパロディが40篇ほど収められている。日本でも去年SF界隈で『異常論文』(早川書房)が流行ったけれど、そういうのの範囲を更に拡張した欲張りなくくりです。 (アンソロの序文に掲載されているリスト。世界を手に入れようとしているのかな?)虚構手記文学や書簡体小説のよう

                                                                    うそんこ文書アンソロジーに掲載された40作品のタイトルとその分類+α - 最後の短篇企鵝の剥製
                                                                  • Learn x86-64 assembly by writing a GUI from scratch

                                                                    Published on 2023-05-31. Learn x86-64 assembly by writing a GUI from scratch Most people think assembly is only to be used to write toy programs for learning purposes, or to write a highly optimized version of a specific function inside a codebase written in a high-level language. Well, what if we wrote a whole program in assembly that opens a GUI window? It will be the hello world of the GUI worl

                                                                    • Unlocking the Power of JunoDB: PayPal’s Key-Value Store Goes Open-Source

                                                                      Today we are delighted to share JunoDB as an open-source project on Github, allowing others to benefit from our efforts to have an extremely scalable, secure and highly available NoSQL infrastructure. JunoDB is a distributed key-value store that plays a critical role in powering PayPal’s diverse range of applications. Virtually every core back-end service at PayPal relies on JunoDB, from login to

                                                                        Unlocking the Power of JunoDB: PayPal’s Key-Value Store Goes Open-Source
                                                                      • Buy Tadaforce 20mg Low Price - Where to Purchase Tadalafil Without Prescription - Ask Lesko and Friends

                                                                        Buy Tadaforce 20mg Low Price - Where to Purchase Tadalafil Without Prescription Tadaforce On Line Buying. 10Mg Tadaforce Online No Prescription High Quality Reviews. Best Place To Buy Tadaforce Without Prescription Online That Take Bitcoin Free* Delivery for Tadaforce! BUY TADAFORCE ONLINE! - CLICK HERE! tadaforce where order buy tadaforce online dc buy tadalafil 40 mg capsules buying tadaforce on

                                                                        • JavaScript component-level CPU costs

                                                                          Stoyan (@stoyanstefanov) is a Facebook engineer, former Yahoo!, writer ("JavaScript Patterns", "React: Up and Running"), speaker (JSConf, Velocity, Fronteers), toolmaker (Smush.it, YSlow 2.0) and a guitar hero wannabe. Let’s talk a bit about keeping tabs on how much CPU is consumed by an application’s JavaScript. And let’s frame the discussion around components – the atomic building blocks of the

                                                                            JavaScript component-level CPU costs
                                                                          • Getting started with Web Performance 🚀 - HTMHell

                                                                            by Alistair Shepherd published on Dec 14, 2023 Carefully observing websites in the wild As the murderous tortoises start to converge on Ryūji’s hideout, they pull out their phone. It’s a cheap, older device but it’s survived the toils of the tortoise-ageddon well so far. Thankfully the internet still exists, although a bit slower, so they’re able to search online for how to scare tortoises away. T

                                                                              Getting started with Web Performance 🚀 - HTMHell
                                                                            • It’s Time to Build | Andreessen Horowitz

                                                                              Every Western institution was unprepared for the coronavirus pandemic, despite many prior warnings. This monumental failure of institutional effectiveness will reverberate for the rest of the decade, but it’s not too early to ask why, and what we need to do about it. Many of us would like to pin the cause on one political party or another, on one government or another. But the harsh reality is tha

                                                                                It’s Time to Build | Andreessen Horowitz
                                                                              • The race to reconnect Tonga

                                                                                The race to reconnect Tonga How engineers will repair the undersea communications cable severed by the recent volcanic eruption A global map of undersea communication cables stretching across the Pacific Ocean, with China to the west and the U.S. to the east. The map shows the Tonga volcanic eruption and several cables running near the island nation. The South Pacific nation of Tonga was all but c

                                                                                  The race to reconnect Tonga
                                                                                • 4 Ways to Back Up Your Windows Computer to the Cloud

                                                                                  Cloud storage is convenient for data backups. But should you use Dropbox, Google Drive, OneDrive, or Crash Plan? We'll help you decide. If you don't back up your computer data, you need to start right now. Data loss horror stories are common; going without a backup just isn't worth the risk. Don't wait until you lose an entire thesis paper or irreplaceable family photos---start backing up today. T

                                                                                    4 Ways to Back Up Your Windows Computer to the Cloud