並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 27 件 / 27件

新着順 人気順

together synonymの検索結果1 - 27 件 / 27件

  • A Vim Guide for Advanced Users

    #Tools #Vim #MouselessA Vim Guide for Advanced UsersWelcome to the third part of this series aimed to help you unleash a power never seen on Earth using the Almighty Vim. We’ll see together in this article: Some nice keystrokes beginning with g.What ranges are and how to use them.The quickfix list and the location lists.The marvelous substitute command.The crazy useful :global (or :g) command.What

      A Vim Guide for Advanced Users
    • ネットの音楽オタクが選んだ2020年のベストトラック、ベストアルバムの詳細 - 音楽だいすきクラブ

      順位のまとめ、補足、おまけです。画像や文章を見たくない。スクロールが大変な方はこちらがおすすめです。 2020年のベストトラック 2020年のベストアルバム 国内トップ150アルバム 海外トップ150アルバム 2020年のベストトラック 1. 米津玄師「感電」 2. BTS「Dynamite」 3. GEZAN「東京」 4. 宇多田ヒカル「Time」 5. サニーデイ・サービス「春の風」 6. The 1975「Me & You Together Song」 7. The 1975「Guys」 8. 藤井風「優しさ」 9. 赤い公園「pray」 10. 折坂悠太「トーチ」 11. 舐達磨「BUDS MONTAGE」 12. 赤い公園「オレンジ」 13. KID FRESINO「Cats & Dogs (feat.カネコアヤノ)」 14. RYUTist「ALIVE」 15. あいみょん「裸

        ネットの音楽オタクが選んだ2020年のベストトラック、ベストアルバムの詳細 - 音楽だいすきクラブ
      • High throughput Fizz Buzz

        x86-64+AVX2 assembly language (Linux, gcc+gas) Build and usage instructions This program is most conveniently built using gcc. Save it as fizzbuzz.S (that's a capital S as the extension), and build using the commands gcc -mavx2 -c fizzbuzz.S ld -o fizzbuzz fizzbuzz.o Run as ./fizzbuzz piped into one command, e.g. ./fizzbuzz | pv > /dev/null (as suggested in the question), ./fizzbuzz | cat, or ./fi

          High throughput Fizz Buzz
        • New WebKit Features in Safari 14

          With the release of Safari 14 for macOS Big Sur, iPadOS 14, iOS 14, and watchOS 7, WebKit brings significant improvements to performance and privacy along with a host of new features for web developers. Take a look at all of the improvements WebKit is adding with the release of Safari 14. Safari Web Extensions This release brings support for Safari Web Extensions. They are a type of extension prim

          • Why Rust mutexes look like they do - Cliffle

            2022-03-31 Mutexes in C Mutexes in Rust Variations of the Rust mutex API and their problems Moving guarded data outside the mutex Unlock is unsafe. Conclusions One of the common complaints I hear from systems programmers who try Rust is about mutexes, and specifically about the Rust Mutex API. The complaints usually go something like this: They don’t want the mutex to contain data, just a lock. Th

            • Functors and Monads For People Who Have Read Too Many "Tutorials" - iRi

              Celebrating Over 10 Years Of Being Too Lazy To Pick A Tagline Title is literally true. This may not be the best place to learn about these concepts for the first time, because I'm going to focus on knocking down the misconceptions about them. Then again, it may not be the worst place, for the same reason. I had promised myself I would not add to the pile of functor or monad "tutorials", but I've b

              • Typed Lisp, A Primer

                Typed Lisp, A Primer ⟨ Read as PDF or See the source ; Last modified on 2019-08-21 ⟩ Abstract Let's explore Lisp's fine-grained type hierarchy! We begin with a shallow comparison to Haskell, a rapid tour of type theory, try in vain to defend dynamic approaches, give a somewhat humorous account of history, note that you've been bamboozled —type's have always been there—, then go into technical deta

                • The Beautiful Dissociation of the Japanese Language

                  When I tell people around the world that I've been living in Japan for over a decade, many look both impressed and mystified at once. The place has a good reputation. Some folks are in awe at the temples and the gardens, others at the nature or the food. The extreme tidiness and civility of the local culture are the target of universal admiration. But many of those same people see the local langua

                    The Beautiful Dissociation of the Japanese Language
                  • Segelflygetkarlstad - Diskussionsforum

                    Europeiskt Apotek ordning Soma Klicka här - http://url-qr.tk/Soma - Gå till Apotek - 70% rabatt på kvalitetsmedicin. - Snabb leverans och fullständig anonymitet. - Bonuspiller och stora rabatter för varje beställning - Vi återbetalar om du inte är nöjd med produkten. ____________________________________________________________________________________________________________________________________

                    • Opaque constraint synonyms

                      The list of type class constraints in a function signature can sometimes get out of hand. In these situations, we can introduce a type synonym (thanks to ConstraintKinds) to avoid repetition. Say we want to group together the Show and Read constraints: type Serialise a = (Show a, Read a) Now Serialise a can be used anywhere where we require both constraints: roundtrip :: Serialise a => a -> a roun

                      • A Guide to the Terminal, Console, and Shell

                        #Tools #MouselessA Guide to the Terminal, Console, and ShellThis is a boring morning for every employee of MegaCorpMoneyMaker, the famous E-commerce. You are no exception: only dragging yourself out of your bed to crawl to your office required some superhuman efforts. Dave, your colleague developer, loudly explain to an intern what she should do to connect to one of the company’s Kubernetes cluste

                          A Guide to the Terminal, Console, and Shell
                        • Equity 101 for Software Engineers at Big Tech and Startups

                          A growing number of startups and Big Tech companies offer equity - stocks, options, and others - as part of software engineering compensation. However, I've noticed few engineers understand what these mean. When I was a hiring manager at Uber in Amsterdam, engineers usually focused far more on the base salary, taking little interest in equity. Several people only realized much later - sometimes at

                            Equity 101 for Software Engineers at Big Tech and Startups
                          • Ruby Tools : Cucumber

                            Gherkin uses a set of special keywords to give structure and meaning to executable specifications. Each keyword is translated to many spoken languages; in this reference we’ll use English. Most lines in a Gherkin document start with one of the keywords. Comments are only permitted at the start of a new line, anywhere in the feature file. They begin with zero or more spaces, followed by a hash sign

                            • How I code without service objects - Code with Jason

                              What service objects are Service objects and Interactors are fashionable among Rails developers today. I can’t speak for everyone’s motives but the impression I get is that service objects are seen as a way to avoid the “fat models” you’re left with if you follow the “skinny controllers, fat models” guideline. If your models are too fat you can move some of their bulk to some service objects to th

                                How I code without service objects - Code with Jason
                              • How Python Asyncio Works: Recreating it from Scratch

                                How Python Asyncio Works: Recreating it from Scratch Posted on May 6, 2024 Right now, asyncio is one of the trendier topics in Python, and rightfully so – It’s a great way to handle I/O-bound programs! When I was learning about asyncio, It took me a while to understand how it actually worked. But later, I came to find out that it’s basically just a really nice layer on top of Python Generators. In

                                  How Python Asyncio Works: Recreating it from Scratch
                                • How to rebuild social media on top of RSS

                                  On a couple of occasions I have described my Grand Vision For How Social Media Ought To Be, which is roughly that there should be a bunch of different: publishing services, like Substack and Ghost reading apps, like Gmail and Matter community platforms, like Slack and Discord and we should look for ways to make these reading, publishing, and community services all play nicely together. I'm calling

                                    How to rebuild social media on top of RSS
                                  • xv6: a simple, Unix-like teaching operating system

                                    xv6: a simple, Unix-like teaching operating system Russ Cox Frans Kaashoek Robert Morris September 6, 2021 2 Contents 1 Operating system interfaces 9 1.1 Processes and memory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 1.2 I/O and File descriptors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 1.3 Pipes . . . . . . . . . . . . . . . . . . . . . . . . . .

                                    • Scott’s Supreme Quantum Supremacy FAQ!

                                      The Blog of Scott Aaronson If you take nothing else from this blog: quantum computers won't solve hard problems instantly by just trying all solutions in parallel. You’ve seen the stories—in the Financial Times, Technology Review, CNET, Facebook, Reddit, Twitter, or elsewhere—saying that a group at Google has now achieved quantum computational supremacy with a 53-qubit superconducting device. Whil

                                        Scott’s Supreme Quantum Supremacy FAQ!
                                      • Awesome ChatGPT Prompts

                                        🧠 Awesome ChatGPT Prompts Be my sponsor and your logo will be here and prompts.chat! Welcome to the “Awesome ChatGPT Prompts” repository! This is a collection of prompt examples to be used with the ChatGPT model. The ChatGPT model is a large language model trained by OpenAI that is capable of generating human-like text. By providing it with a prompt, it can generate responses that continue the co

                                        • Release pandoc 3.0 · jgm/pandoc

                                          Click to expand changelog Split pandoc-server, pandoc-cli, and pandoc-lua-engine into separate packages (#8309). Note that installing the pandoc package from Hackage will no longer give you the pandoc executable; for that you need to install pandoc-cli. Pandoc now behaves like a Lua interpreter when called as pandoc-lua or when pandoc lua is used (#8311, Albert Krewinkel). The Lua API that is avai

                                            Release pandoc 3.0 · jgm/pandoc
                                          • Digital forensics - Wikipedia

                                            Digital forensics (sometimes known as digital forensic science) is a branch of forensic science encompassing the recovery, investigation, examination, and analysis of material found in digital devices, often in relation to mobile devices and computer crime.[1][2] The term "digital forensics" was originally used as a synonym for computer forensics but has expanded to cover investigation of all devi

                                              Digital forensics - Wikipedia
                                            • Forbidden Haskell Types

                                              Sometimes, writing Haskell is like having an argument with the compiler. You give it your reasoning, and it checks it over for flaws. And if it thinks it finds one, it will tell you all about it. You then have to look over what it told you, and figure out exactly what its complaint is. Did I just express myself badly? Or am I actually wrong? Or, very occasionally, the compiler is just being petula

                                                Forbidden Haskell Types
                                              • Statement Against Stephanie Kelton's Meeting With the Far Right in Japan

                                                Democratic Socialists of America's Libertarian Socialist Caucus The Libertarian Socialist Caucus (LSC) of the Democratic Socialists of America (DSA) aspires to create a socialist society freed from all forms of hierarchy and domination. We see fascism as the ultimate manifestation of hierarchy, domination, and authoritarianism, and our commitment to antifascist organizing is an outgrowth of our le

                                                  Statement Against Stephanie Kelton's Meeting With the Far Right in Japan
                                                • Linear-time parser combinators

                                                  My birthday just passed, and to relax I wrote a parser combinator library. Over the last few years, I have worked quite a bit with Ningning Xie and Jeremy Yallop on parser combinators, which has led to a family of parser combinators which have optimal linear-time performance in theory, and which are many times faster than lex+yacc in practice. But these use advanced multistage programming techniqu

                                                  • Ethics: An Interview with ChatGPT

                                                    Artificial Intelligence has been a buzzword for quite some time, and for good reasons. However, OpenAI’s ChatGPT has become the talk of every town in recent months. While more tech-savvy people would use it for improved productivity levels, the masses might use it just for searches. People have already been talking about it as a threat to search engines. Well, Google, particularly because Google h

                                                      Ethics: An Interview with ChatGPT
                                                    • 19_3.eps

                                                      The Haskell School of Music — From Signals to Symphonies — Paul Hudak Yale University Department of Computer Science Version 2.4 (February 22, 2012) i The Haskell School of Music — From Signals to Symphonies — Paul Hudak Yale University Department of Computer Science New Haven, CT, USA Version 2.4 (February 22, 2012) Copyright c � Paul Hudak January 2011 All rights reserved. No part of this public

                                                      • MySQL :: The MySQL 8.0.17 Maintenance Release is Generally Available

                                                        The MySQL Development team is very happy to announce that MySQL 8.0.17 is now available for download at dev.mysql.com. In addition to bug fixes there are a few new features added in this release.  Please download 8.0.17 from dev.mysql.com or from the MySQL  Yum,  APT, or SUSE repositories. The source code is available at GitHub. You can find the full list of changes and bug fixes in the 8.0.17 Rel

                                                        1