投稿時間:2023-06-09 11:18:14 RSSフィード2023-06-09 11:00 分まとめ(23件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… InstagramのTwitter対抗サービスはこんな感じ − 新たな画像が流出 https://taisy0.com/2023/06/09/172796.html instagram 2023-06-09 01:34:13
ROBOT ロボスタ バーチャルヒューマン「imma」が海外のファッション誌で表紙を飾る!計36ページのインタビューを含む特集で掲載 https://robotstart.info/2023/06/09/imma-on-harpersbazaar-taiwan.html 2023-06-09 01:37:09
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 2023年の夏ボーナス、4割弱で増額 最も「景気がいい」業界は? 帝国データバンク調べ https://www.itmedia.co.jp/business/articles/2306/09/news093.html itmedia 2023-06-09 10:24:00
TECH Techable(テッカブル) 「未来のデータサイエンス コンテスト」プレゼン大会、最優秀賞を獲得したのは? https://techable.jp/archives/210816 rising 2023-06-09 01:00:15
python Pythonタグが付けられた新着投稿 - Qiita なぜfrom matplotlib import pyplot as pltではなく、import matplotlib.pyplot as pltなのか https://qiita.com/Tetsu27/items/6599617904294104b2a5 importpyplotasplt 2023-06-09 10:24:31
Ruby Rubyタグが付けられた新着投稿 - Qiita RubyでAtCoder ABC247(A, B, C, D)を解いてみた https://qiita.com/shoya15/items/2b9394d904639f55ab15 atcoder 2023-06-09 10:40:43
Git Gitタグが付けられた新着投稿 - Qiita Githubのプライベートリポジトリのissueやプルリクに添付した画像はどこまで公開されるのか? https://qiita.com/naka_kyon/items/a67947a0ca3f631475e7 github 2023-06-09 10:56:56
技術ブログ Developers.IO TerraformのCDに使用できるツールをまとめてみた https://dev.classmethod.jp/articles/terraform-deploy-pipeline-tool/ terraform 2023-06-09 01:36:04
技術ブログ Yahoo! JAPAN Tech Blog iOSの最新知見を共有!「Extended Tokyo - WWDC2023」を開催しました! https://techblog.yahoo.co.jp/entry/2023060930425081/?cpt_n=BlogFeed&cpt_m=lnk&cpt_s=rss extendedtokyowwdc 2023-06-09 11:00:00
海外TECH DEV Community Rust 101: Write, Build, and Debug Your First Program https://dev.to/philipjohnbasile/rust-101-write-build-and-debug-your-first-program-42o9 Rust Write Build and Debug Your First Program Step Installing RustRust can be installed from the official website using rustup a command line tool for managing Rust versions and associated tools Here s how you can install Rust on various operating systems On Unix based systems like Linux and macOS Open a terminal and enter the following command curl proto https tlsv sSf shOn Windows Download and run rustup init exe from the rustup website Then follow the onscreen instructions Rustup will install the latest stable version of Rust The installation also includes cargo Rust s package manager and other essential tools Step Verifying the InstallationYou can verify your installation by reopening your terminal or command prompt on Windows and running rustc versionYou should see the Rust version number commit hash and commit date Step Writing the Hello World ProgramCreate a new directory for your Rust program navigate into it and then create a new file called main rs mkdir hello worldcd hello worldtouch main rsThen open main rs in your preferred text editor and enter the following code fn main println Hello World This program defines a function named main that has no parameters and returns no data main is a special function in Rust it s always the first code that runs in every executable Rust program The println macro prints the string Hello World to the screen Step Compiling and Running the ProgramYou can compile your Rust program using rustc the Rust compiler and then run it rustc main rs mainWhen you run the rustc command the Rust compiler reads your program translates it to instructions that your computer understands and outputs it as an executable binary The main command runs the generated executable You should see Hello World printed to your terminal Step Building and Running with CargoRust s package manager cargo also provides functionality to build your project To use cargo first create a new project cargo new hello world cargocd hello world cargoThis creates a new directory called hello world cargo initializes a new Git repository and generates a simple Hello World program Open src main rs in the hello world cargo directory You should see the Hello World program You can build and run the program using cargo cargo runThis command compiles your program and runs it in one step To compile the program without running it you can use cargo buildThis will create an executable file in target debug hello world cargo that you can run To compile the program for release with optimizations you can use cargo build releaseThis will create an optimized executable file in target release hello world cargo that you can run You ve installed Rust written a simple program and learned how to compile and run it both directly and using cargo Rust s package manager Let s go one step further Step Debugging the ProgramDebugging is a crucial part of developing software and Rust provides tools to help with this process For a simple program like Hello World there s not much to debug However it s still useful to know how to debug a Rust program On Unix like systems you can use a debugger like gdb or lldb Rust programs are compatible with these debuggers For example to debug your Hello World program with gdb you would do the following First compile your program with debug information rustc g main rsThen run the program under the debugger gdb mainOnce you re in gdb you can use commands like run to start your program break to set breakpoints and continue to continue running the program after hitting a breakpoint For Windows users you can use the debugger that comes with Microsoft Visual Studio The process is a bit more graphical and outside the scope of a simple command line tutorial Step Running the Final BuildWhen you re ready to compile your program for a final release you can use cargo build release as previously explained This command tells cargo to optimize your program resulting in a slower compile time but faster execution time The release build of your Hello World program will be located in target release To run the release build navigate to the target release directory and run the program cd target release hello world cargoYou should see Hello World printed to your terminal This is the final optimized build of your program ready to be distributed I hope this guide has helped you understand how to get started with Rust from installation to running a final build 2023-06-09 01:46:47
海外TECH DEV Community Easy React Infinite Scroll👌 https://dev.to/apestein/easy-react-infinite-scroll-59gc Easy React Infinite Scroll IntroductionI had a hard time implementing a react infinite scroll feature so I decided to make an npm package to make it super simple If you have ever tried to implement a react infinite scroll feature you might have seen react infinite scroll component and react finite scroller The problem with these packages are They are large which makes them hard to customize Written as class component also hard to customize Uses the event listener on the scroll event which is not performant Mine uses the modern intersection observer API Packagebetter react infinite scroll Install or just copy and paste import React useEffect useRef from react interface InfiniteScrollProps extends React ComponentPropsWithRef lt div gt fetchNextPage gt any hasNextPage boolean loadingMessage React ReactNode endingMessage React ReactNode export default function InfiniteScroller props InfiniteScrollProps const fetchNextPage hasNextPage loadingMessage endingMessage children rest props const observerTarget useRef null useEffect gt const observer new IntersectionObserver entries gt if entries isIntersecting void fetchNextPage threshold if observerTarget current observer observe observerTarget current return gt if observerTarget current observer unobserve observerTarget current observerTarget return lt div rest gt lt ul gt children lt ul gt lt div ref observerTarget gt lt div gt hasNextPage amp amp loadingMessage hasNextPage amp amp endingMessage lt div gt How to useimport InfiniteScroller from better react infinite scroll return lt InfiniteScroller fetchNextPage fetchNextPage hasNextPage true loadingMessage lt p gt Loading lt p gt endingMessage lt p gt The beginning of time lt p gt gt elements map el gt lt li key el id gt el lt li gt lt InfiniteScroller gt Full example with tRPC and React Query TanStack Query import InfiniteScroller from better react infinite scroll if using with tRPCconst data fetchNextPage hasNextPage api main getAll useInfiniteQuery limit getNextPageParam lastPage gt lastPage nextCursor if using with React Query TanStack const data fetchNextPage hasNextPage useInfiniteQuery queryKey projects queryFn fetchProjects getNextPageParam lastPage pages gt lastPage nextCursor function aggregatePosts const pages data pages const posts pages reduce prev current gt const combinedPosts prev posts concat current posts const shallowCopy prev shallowCopy posts combinedPosts return shallowCopy posts return posts return lt gt lt InfiniteScroller fetchNextPage fetchNextPage hasNextPage hasNextPage loadingMessage lt p gt Loading lt p gt endingMessage lt p gt The beginning of time lt p gt gt aggregatePosts map post gt lt li key post id gt post content lt li gt lt InfiniteScroller gt lt gt tRPC docsReact Query docsDemo If you find this useful please star this repo on Github It s my first NPM package Also follow me on Twitter for hot takes 2023-06-09 01:28:29
海外TECH DEV Community Developer productivity with Github Codespaces https://dev.to/jonoyeong/developer-productivity-with-github-codespaces-jpb Developer productivity with Github CodespacesDuring my time at Shopify I had the opportunity to work with a cloud development environment and I was sold Since then I set out trying to recreate a similar experience for my personal development Enter Github Codespaces I d like to share my thoughts on using Codespaces and why I believe it will greatly benefit developer productivity Exploring Codespaces My MotivationsThere are a couple of reasons why I decided to explore GitHub Codespaces Escape from Bare Metal Setup I m tired of installing and managing specific versions of Ruby Node Postgresql across my various projects Onboarding Developers one of my aspirations is to run my own company I wanted to explore how cloud development environments like Codespaces could facilitate the smooth onboarding of new engineers The Github Codespaces WorkflowFirstly install the Github CLI tool Being able to use the terminal over the browser has significantly streamlined my experience Once authenticated with the Github CLI my workflow is as follows Creating a Codespace Initially I needed to create a Codespace Note that if you cloned a project and you re in that folder the Github CLI tool will use that project as the defaultgh codespace createGetting to Work To start working on my application I ran the following command selecting the Codespace I had just created There s a short delay as the environment is being set up gh codespace codeAstro Aside Since I m running the Codespace for my Astro site I made an update to the dev command in the package json file astro dev hostThis configuration binds the Astro local server to any IP allowing proper connection when Codespace forwards the localhost port Codespace Logging I also experimented with Dotfiles for my Codespace which customize the Codespace developer environment The Codespace logs proved invaluable for debugging my changes as the Codespace started gh codespace logs Initial ConsiderationsBased on my early experience here are a few considerations regarding Codespaces Overkill for Simple Projects Codespaces is overkill for simple projects like my Astro blog Given the minimal version dependencies and longer startup time compared to setting up my Astro project directly it doesn t give that much benefit Treat Codespaces as Ephemeral It s important to treat Codespaces as ephemeral environments That means commit often Any uncommitted changes will be lost when the Codespace is destroyed which occurs by default every days The Untapped PotentialI m totally bought into the idea of cloud development environments Github Codespace is one option there s also others such as Gitpod Imagine this situation you re starting a new job excitedly setting up a fresh codebase only to encounter a mysterious undocumented error You turn to your onboarding buddy for help They speak the dreaded words weird works on my machine A response that leaves you navigating a labyrinth of debugging all by your lonesome Okay I m being a little dramatic but we ve all experienced these works on my machine moments that can send you spiraling With a cloud developer environment like Codespaces someone can get their project up and running in minutes rather then days Think about the time and headache saved These environments can be used for more then onboarding too You could use them as developer previews sharing a URL of your app running in the Codespace so anyone can test your changes While I haven t found a project to fully utilize Codespaces yet I m psyched to keep exploring it Stay tuned I ll keep this post updated 2023-06-09 01:27:01
金融 ニッセイ基礎研究所 年金額は2023年度に約2%の増額だが、実質的には▲0.6%の目減り-2023年度の年金額と2024年度以降の見通し(3) https://www.nli-research.co.jp/topics_detail1/id=75056?site=nli さらに年度の実質賃金上昇により、歳以上の改定率が初めて歳以下より低い値に概況年の物価上昇を反映し、歳以上の改定率が初めて歳以下より低い値に詳細年度の賃金上昇が、年度平均の実質賃金上昇率を牽引年金財政健全化のための調整ルール調整率が繰越分を含めてすべて反映概況本来の改定率が大幅なプラスとなったため、調整率が繰越分を含めてすべて反映詳細加入者増加率は、年度はマイナスだが、年度のプラスにより、年平均はゼロ総括物価変動を早期に反映する仕組みと賃金や加入者の変動を平準化する仕組みが奏功。 2023-06-09 10:56:22
金融 日本銀行:RSS (日銀レビュー)2022年を中心とした最近の個人FX取引 http://www.boj.or.jp/research/wps_rev/rev_2023/rev23j06.htm 最近 2023-06-09 10:30:00
海外ニュース Japan Times latest articles No. 1 Iga Swiatek sets up clash against Karolina Muchova in French Open final https://www.japantimes.co.jp/sports/2023/06/09/tennis/swiatek-muchova-reach-final/ No Iga Swiatek sets up clash against Karolina Muchova in French Open finalThe year old Pole who improved her record in Paris to is bidding to become the first woman to successfully defend the title since Justine 2023-06-09 10:36:19
海外ニュース Japan Times latest articles Miyu Kato wins French Open mixed doubles title to end tumultuous stay in Paris on high note https://www.japantimes.co.jp/sports/2023/06/09/tennis/kato-french-open-win/ Miyu Kato wins French Open mixed doubles title to end tumultuous stay in Paris on high note I really want to thank everyone who has been supporting me she said The default was unfortunate but I could keep my head up and 2023-06-09 10:06:47
海外ニュース Japan Times latest articles Wi-Fi-enabled Tamagotchi headlines Tokyo Toy Show https://www.japantimes.co.jp/life/2023/06/09/digital/toy-convention-tokyo-2023/ companies 2023-06-09 10:11:27
ニュース BBC News - Home Donald Trump indicted over classified documents case https://www.bbc.co.uk/news/world-us-canada-65852062?at_medium=RSS&at_campaign=KARANGA miami 2023-06-09 01:23:20
ビジネス ダイヤモンド・オンライン - 新着記事 メタ、ツイッターに対抗するアプリを社内公開=関係筋 - WSJ発 https://diamond.jp/articles/-/324270 関係筋 2023-06-09 10:14:00
GCP Google Cloud Platform Japan 公式ブログ Beatrust: GKE Autopilot による自動運用でスケーラビリティの向上と運用負荷の大幅な削減に成功 https://cloud.google.com/blog/ja/topics/customers/beatrust-automated-operation-with-gke-autopilot/ 当初は我々のようなスタートアップがKubenetesを使いこなすことができるのかという不安もありましたが、結果的に小さな組織でも十分にKubernetesとそのエコシステムの恩恵を受けられるということが確認できました。 2023-06-09 02:00:00
ビジネス 東洋経済オンライン バーミヤン「2000円弱ちょい飲み」が秀逸だった 18時スタートですでに店内は盛況、割引も充実 | 外食 | 東洋経済オンライン https://toyokeizai.net/articles/-/677466?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2023-06-09 10:30:00
ニュース Newsweek 「食の安全保障」を脅かす「ゲリラ干ばつ」が1.5倍増・最新研究 https://www.newsweekjapan.jp/stories/world/2023/06/post-101844.php だが近年は気候変動の影響で、前触れなしで発生する「ゲリラ干ばつ」が世界的に急増している。 2023-06-09 10:35:08
GCP Cloud Blog JA Beatrust: GKE Autopilot による自動運用でスケーラビリティの向上と運用負荷の大幅な削減に成功 https://cloud.google.com/blog/ja/topics/customers/beatrust-automated-operation-with-gke-autopilot/ 当初は我々のようなスタートアップがKubenetesを使いこなすことができるのかという不安もありましたが、結果的に小さな組織でも十分にKubernetesとそのエコシステムの恩恵を受けられるということが確認できました。 2023-06-09 02:00:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)