投稿時間:2023-04-11 19:35:16 RSSフィード2023-04-11 19:00 分まとめ(40件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] Twitter Japanのアイコン、実はもともと“紅”色だった なぜ青じゃない? https://www.itmedia.co.jp/news/articles/2304/11/news178.html itmedianewstwitterjapan 2023-04-11 18:40:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 24年卒の学生が働きたい会社 3位「大和証券」、2位「日本生命」、1位は? https://www.itmedia.co.jp/business/articles/2304/11/news071.html itmedia 2023-04-11 18:34:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] クレベリン「空間のウイルス除去」根拠なし 大幸薬品に課徴金6億円 過去最高額 https://www.itmedia.co.jp/business/articles/2304/11/news177.html itmedia 2023-04-11 18:30:00
TECH Techable(テッカブル) 最大65W出力!小さくてもパワフルなPD充電器「square 65W 1C」発売 https://techable.jp/archives/203037 square 2023-04-11 09:00:11
python Pythonタグが付けられた新着投稿 - Qiita 【基礎知識】Python用ライブラリsqlite3について https://qiita.com/Soysoy11110000/items/1cc32ce45d0ba01b609e sqlite 2023-04-11 18:53:14
Git Gitタグが付けられた新着投稿 - Qiita soucetreeでクローンに失敗する https://qiita.com/vali/items/37b4c844105869ba628e soucetree 2023-04-11 18:29:09
技術ブログ Mercari Engineering Blog メルカリShopsを支えるMonorepo ML開発環境 https://engineering.mercari.com/blog/entry/20230411-sz-ml-devenv/ hellip 2023-04-11 11:00:03
技術ブログ Developers.IO AWS ParallelCluster ヘッドノードとコンピュートノードの IAM ロールに複数の IAM ポリシーをアタッチするコンフィグの記述方法 https://dev.classmethod.jp/articles/how-to-attach-multiple-iam-policies-to-aws-parallelcluster/ awsparallelcluster 2023-04-11 09:37:54
技術ブログ Developers.IO [レポート] モノリスかマイクロサービスか、その選択に迷っている人へ届けたい話 #devio_day1 #main https://dev.classmethod.jp/articles/20230411-developersio-day-one-monolithandmicroservices/ developer 2023-04-11 09:30:17
海外TECH DEV Community Theme toggle using Tailwind CSS in just 3 steps https://dev.to/shreyvijayvargiya/theme-toggle-using-tailwind-css-in-just-3-steps-1eij Theme toggle using Tailwind CSS in just steps Under the HoodLet s begin I want to add a dark white theme to my website what should I do That is how the story begins literally theme toggle on the websiteSo most of the websites use Tailwind CSS in React so let s begin with that only Step Append the theme classname to the root element of the application Basically the root div element of the application should contain the classname as the dark when a theme is dark and white when a theme is white import React from react const App gt lt div classname theme gt lt div gt Home lt div gt lt div gt export default App Step Store the current theme in local storage Add the dark theme CSS to the UI components as shown in the code example below import React from react const App gt const theme window localstorage get theme fetch theme from localstorage return lt div classname theme gt lt div gt lt button className dark bg gray bg gray gt lt button gt lt div gt append the dark theme and work is done lt div gt export default App Step Enable dark theme in Tailwind configurationGo to the tailwind config js file in the root directory if not available please create one with the same name append the below line or out it after purge keydarkMode class or media or class This will basically instruct tailwind to append the given class CSS present in the root of the element Tailwind CSS will provide a manual theme or by default white theme if the media value is provided ConclusionThat s it two steps and you can theme toggle in tailwind css application in fact in all the applications Below is the Github repository as the code sample enjoy it Code sampleDemoUntil next time have a good day peopleShreyiHateReading 2023-04-11 09:14:42
海外TECH DEV Community Never Use the WRONG Package Manager Again! https://dev.to/this-is-learning/never-use-the-wrong-package-manager-again-33ff Never Use the WRONG Package Manager Again npm or yarn what does this project use Or maybe it s pnpm Or Bun Well let s just use ni Is this a new package manager No no don t worry ni is a simple tool that will try to identify which package manager is in use in the current project and then run the corresponding command How does it work From the docs ni assumes that you work with lockfiles and you should Before it runs it will detect your yarn lock pnpm lock yaml package lock json bun lockb to know current package manager or packageManager field in your packages json if specified and runs the corresponding commands In case you were wondering if that weird package lock json file that appears to change unexpectedly on npm install is needed or not it indeed is DemoI recorded a short demo to show how cool this tool is you can watch it here InstallationAssuming you already have at least npm globally installed npm i g antfu ni UsageYou just opened a new project and you re ready to install the dependencies Just type ni and you re good to go In the video demo I show it in a real use case Supported commandsHere s a description of all currently supported commands In case something changes and this gets outdated you can always check the full list on the project s README ni Install dependenciesSame as npm install You can run it with no arguments to get the full dependencies or with a package name to install it nini reactYou can also set the D flag to install as a dev dependency ni D prettier nr Run scriptsSame as npm run You can run commands in your package json scripts nr startnr build nlx Download and execute a packageSame as npx nlx gitignore nodeFun fact it was originally called nx but then it was renamed to nix and then again to nlx to avoid confusion with other existing tools nu Upgrade dependenciesSame as npm upgrade Upgrades all your packages to the latest version nu nun Uninstall dependenciesSame as npm uninstall nun huskyThis will remove your package from package json and uninstall it from node modules nci Clean install dependenciesSame as npm ci This will remove your node modules folder and install all your dependencies again nci na Alias for the current managerSame as npm when you don t know you re using npm na run testIt will use the correct package manager to forward the command ConclusionAs an Open Source contributor it happens quite often to switch between projects that use different package managers This tool is a great way to avoid having to remember which one is used where Even if most of the time npm is the right one just typing ni or nr is faster anyway I hope you ll find this useful too Thanks for reading this article I hope you found it interesting I recently launched my Discord server to talk about Open Source and Web Development feel free to join Do you like my content You might consider subscribing to my YouTube channel It means a lot to me ️You can find it here Feel free to follow me to get notified when new articles are out Leonardo MontiniFollow I talk about Open Source GitHub and Web Development I also run a YouTube channel called DevLeonardo see you there 2023-04-11 09:09:37
Apple AppleInsider - Frontpage News Steve Jobs Archive releases 'Make Something Wonderful' ebook https://appleinsider.com/articles/23/04/11/steve-jobs-archive-releases-make-something-wonderful-ebook?utm_medium=rss Steve Jobs Archive releases x Make Something Wonderful x ebookA free collection of emails and conversations from the late Steve Jobs has been published with an introduction from his widow Laurene Powell Jobs Steve Jobs Archive The Steve Jobs Archive was launched by Powell Jobs Tim Cook and Jony Ive in September and the initially minimalist website regularly promised more to come As announced on April it s now published its first ebook Read more 2023-04-11 09:35:40
海外TECH Engadget Google Bard's new 'experiment updates' page lets you know what's new https://www.engadget.com/google-bards-new-experiment-updates-page-lets-you-know-whats-new-091039433.html?src=rss Google Bard x s new x experiment updates x page lets you know what x s newGoogle has called Bard an quot experimental conversational AI service quot since first announcing it earlier this year The company says it s constantly tweaking its models but without a central place to learn what s changed it can be hard to know what it s actually capable of In an attempt to be more open about Bard s development Google has created a new quot experiment updates quot page where anyone can find information on recent updates to Bard including new features and bug fixes So far each update posted includes a quot what quot and a quot why quot For the updates page itself Google says it was created so quot people will have an easy place to see the latest Bard updates for them to test and provide feedback quot nbsp Google added two other announcements in the same post The first one explains there are now additional search options when a person clicks quot Google it quot The other is an update to Bard s math and logic skills with Google explaining that Bard isn t always giving the right answers there ーsomething the company is attempting to fix This improvement comes shortly after Google switched Bard to a more advanced language model nbsp While the breakdowns are pretty short and vague as to exactly how Google is creating these updates it s definitely a start in the right direction for giving the public more insight into their thought process Plus at a time when both industry professionals and people in general are openly worrying about unregulated advancements in AI technology Google s transparency is likely to win them a few trust points This article originally appeared on Engadget at 2023-04-11 09:10:39
海外科学 NYT > Science As Mental Health Crisis Grows, More Doors Open to Care https://www.nytimes.com/2023/04/11/business/mental-health-addiction-care.html behavioral 2023-04-11 09:00:50
医療系 医療介護 CBnews 聴力低下高齢者の孤独感が要介護状態新規発生と関連-国立長寿医療研究センターが研究成果を発表 https://www.cbnews.jp/news/entry/20230411181306 国立研究開発法人国立長寿医療研究センター 2023-04-11 18:40:00
金融 金融庁ホームページ 入札公告等を更新しました。 https://www.fsa.go.jp/choutatu/choutatu_j/nyusatu_menu.html 公告 2023-04-11 11:00:00
金融 金融庁ホームページ 職員を募集しています。(大手銀行を中心とした金融モニタリング業務に従事する職員) https://www.fsa.go.jp/common/recruit/r4/souri-25/souri-25.html 大手銀行 2023-04-11 10:00:00
金融 金融庁ホームページ 鈴木財務大臣兼内閣府特命担当大臣閣議後記者会見の概要(令和5年4月7日)を掲載しました。 https://www.fsa.go.jp/common/conference/minister/2023a/20230407-1.html 内閣府特命担当大臣 2023-04-11 10:00:00
海外ニュース Japan Times latest articles Japan proposed Kishida-Xi phone talks at foreign ministerial meeting in early April https://www.japantimes.co.jp/news/2023/04/11/national/politics-diplomacy/japan-china-kishida-xi-phone-talks/ april 2023-04-11 18:40:32
海外ニュース Japan Times latest articles Babymetal loses its edge on ‘The Other One’ https://www.japantimes.co.jp/culture/2023/04/11/music/cd-reviews/babymetal-the-other-one/ Babymetal loses its edge on The Other One In striving for lyrical maturity and leaving behind its quirky energy Babymetal s fourth full length is well crafted but lacks anything that makes the heavy metal 2023-04-11 18:30:18
海外ニュース Japan Times latest articles Europe’s China confusion does the world a disservice https://www.japantimes.co.jp/opinion/2023/04/11/commentary/japan-commentary/china-eu-relations/ japan 2023-04-11 18:35:08
ニュース BBC News - Home CBI boss sacked over misconduct claims https://www.bbc.co.uk/news/business-65238672?at_medium=RSS&at_campaign=KARANGA employee 2023-04-11 09:30:02
ニュース BBC News - Home Russian village under 8.5cm of ash after volcano https://www.bbc.co.uk/news/world-europe-65238816?at_medium=RSS&at_campaign=KARANGA plume 2023-04-11 09:41:50
ニュース BBC News - Home Tupperware shares plunge as it warns of possible collapse https://www.bbc.co.uk/news/business-65237293?at_medium=RSS&at_campaign=KARANGA bleak 2023-04-11 09:42:48
ニュース BBC News - Home Kuwait news outlet unveils AI-generated presenter Fedha https://www.bbc.co.uk/news/world-middle-east-65238950?at_medium=RSS&at_campaign=KARANGA arabic 2023-04-11 09:40:11
GCP Google Cloud Platform Japan 公式ブログ TensorFlow Transformer モデルを高速化するには https://cloud.google.com/blog/ja/products/ai-machine-learning/how-do-i-speed-up-my-tensorflow-transformer-models/ この投稿では、最適化されたTensorFlowランタイムを使用して、微調整されたTxベースモデルをVertexAIPredictionサービスにデプロイし、モデルのパフォーマンスを評価する方法について説明します。 2023-04-11 09:50:00
GCP Google Cloud Platform Japan 公式ブログ AI を深く知りたいなら試すべき 6 つのインタラクティブ チュートリアル https://cloud.google.com/blog/ja/products/ai-machine-learning/quickly-learn-how-to-use-ai-tools-with-in-product-tutorials/ AutoMLを使用すると、画像、動画、テキスト、表形式データを使用してモデルを構築できます。 2023-04-11 09:40:00
GCP Google Cloud Platform Japan 公式ブログ Anomalo による包括的なデータ品質モニタリングが次世代の分析に必要な理由 https://cloud.google.com/blog/ja/products/data-analytics/why-next-gen-analytics-needs-deep-data-observability/ しかしGoogleのお客様のように、データを意思決定やMLモデルへの入力に使用している場合、データが正確かつ信頼できるものであることを確認するには、基本的なチェックでは不十分です。 2023-04-11 09:30:00
GCP Google Cloud Platform Japan 公式ブログ Chronicle SOAR を使用して SLA の実施を最適化する方法 https://cloud.google.com/blog/ja/products/identity-security/how-to-optimize-sla-execution-with-chronicle-soar/ このような可視性と、熟慮して設計されたSLAが一つになったことで、セキュリティチームは品質を犠牲にすることなく、より的確に優先順位を付けて作業を実施できるようになりました。 2023-04-11 09:20:00
GCP Google Cloud Platform Japan 公式ブログ IBM Spectrum Scale が Google Cloud で利用可能に https://cloud.google.com/blog/ja/products/storage-data-transfer/announcing-ibm-spectrum-scale-is-now-available-in-google-cloud/ クラスタの拡張既存のSycompStorageクラスタには、ストレージ、NFSサーバー、SpectrumScaleクライアントVMを追加できます。 2023-04-11 09:10:00
ニュース Newsweek 「見捨てられてなどいない」世界最大の輸送機ムリーヤの復元作業が始まる ウクライナ https://www.newsweekjapan.jp/stories/world/2023/04/post-101366.php 「見捨てられてなどいない」世界最大の輸送機ムリーヤの復元作業が始まるウクライナロシアの侵攻で昨年大破した世界最大の輸送機「ムリーヤ」について、破損した部品のうち使えるものをひとつひとつ回収して組み立て、復元する作業が始まった。 2023-04-11 18:30:00
ニュース Newsweek ニューヨークの地下鉄で入浴...男の奇怪な行動が話題に https://www.newsweekjapan.jp/stories/world/2023/04/post-101369.php ニューヨークの地下鉄で入浴男の奇怪な行動が話題にニューヨーク市営地下鉄の車内で入浴する男の動画がネット上で話題となっている。 2023-04-11 18:20:00
マーケティング MarkeZine ブランドアイデンティティの構築やロゴ制作などを支援 NOLUCがサブスクサービス「D_ONE」を提供 http://markezine.jp/article/detail/41935 noluc 2023-04-11 18:30:00
IT 週刊アスキー PC『ガンダムトライヴ』でチーム対戦「天使たちの昇天~30th Anniversary~」が開催! https://weekly.ascii.jp/elem/000/004/132/4132422/ anniversary 2023-04-11 18:35:00
IT 週刊アスキー 立体機動装置の時間だ!『フォートナイト』で「進撃の巨人」コラボが開始 https://weekly.ascii.jp/elem/000/004/132/4132421/ epicgames 2023-04-11 18:30:00
GCP Cloud Blog JA TensorFlow Transformer モデルを高速化するには https://cloud.google.com/blog/ja/products/ai-machine-learning/how-do-i-speed-up-my-tensorflow-transformer-models/ この投稿では、最適化されたTensorFlowランタイムを使用して、微調整されたTxベースモデルをVertexAIPredictionサービスにデプロイし、モデルのパフォーマンスを評価する方法について説明します。 2023-04-11 09:50:00
GCP Cloud Blog JA AI を深く知りたいなら試すべき 6 つのインタラクティブ チュートリアル https://cloud.google.com/blog/ja/products/ai-machine-learning/quickly-learn-how-to-use-ai-tools-with-in-product-tutorials/ AutoMLを使用すると、画像、動画、テキスト、表形式データを使用してモデルを構築できます。 2023-04-11 09:40:00
GCP Cloud Blog JA Anomalo による包括的なデータ品質モニタリングが次世代の分析に必要な理由 https://cloud.google.com/blog/ja/products/data-analytics/why-next-gen-analytics-needs-deep-data-observability/ しかしGoogleのお客様のように、データを意思決定やMLモデルへの入力に使用している場合、データが正確かつ信頼できるものであることを確認するには、基本的なチェックでは不十分です。 2023-04-11 09:30:00
GCP Cloud Blog JA Chronicle SOAR を使用して SLA の実施を最適化する方法 https://cloud.google.com/blog/ja/products/identity-security/how-to-optimize-sla-execution-with-chronicle-soar/ このような可視性と、熟慮して設計されたSLAが一つになったことで、セキュリティチームは品質を犠牲にすることなく、より的確に優先順位を付けて作業を実施できるようになりました。 2023-04-11 09:20:00
GCP Cloud Blog JA IBM Spectrum Scale が Google Cloud で利用可能に https://cloud.google.com/blog/ja/products/storage-data-transfer/announcing-ibm-spectrum-scale-is-now-available-in-google-cloud/ クラスタの拡張既存のSycompStorageクラスタには、ストレージ、NFSサーバー、SpectrumScaleクライアントVMを追加できます。 2023-04-11 09:10: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件)