並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 67件

新着順 人気順

back to workの検索結果1 - 40 件 / 67件

  • We're forking Flutter. This is why.

    Over the years, Flutter has attracted millions of developers who built user interfaces across every platform. Flutter began as a UI toolkit for mobile - iOS and Android, only. Then Flutter added support for web. Finally, Flutter expanded to Mac, Windows, and Linux. Across this massive expansion of scope and responsibility, the Flutter team has only marginally increased its size. To help expand Flu

      We're forking Flutter. This is why.
    • ついに来るのか!?拡散言語モデル|shi3z

      我々が単に「言語モデル」といった場合、それはTransformerモデルを指す。Transformerモデルは、ChatGPTやGemini、Claude-3、Command-R+などで使われている。 最近はMambaのような状態ステートマシンの言語モデルも出てきた。そしてもしかしたら今後はここに、拡散ディフュージョンモデルが加わるのかもしれない。 拡散モデルで有名なのは、StableDiffusionで、主に画像生成に使う。 実は画像生成は最初はTransformerだった。OpenAIのDALL-Eは、Transformerとして画像生成を行なった。しかしTransformerには明らかな欠点があり、それはあまりにも膨大な計算量が必要なことだ。 Transformerの事前学習プリトレーニングには、今でも天文学的な計算資源が必要だし、微調整ファインチューニングにも今なお膨大な計算機が必

        ついに来るのか!?拡散言語モデル|shi3z
      • Rewrite it in Rails

        01 Nov, 2024 In 2022 I started building an application for creating Customs declarations. After evaluating some options and writing code in various programming languages and frameworks such as .NET/F#, Go, Rust, React, I eventually decided to write it in Ruby on Rails. Why? Because I was already familiar with Rails and because of that I could literally go 10x faster than I was with any of the afor

          Rewrite it in Rails
        • JavaScript Best Practices | The WebStorm Blog

          JavaScript is undoubtedly the most used programming language in the world and is hugely influential on one of the largest technologies we have all come to rely on – the internet. With this power comes great responsibility, and the JavaScript ecosystem has been rapidly evolving, making it incredibly hard to keep up with the latest JavaScript best practices. In this blog post, we will cover several

            JavaScript Best Practices | The WebStorm Blog
          • We’re leaving Kubernetes - Blog

            Kubernetes seems like the obvious choice for building out remote, standardized and automated development environments. We thought so too and have spent six years invested in making the most popular cloud development environment platform at internet scale. That’s 1.5 million users, where we regularly see thousands of development environments per day. In that time we’ve found that Kubernetes is not

              We’re leaving Kubernetes - Blog
            • State of CSS 2024

              Let me make a prediction: we'll look back at 2024 as the turning point between “CSS Classic” and “New CSS”. CSS Classic is how most of us have been writing CSS for years: using a limited set of features, and compensating for the language's limitations using outside tools such as libraries, pre- and post-processors, and strict methodologies. New CSS on the other hand is an approach that embraces Su

                State of CSS 2024
              • Programming Languages That Blew My Mind

                I’ve been a programmer since the age of 8, and some kind of developer for most of my life. Throughout my life as a coder, both hobbyist and professional, I’ve learnt plenty of programming languages that felt like cookie-cutter clones of each other, but also a few programming languages that changed the way I looked at programming, sometimes even at thinking. Ranking by order in which I discovered t

                  Programming Languages That Blew My Mind
                • System Magazine

                  ‘‘Let me tell you a story I’ve never told before.’’ Very few designers can be talked about, in awe, as revolutionaries who changed the course of contemporary fashion. Yohji Yamamoto is one. Since arriving in Paris from Tokyo in 1981 alongside Rei Kawakubo, and after taking the world by storm with layered, twisted, monochromatic creations that defied Western notions of beauty and radically subverte

                    System Magazine
                  • Fossil: CRLF Is Obsolete And Should Be Abolished

                    Update 2024-10-14 It seems that (1) there is still more software in circulation that depends on archaic CRLF line endings than I originally thought and (2) many people do not share my enthusiasm for creating a CRLF-free world. Alas. This makes me sad, but it is what it is. Thanks to everyone who was willing to give the idea a test run. It almost worked! I hereby withdraw the proposal and have reve

                    • Weird Lexical Syntax

                      I just learned 42 programming languages this month to build a new syntax highlighter for llamafile. I feel like I'm up to my eyeballs in programming languages right now. Now that it's halloween, I thought I'd share some of the spookiest most surprising syntax I've seen. The languages I decided to support are Ada, Assembly, BASIC, C, C#, C++, COBOL, CSS, D, FORTH, FORTRAN, Go, Haskell, HTML, Java,

                        Weird Lexical Syntax
                      • Async Rust in Three Parts

                        2024 October 23 Introduction (you are here) Threads Async Important Mistakes Part One: Futures Part Two: Tasks Part Three: IO Async/await, or "async IO", is a new-ish​Rust added async/await in 2019. For comparison, C# added it in 2012, Python in 2015, JS in 2017, and C++ in 2020. language feature that lets our programs do more than one thing at a time. It's sort of an alternative to multithreading

                        • C-Based Toolchain Hardening - OWASP Cheat Sheet Series

                          Introduction Index Alphabetical Index ASVS Index MASVS Index Proactive Controls Index Top 10 Cheatsheets C-Based Toolchain Hardening Cheat Sheet¶ Introduction¶ C-Based Toolchain Hardening is a treatment of project settings that will help you deliver reliable and secure code when using C, C++ and Objective C languages in a number of development environments. This article will examine Microsoft and

                          • OpenZFS deduplication is good now and you shouldn't use it

                            OpenZFS 2.3.0 will be released any day now, and it includes the new “Fast Dedup” feature. My team at Klara spent many months in 2023 and 2024 working on it, and we reckon it’s pretty good, a huge step up from the old dedup as well as being a solid base for further improvements. I’ve been watching various forums and mailing lists since it was announced, and the thing I kept seeing was people saying

                              OpenZFS deduplication is good now and you shouldn't use it
                            • Achieve a high-speed InnoDB purge on Amazon RDS for MySQL and Amazon Aurora MySQL | Amazon Web Services

                              AWS Database Blog Achieve a high-speed InnoDB purge on Amazon RDS for MySQL and Amazon Aurora MySQL Purge is a housekeeping operation in a MySQL database. The InnoDB storage engine relies on it to clean up undo logs and delete-marked table records that are no longer needed for multiversion concurrency control (MVCC) or rollback operations. While our applications pursue a database design that aims

                                Achieve a high-speed InnoDB purge on Amazon RDS for MySQL and Amazon Aurora MySQL | Amazon Web Services
                              • The Ultimate Guide to Error Handling in Python

                                I often come across developers who know the mechanics of Python error handling well, yet when I review their code I find it to be far from good. Exceptions in Python is one of those areas that have a surface layer that most people know, and a deeper, almost secret one that a lot of developers don't even know exists. If you want to test yourself on this topic, see if you can answer the following qu

                                  The Ultimate Guide to Error Handling in Python
                                • Lessons learned from a successful Rust rewrite

                                  Table of contents What worked well What did not work so well I am still chasing Undefined Behavior Miri does not always work and I still have to use Valgrind I am still chasing memory leaks Cross-compilation does not always work Cbindgen does not always work Unstable ABI No support for custom memory allocators Complexity Conclusion Discussions: /r/rust, /r/programming, HN, lobsters I have written

                                  • The Abe Assassination, the Unification Church, and Local Media: A Case Study of Journalism in Toyama Prefecture - The Asia-Pacific Journal: Japan Focus

                                    Abstract: This article chronicles how two commercial TV stations in Toyama Prefecture exposed deep links between politicians and the Unification Church. It discusses how a local community of investigative journalists with close ties to adherents and politicians revealed ways the church and lawmakers cooperated on electioneering and policymaking, and it analyzes how their exposés were taken up in n

                                      The Abe Assassination, the Unification Church, and Local Media: A Case Study of Journalism in Toyama Prefecture - The Asia-Pacific Journal: Japan Focus
                                    • Announcing v3 | Chakra UI

                                      Today, we're excited to announce the long-awaited release of Chakra UI v3. The feedback for Chakra v3 has been incredible and we appreciate those who took the time to test and catch bugs. Chakra v3 is a complete rewrite of Chakra to enhance it's performance, speed and consistency across components. We've also added over 25 new components, and that's just the beginning. Credits Before giving you a

                                        Announcing v3 | Chakra UI
                                      • Rustls Outperforms OpenSSL and BoringSSL

                                        ISRG has been investing heavily in the Rustls TLS library over the past few years. Our goal is to create a library that is both memory safe and a leader in performance. Back in January of this year we published a post about the start of our performance journey. We've come a long way since then and we're excited to share an update on Rustls performance today. What is Rustls?Rustls is a memory safe

                                          Rustls Outperforms OpenSSL and BoringSSL
                                        • Introduction - Steve's Jujutsu Tutorial

                                          Introduction Hi there, I'm Steve. This is a tutorial for Jujutsu—a version control system. This tutorial exists because of a particular quirk of mine: I love to write tutorials about things as I learn them. This is the backstory of TRPL, of which an ancient draft was "Rust for Rubyists." You only get to look at a problem as a beginner once, and so I think writing this stuff down is interesting. It

                                          • CSS nesting improves with CSSNestedDeclarations  |  Articles  |  web.dev

                                            CSS nesting improves with CSSNestedDeclarations Stay organized with collections Save and categorize content based on your preferences. Published: Oct 8, 2024 To fix some weird quirks with CSS nesting, the CSS Working Group resolved to add the CSSNestedDeclarations interface to the CSS Nesting Specification. With this addition, declarations that come after style rules no longer shift up, among some

                                              CSS nesting improves with CSSNestedDeclarations  |  Articles  |  web.dev
                                            • Developing a computer use model

                                              Claude can now use computers. The latest version of Claude 3.5 Sonnet can, when run through the appropriate software setup, follow a user’s commands to move a cursor around their computer’s screen, click on relevant locations, and input information via a virtual keyboard, emulating the way people interact with their own computer. We think this skill—which is currently in public beta—represents a s

                                                Developing a computer use model
                                              • SSH Remoting is Here! - Zed Blog

                                                For people with large codebases, programming on a laptop can be overwhelming. Your fans are constantly spinning, the language server is continually out of memory, and rebuilds take forever... Now, in Zed, you can open a project on any machine you can SSH into. The UI runs fully locally to give you 120 frames per second of perfectly configured graphics, but with all the gubbins: language servers, t

                                                  SSH Remoting is Here! - Zed Blog
                                                • Dario Amodei — Machines of Loving Grace

                                                  Machines of Loving Grace1 How AI Could Transform the World for the Better October 2024 I think and talk a lot about the risks of powerful AI. The company I’m the CEO of, Anthropic, does a lot of research on how to reduce these risks. Because of this, people sometimes draw the conclusion that I’m a pessimist or “doomer” who thinks AI will be mostly bad or dangerous. I don’t think that at all. In fa

                                                    Dario Amodei — Machines of Loving Grace
                                                  • 2nd Anniversary Live & 初コピブレ♪ - つるひめの日記

                                                    先月末と今月の連休中は、こちらのイベントに参加してきました。 9月29日(日)「越谷アビーロード・移転2周年記念LIVE」 「大奥別館」と「The Tumbling beat! 」の二つのバンドに出演しました。 今年4月に、所沢のライブハウスで共演した、「ストレイ・キャッツ」のバンドのギタリストさん主催で、その方からお誘い頂きました。 昨年の移転1周年記念のときも、「アビーローズ」というバンドで出演したのでした。このときは、ビートルズイベントでしたが、今回はオリジナルバンドなどバラエティに富んでいて、8バンド出演という長丁場でした。なので、時間の都合でサウンドチェックもなく、ぶっつけ本番でした。 私たちの「大奥別館」は3番手。 【セットリスト】 Please Please Me HeIp ! Drive My Car Ticket To Ride Everybody's  Trying T

                                                      2nd Anniversary Live & 初コピブレ♪ - つるひめの日記
                                                    • New Architecture is here · React Native

                                                      React Native 0.76 with the New Architecture by default is now available on npm! In the 0.76 release blog post, we shared a list of significant changes included in this version. In this post, we provide an overview of the New Architecture and how it shapes the future of React Native. The New Architecture adds full support for modern React features, including Suspense, Transitions, automatic batchin

                                                        New Architecture is here · React Native
                                                      • Combining Machine Learning and Homomorphic Encryption in the Apple Ecosystem

                                                        Combining Machine Learning and Homomorphic Encryption in the Apple Ecosystem At Apple, we believe privacy is a fundamental human right. Our work to protect user privacy is informed by a set of privacy principles, and one of those principles is to prioritize using on-device processing. By performing computations locally on a user’s device, we help minimize the amount of data that is shared with App

                                                          Combining Machine Learning and Homomorphic Encryption in the Apple Ecosystem
                                                        • Why I’m skeptical of rewriting JavaScript tools in “faster” languages

                                                          I’ve written a lot of JavaScript. I like JavaScript. And more importantly, I’ve built up a set of skills in understanding, optimizing, and debugging JavaScript that I’m reluctant to give up on. So maybe it’s natural that I get a worried pit in my stomach over the current mania to rewrite every Node.js tool in a “faster” language like Rust, Zig, Go, etc. Don’t get me wrong – these languages are coo

                                                            Why I’m skeptical of rewriting JavaScript tools in “faster” languages
                                                          • AI Flame Graphs

                                                            Recent posts: 29 Oct 2024 » AI Flame Graphs 22 Jul 2024 » No More Blue Fridays 24 Mar 2024 » Linux Crisis Tools 17 Mar 2024 » The Return of the Frame Pointers 10 Mar 2024 » eBPF Documentary 28 Apr 2023 » eBPF Observability Tools Are Not Security Tools 01 Mar 2023 » USENIX SREcon APAC 2022: Computing Performance: What's on the Horizon 17 Feb 2023 » USENIX SREcon APAC 2023: CFP 02 May 2022 » Brendan

                                                            • Ghostty 1.0 is Coming

                                                              After nearly two years of development and private beta testing1, I’m excited to share that Ghostty 1.0 will be publicly released in December 2024 as an open-source project under the MIT license. In this blog post, I want to restate the broader goals of the Ghostty project and outline the specific goals for the 1.0 release. I have ambitious plans for Ghostty, but I also want to set clear expectatio

                                                              • Visual Studio Code October 2024

                                                                GitHub Pull Requests Version 0.100.0 of the GitHub Pull Requests extension adds Copilot integration: Use the @githubpr chat participant in the Chat view to search for issues, summarize issues/prs, and suggest fixes for issues. @githubpr uses a number of Language Model tools to accomplish this. There's also a new Notifications view that shows GitHub notifications, with an action to prioritize them

                                                                  Visual Studio Code October 2024
                                                                • GitHub - xjdr-alt/entropix: Entropy Based Sampling and Parallel CoT Decoding

                                                                  Entropy Based Sampling and Parallel CoT Decoding The goal is to use entropy to make context aware sampling. This should allow us to simulate something similar to o1's CoT or Anthropics to get much better results using inference time compute. This project is a research project and a work in process. Its comprised of an inference stack, the sampler, and a UI (future). Please reach out to me on X if

                                                                    GitHub - xjdr-alt/entropix: Entropy Based Sampling and Parallel CoT Decoding
                                                                  • Octoverse: AI leads Python to top language as the number of global developers surges

                                                                    Remember when people said AI would replace developers? Our data tells a different story. As AI rapidly expands, developers are increasingly building AI models into applications and engaging with AI projects on GitHub in large numbers. At the same time, we’re seeing an unprecedented number of developers join GitHub from across the globe, and many of these developers are contributing to open source

                                                                      Octoverse: AI leads Python to top language as the number of global developers surges
                                                                    • Sharing new research, models, and datasets from Meta FAIR

                                                                      Sharing new research, models, and datasets from Meta FAIR Today, Meta FAIR is publicly releasing several new research artifacts in support of our goal of achieving advanced machine intelligence (AMI) while also supporting open science and reproducibility.The work we’re sharing today includes Meta Segment Anything 2.1 (SAM 2.1), an update to our popular Segment Anything Model 2 for images and video

                                                                        Sharing new research, models, and datasets from Meta FAIR
                                                                      • Introducing Express v5: A New Era for Node.js Framework

                                                                        Ten years ago (July 2014) the Express v5 release pull request was opened, and now at long last it’s been merged and published! We want to recognize the work of all our contributors, especially Doug Wilson, who spent the last ten years ensuring Express was the most stable project around. Without his contributions and those of many others, this release could not have happened. Eight months ago we we

                                                                          Introducing Express v5: A New Era for Node.js Framework
                                                                        • Israeli attack on northern Gaza hints at retired general's "surrender or starve" plan for war

                                                                          Palestinians and aid groups suspect Israel is gradually adopting a new tactic in northern Gaza On Saturday morning, a message was posted on social media by the Israeli military’s Arabic spokesman warning people living in the ‘D5’ area of northern Gaza to move south. D5 is a square on the grid superimposed over maps of Gaza by the Israel Defense Forces (IDF). It is a block that is split into severa

                                                                            Israeli attack on northern Gaza hints at retired general's "surrender or starve" plan for war
                                                                          • The Unlikely Inventor of the Automatic Rice Cooker

                                                                            “Cover, bring to a boil, then reduce heat. Simmer for 20 minutes.” These directions seem simple enough, and yet I have messed up many, many pots of rice over the years. My sympathies to anyone who’s ever had to boil rice on a stovetop, cook it in a clay pot over a kerosene or charcoal burner, or prepare it in a cast-iron cauldron. All hail the 1955 invention of the automatic rice cooker! How the a

                                                                              The Unlikely Inventor of the Automatic Rice Cooker
                                                                            • Next.jsをやめて、Remixで技術ブログを作り替えた話 | カルキチブログ

                                                                              10ヶ月ぶりの更新です。 突然ではありますが、エンジニアになったばかりの時にNext.jsで構築した技術ブログをRemixでリプレイスしました。 Next.js全盛の今Next.jsを使うのをやめて、Remixにリプレイスした理由ですが、Remixを今後の自分の技術スタックの軸にしたいと考えたからです。 Remixについて Remix is a full stack web framework that lets you focus on the user interface and work back through web standards to deliver a fast, slick, and resilient user experience. 引用: https://remix.run ReactベースのフルスタックフレームワークGETリクエストはloaderで、GET以外

                                                                              • Japan plunged into political uncertainty after voters deliver dramatic defeat to longtime ruling party | CNN

                                                                                Japanese voters delivered a stinging rebuke to the country’s longtime ruling party in elections Sunday, plunging the world’s fourth largest economy into a rare period of political uncertainty. Japan’s Liberal Democratic Party, which has governed almost continuously since 1955, has lost its parliamentary majority in the powerful lower house for the first time in 15 years. Public anger and distrust

                                                                                  Japan plunged into political uncertainty after voters deliver dramatic defeat to longtime ruling party | CNN
                                                                                • Unsafe Rust Is Harder Than C

                                                                                  Or: The Most Expensive Linked List I’ve Ever Written Some of you already know the contents of this post, especially if you’ve written embedded or unsafe code in Rust. But I didn’t, so I thought it was useful to write down my experience as accurately as I can. Without further ado… Last year, I wrote Photohash, software to help me index my NAS and find duplicate photos with rotation-independent hash