投稿時間:2023-02-09 17:27:47 RSSフィード2023-02-09 17:00 分まとめ(33件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Appleの整備済み商品情報 2023/2/9 https://taisy0.com/2023/02/09/168303.html apple 2023-02-09 07:01:11
IT ITmedia 総合記事一覧 [ITmedia News] 「うぎゃ~! 情報漏えいですわ~!」 ITお嬢様と学ぶ、フィッシング詐欺に遭遇したときの対処法 https://www.itmedia.co.jp/news/articles/2302/09/news153.html itmedia 2023-02-09 16:31:00
IT ITmedia 総合記事一覧 [ITmedia News] 「ITお嬢様」始めますわ ITmedia NEWSに美少女降臨 https://www.itmedia.co.jp/news/articles/2302/09/news141.html itmedia 2023-02-09 16:30:00
IT ITmedia 総合記事一覧 [ITmedia News] 降車ボタン押し放題、整理券出し放題のバス、岡山で運行開始 https://www.itmedia.co.jp/news/articles/2302/09/news162.html itmedia 2023-02-09 16:18:00
AWS AWS Japan Blog 【開催報告&動画公開】AWS re:Invent 2022 Recap 自動車産業向け https://aws.amazon.com/jp/blogs/news/reinvent2022-recap-automotive/ awsreinventrecap 2023-02-09 07:45:15
python Pythonタグが付けられた新着投稿 - Qiita BERTで自殺ツイートを検出する試み ~③ナイーブベイズでの判別~ https://qiita.com/harunan0913/items/70871c183446d1d8ed8f qiita 2023-02-09 16:15:30
python Pythonタグが付けられた新着投稿 - Qiita データの結合 - concatかmergeか https://qiita.com/Ambition_TY/items/30c99e8d277c89362c8c concat 2023-02-09 16:12:25
AWS AWSタグが付けられた新着投稿 - Qiita 起動テンプレートのAMIをSSMパラメータで指定する https://qiita.com/t_tsuchida/items/8039bdaabc2d51c2bff8 起動 2023-02-09 16:01:01
Azure Azureタグが付けられた新着投稿 - Qiita Azure Administrator(AZ-104):Azure での ID とガバナンスの管理「Azure ADセルフサービスパスワードリセットの詳細」 https://qiita.com/fsd-jume/items/4fdcdc519bc7cd2bdcaa azure 2023-02-09 16:44:11
Azure Azureタグが付けられた新着投稿 - Qiita Azure Communication Services でメール通知をやってみる https://qiita.com/coitate/items/5a86239c809afb0cf999 emailcommunicati 2023-02-09 16:43:37
Azure Azureタグが付けられた新着投稿 - Qiita [Azure] LogicAppsを使用して、FTPサーバにファイル追加or更新があったら検知する https://qiita.com/YOS0602/items/cae759e5f82c9f31827d azure 2023-02-09 16:28:30
海外TECH DEV Community How to install Gatsby with Tailwind CSS and Flowbite https://dev.to/themesberg/how-to-install-gatsby-with-tailwind-css-and-flowbite-4f81 How to install Gatsby with Tailwind CSS and FlowbiteGatsby is a popular open source static site generator framework built on top of Node js React and GraphQL that allows you to build websites using content sources such as Markdown MDX and leverages other headless CMS technologies such as WordPress Drupal and more This React framework is used by many popular websites and companies such as Snapchat Tinder Revolut Stack and others and it can help you quickly build a website without having to create a separate administrative panel to manage content By following this guide you will learn how to create a new Gatsby project install and configure Tailwind CSS and also set up Flowbite to start building websites even faster with the open source UI components Flowbite is a free and open source UI component library built on top of the Tailwind CSS framework featuring interactive elements like dropdowns modals navbars and more to help you build websites even faster RequirementsBefore creating a new project make sure that you have Node js v or higher installed on your local machine and production server because it will be required to install all of the three technologies Create a new projectThe first step in this guide is to create a new Gatsby project using the CLI interface via NPM npm init gatsbyThis command will prompt you to select the options for creating a new Gatsby application such as choosing between JavaScript or TypeScript selecting your preferred CMS WordPress Drupal styling system we ll use Tailwind CSS additional configurations and the name of the project Create a local server by running the following command in your terminal npm run developThis command will compile your source code and make the Gatsby starter project accessible via your browser on the default http localhost address To create a production build you can run the following command just make sure you have Gatsby globally installed for your terminal gatsby buildYou can also use Gatsby Cloud as the recommended way to host your website Install Tailwind CSSTailwind CSS is a popular utility first CSS framework that allows you to build user interfaces quickly directly inside your template files without having to touch your CSS Install Tailwind CSS and the PostCSS plugin for Gatsby using NPM npm install D tailwindcss gatsby plugin postcss postcss autoprefixerUse the following command to create a default tailwind config js configuration using PostCSS tailwindcss init pRequire the gatsby plugin postcss plugin inside your gatsby config js file module exports plugins other plugins gatsby plugin postcss Configure the template paths for your Gatsby project inside your tailwind config js file module exports content src pages js jsx ts tsx src components js jsx ts tsx theme extend plugins Create a new src css global css file and import the default Tailwind directives tailwind base tailwind components tailwind utilities other styles Finally import the created global css CSS file inside a new gatsby browser js file import src css global css You can now start using Tailwind CSS utility classes inside your Gatsby templates For example you can add text blue to one of the elements inside your index js file const IndexPage gt return lt main gt lt h className text blue gt Congratulations lt br gt lt span style headingAccentStyles gt ー you just made a Gatsby site lt span gt lt h gt other markup lt main gt export default IndexPageexport const Head gt lt title gt Home Page lt title gt Restart your server and run npm run develop to apply the changes and now the title should have the blue color instead of the default black from the browser Install FlowbiteFlowbite is a popular and open source UI component library built on top of the Tailwind CSS framework featuring interactive elements such as dropdowns modals navbars carousels and more that can help you build websites even faster Flowbite also supports technologies and frameworks such as React Vue Svelte Angular and more In this guide we will use the Flowbite React library because it matches the best with Gatsby The first step is to install the Flowbite and Flowbite React package via NPM npm install flowbite flowbite reactMake sure that you require the Flowbite plugin and configure the template paths inside your Tailwind CSS configuration file module exports content src pages js jsx ts tsx src components js jsx ts tsx node modules flowbite react js add this plugins require flowbite plugin add this theme Having these configured you can now start using the UI components from Flowbite Flowbite componentsYou can either use the core vanilla JS and static HTML components from the Flowbite Library or you can import dedicated React components such as the Alert Modal or Navbar from the Flowbite React library Here s an example how you can import and use the Alert component import Alert from flowbite react const IndexPage gt return lt main gt lt Alert color info gt This is a guide using Gatsby Flowibte and Tailwind CSS lt Alert gt lt main gt export default IndexPageexport const Head gt lt title gt Home Page lt title gt This example will show a default alert component You can change the appearance by using color danger or color warning to update the colors Another example would be the commonly used Dropdown UI component import Dropdown from flowbite react const IndexPage gt return lt main gt lt Dropdown label Dropdown button dismissOnClick false gt lt Dropdown Item gt Gatsby JS lt Dropdown Item gt lt Dropdown Item gt Tailwind CSS lt Dropdown Item gt lt Dropdown Item gt Flowbite Components lt Dropdown Item gt lt Dropdown gt lt main gt export default IndexPageexport const Head gt lt title gt Home Page lt title gt This example will show a button which on the click event will show a dropdown menu item You can browse the full list of components and options by checking out the Flowbite React library Gatsby starter projectThe open source community created a free starter project using Gatsby Tailwind CSS and Flowbite React that you can download to set up your tech stack faster 2023-02-09 07:24:51
海外TECH Engadget Amazon secures key FCC approval to deploy its Project Kuiper broadband satellites https://www.engadget.com/amazon-secures-fcc-approval-project-kuiper-broadband-satellites-071817672.html?src=rss Amazon secures key FCC approval to deploy its Project Kuiper broadband satellitesAmazon is getting closer to being able to deploy Project Kuiper s broadband satellites The company has just received key approval from the Federal Communications Commission which it needs to be able to officially send satellites to orbit and to begin Kuiper s satellite internet operations As SpaceNews notes Amazon secured an initial approval from the agency in The FCC gave it permission to launch thousands of Low Earth Orbit satellites so long as it later secures regulatory approval for an updated orbital debris mitigation plan In the order PDF the commission said the updated plan satisfies the condition it gave the company when it granted its request back in This additional approval quot will allow Kuiper to begin deployment of its constellation in order to bring high speed broadband connectivity to customers around the world quot As part of its updated orbital debris mitigation plan the FCC will require Amazon to submit a a semi annual report quot concerning the number of satellites launched and disposal reliability quot If Amazon experiences disposal failure with satellites within a single year it has to report that fact to the FCC as well In addition the commission is requiring Project Kuiper to ensure that it will be able to deorbit its satellites after their seven year mission is done Making sure the decommissioned satellites are out of orbit is necessary to prevent them from colliding with the International Space Station and other inhabitable stations nbsp Late last year Amazon revealed that the first two Project Kuiper satellites will head to orbit aboard the maiden flight of United Launch Alliance s new Vulcan Centaur rocket Vulcan Centaur is still currently under testing but if all goes to plan it ll fly for the first time in the next few months nbsp 2023-02-09 07:18:17
海外TECH CodeProject Latest Articles InferJS Library & Compiler https://www.codeproject.com/Articles/5353381/InferJS-Library-Compiler javascript 2023-02-09 07:41:00
医療系 医療介護 CBnews 医療技術再評価へ、関係学会の報告期限は4月下旬-24年度診療報酬改定 https://www.cbnews.jp/news/entry/20230209162151 中央社会保険医療協議会 2023-02-09 16:40:00
金融 日本銀行:RSS 日本銀行当座預金のマクロ加算残高にかかる基準比率の見直しについて http://www.boj.or.jp/mopo/mpmdeci/mpr_2023/mpr230209a.pdf 当座預金 2023-02-09 17:00:00
ニュース @日本経済新聞 電子版 北朝鮮、新型ICBM公開 奇襲可能な固体燃料型か https://t.co/WNAGZjLlpU https://twitter.com/nikkei/statuses/1623587704469590017 固体燃料 2023-02-09 07:40:48
ニュース @日本経済新聞 電子版 東京五輪・談合事件が示す「代理店依存」の構図 https://t.co/C9ohOTex1g https://twitter.com/nikkei/statuses/1623582429591248897 東京五輪 2023-02-09 07:19:50
ニュース @日本経済新聞 電子版 西武HD社長に西山隆一郎氏 後藤高志氏は会長兼CEOに https://t.co/z8NWSy83IT https://twitter.com/nikkei/statuses/1623579417762226176 後藤高志 2023-02-09 07:07:52
海外ニュース Japan Times latest articles North Korea unveils apparent new ICBM in nighttime military parade https://www.japantimes.co.jp/news/2023/02/09/asia-pacific/north-korea-missile-parade/ missiles 2023-02-09 16:46:53
ニュース BBC News - Home Netflix extends password sharing fees in four more countries https://www.bbc.co.uk/news/business-64573517?at_medium=RSS&at_campaign=KARANGA spain 2023-02-09 07:29:24
ニュース BBC News - Home Disney to cut 7,000 jobs as streaming numbers fall for first time https://www.bbc.co.uk/news/business-64576228?at_medium=RSS&at_campaign=KARANGA disney 2023-02-09 07:17:22
ビジネス 不景気.com 沖電気の23年3月期は30億円の最終赤字へ、部材調達難で - 不景気com https://www.fukeiki.com/2023/02/oki-2023-loss.html 情報通信 2023-02-09 07:21:13
ビジネス 不景気.com 太平洋セメントの23年3月期は260億円の最終赤字へ、値上遅れ - 不景気com https://www.fukeiki.com/2023/02/taiheiyo-cement-2023-loss2.html 太平洋セメント 2023-02-09 07:09:51
ニュース Newsweek ダンキンドーナツを愛するベン・アフレック、店員姿があまりに自然で「シフトに入るべき」と絶賛される https://www.newsweekjapan.jp/stories/culture/2023/02/post-100820.php 幼少期を過ごしたボストン発祥ゆえに思い入れベンは先月、マサチューセッツ州ボストン郊外メドフォードの店舗でダンキンドーナツのTシャツとキャップを身に着け、店員としてドライブスルーで接客する姿が目撃され、CMの撮影を行っていることが報じられていた。 2023-02-09 16:10:00
マーケティング MarkeZine LIVE BOARD、東急線のサイネージにおける配信パッケージを平休日・時間帯別に販売へ http://markezine.jp/article/detail/41269 liveboard 2023-02-09 16:30:00
マーケティング MarkeZine WIPジャパン、ChatGPTを搭載したWebサイト多言語化サービス「AIシュリーマン」をリリース http://markezine.jp/article/detail/41258 chatgpt 2023-02-09 16:15:00
IT 週刊アスキー 次世代太陽電池「ペロブスカイト」、東急田園都市線・青葉台駅で先行実証実験へ https://weekly.ascii.jp/elem/000/004/124/4124162/ 太陽電池 2023-02-09 16:45:00
IT 週刊アスキー Switch『超探偵事件簿 レインコード』が6月30日に発売決定! https://weekly.ascii.jp/elem/000/004/124/4124166/ nintendo 2023-02-09 16:35:00
IT 週刊アスキー パーク ハイアット 東京のレストランに春の特別メニューが登場! https://weekly.ascii.jp/elem/000/004/124/4124115/ 登場 2023-02-09 16:30:00
IT 週刊アスキー レベル上げチャンス到来!『DQウォーク』2月13日までメタルキャンペーンを開催 https://weekly.ascii.jp/elem/000/004/124/4124163/ 位置情報ゲーム 2023-02-09 16:15:00
IT 週刊アスキー 「CData JDBC Drivers」、現場帳票電子化ソリューション「XC-Gate.V3」と製品連携 https://weekly.ascii.jp/elem/000/004/124/4124149/ cdatajdbcdrivers 2023-02-09 16:10:00
マーケティング AdverTimes 国際園芸博覧会まで1500日、ロゴ最優秀賞・推進体制発表 https://www.advertimes.com/20230209/article411036/ green 2023-02-09 07:54:18

コメント

このブログの人気の投稿

投稿時間: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件)