投稿時間:2022-08-01 12:19:45 RSSフィード2022-08-01 12:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] Apple、新型Mac miniとMacBook Proを2022年後半に発表か? https://www.itmedia.co.jp/news/articles/2208/01/news091.html itmedianewsapple 2022-08-01 11:44:00
TECH Techable(テッカブル) ファストドクターと大阪ガスが提携。自宅テレビで診療が受けられる医療インフラを目指す https://techable.jp/archives/183150 大阪ガス 2022-08-01 03:00:02
TECH Techable(テッカブル) 劇場・映画館のバーチャルツアー開始。3D動画で予約前に施設や座席視点など確認 https://techable.jp/archives/183122 baseinnovation 2022-08-01 02:00:42
AWS AWS Japan Blog AWS Backup で Amazon FSx for OpenZFS をバックアップおよびリストアする https://aws.amazon.com/jp/blogs/news/backup-and-restore-amazon-fsx-for-openzfs-with-aws-backup/ haelzhangsolutionsarchite 2022-08-01 02:33:34
js JavaScriptタグが付けられた新着投稿 - Qiita Chatworkのデータをcsvでバックアップ その2 https://qiita.com/saikickers/items/b12263bbb9fbb0089c38 chatwork 2022-08-01 11:55:19
技術ブログ Developers.IO IntelliJとCIサービスを連携させるプラグインCIcloneを試してみた https://dev.classmethod.jp/articles/intellij-plugin-ciclone/ ciclone 2022-08-01 02:57:29
技術ブログ Developers.IO 7 年間溜めた AWS IAM AWS 管理ポリシーへの愛を語りました #devio2022 https://dev.classmethod.jp/articles/developersio2022-i-am-iam-lover/ awsiamaws 2022-08-01 02:05:54
技術ブログ Developers.IO Gitのフック(pre-commit)とGithubActionsでSnyk Codeによる継続的なコードスキャンを試してみた https://dev.classmethod.jp/articles/snyk_code_search_on_git_pre_commit/ githubactions 2022-08-01 02:01:37
海外TECH DEV Community Going Wild with Hugo Modules https://dev.to/cloudcannon/going-wild-with-hugo-modules-1a72 Going Wild with Hugo ModulesBy Jeanne Haskett Nathalie Laroche and Kimberley BrownAt the recent HugoConf Jeanne Haskett Nathalie Laroche and Kimberley Brown ーpart of the Nuance Communications TechPubs team ーpresented their process for using Hugo modules which enables efficient content reuse and consistency across Nuance s multiple products We found their presentation very helpful and informative so without further ado let s find out more about… How Nuance TechPubs stepped up their game with Hugo modulesThe Nuance Technical Publications team recently moved to Hugo which we love and discovered that Hugo modules solve many of our consistency and standardization needs With a team of over writers and a portfolio that includes dozens of products it s important for our documentation to read and look like it s coming from the same organization Enter modules The official Hugo documentation defines modules as follows Hugo Modules are the core building blocks in Hugo A module can be your main project or a smaller module providing one or more of the component types defined in Hugo static content layouts data assets in and archetypes Our use of Hugo modules spanned three phases We took it slow at first But once we discovered how powerful modules can be we went wild The journeyWe ve broken our journey into three phases to match three distinct goals Phase Consistency  Pull common content into multiple Hugo projects ensuring consistency For example archetypes and modifications to a theme Phase Branding  Easily configure projects at the product level to use different logos and favicons and eventually entire CSS “skins Phase Content reuse   Share common content across all project repos but prevent modification content fragments entire topics glossary definitions Phase ConsistencyIn the first phase we considered the contents of a typical Hugo project and identified the components that should be the same for all projects  The common content that we centralized includes archetypes folder since we use it to provide writers with templates for new topics For example we write a lot of API documentation so we created an archetype for gRPC topics that writers can use to quickly get started Archetypes are a handy Hugo feature assets folder which contains some of our Docsy overrides like our logo We use the Docsy theme which we love layouts folder which includes theme overrides as well as our custom shortcodes static folder which includes common files like our favicon We took all these files and put them in a Hugo module which we called very originally hugo common modules If you re familiar with Hugo modules then you know that the next step is to configure your project to import the module We decided to break the config toml file into multiple configuration files for ease of maintenance Here is the content of our module configuration file module toml imports path github com ████████ hugo common modules disabled false imports mounts source static target static imports mounts source layouts target layouts imports mounts source assets target assets imports mounts source archetypes target archetypes Notice that we re mounting the four folders that we need Next we copied this file into all our Hugo projects This was pretty simple as you can see and fit our needs precisely Phase Project specific brandingAt the beginning of our Hugo journey we had plans to use the Hugo framework for one product which meant a single look and feel Pretty soon other writers on the team writing for other products wanted to use Hugo This meant serving multiple products each with slightly different branding Our solution Hugo modules We started by identifying the elements that would form part of the boilerplate or global template and put all that code in the respective files of the assets directory of our hugo common modules To easily build and deploy our docs sets with different skins we created a new directory called project specific This directory which contains subdirectories per product houses each product s proprietary logo and favicon SCSS and any file overrides specific to that product We then updated our module toml accordingly In the image below “mix is a product with its own logo favicon color palette landing page images and so on By simply changing “mix to another product name we can quickly switch to import an entirely different skin for an entirely different product Phase Content reusePreviously we mentioned archetypes and how useful they are to the content development process Archetypes allow us to standardize specific types of content like API documentation for example or a quick start or getting started topic As mentioned we were already using our hugo common modules to import archetypes Content reuse is not limited to entire topics It can also include fragments of content which some writers call snippets that remain the same within a project or even across projects and are meant to be used again and again Another example are common terms like glossary definitions As you might expect we expanded our use of hugo common modules to include content like snippets and glossary definitions This approach satisfied our goal to write it once and use it in many different places However when a project imports a Hugo module the content is imported silently that is it does not appear in the project This approach worked fine for files writers didn t care about such as Docsy overrides custom shortcodes project specific SCSS and so on To reuse content however writers needed to view it to determine if it suited their needs Writers needed not only access to common contentーshared in a single central locationーbut also needed to see it Our solution Vendor modules Hugo “vendoring of contentUsing a module that is “vendored creates a vendor directory in the project which in our case allows writers to see the contents of the module dependencies as they re working locally in the project They can easily view the content of the files and reference the local filepath of shared content they wish to reuse since “vendored content behaves as if it belongs to the project Note If you use this approach in Git remember to add the vendor directory to your gitignore file to avoid committing it since you only need it when working locally in the project This approach also nicely fulfilled our goal of ensuring consistency Should a writer feel inclined to change a shared content fileーand they often do ーhe or she can do so only by submitting a merge request via the hugo common modules project since local changes to “vendored content are not retained once you do another import run hugo mod vendor again Nice That solution worked for us But that s not the end of our journey Sharing doc setsWhat about documentation sets that form part of other doc sets Consider a component that is common to many different products such as a license server It might even “stand alone as a product For a small product we might decide to place the documentation for installing and configuring the license server at the top level of the doc set however for a complex product we might prefer to pull the content into a “Requirements section that includes additional prerequisites Once again Hugo modules to the rescue We simply store the license server documentation in its own module which we then pull into each project at the desired location via the project s module toml file In this example we are importing documentation and images from two modules docs mix event logs and docs mix nluaas grpc and specifying the path of both the source and target files   RecapIn summary modules have created a ton of value for us We have been able to successfully apply archetypes and theme overrides project specific branding and content reuse all with the help of modules And we re only getting started What s nextSince we presented at HugoConf we ve added Docsy as a module greatly simplifying the workflow for writers Next we plan to create a series of dashboards that will read in the content of all the component modules we use These dashboards will allow us to see at a glance all the shared content across all projects Think of it as the control room for all things documentation Who we areWe re the “terrible trio also known as the “Hugo Admins in our TechPubs group Feel free to watch our HugoConf tech talk on this subject and to contact us with any questions comments or suggestions Also be sure to check out Kim s lightning talk on Implementing conditional processing in Hugo another innovation we can t live without Jeanne HaskettContent Architect amp Senior Principal Technical WriterNuance Communicationsjeanne haskett nuance comNathalie LarocheSenior Principal Technical WriterNuance Communicationsnathalie laroche nuance comKimberley BrownFrontend DeveloperNuance Communicationskimberley brown nuance com 2022-08-01 02:13:33
医療系 内科開業医のお勉強日記 武漢肺炎ウィルスとして推定根拠報告 https://kaigyoi.blogspot.com/2022/08/blog-post.html 彼らは、当初SARSCoVのつの微妙に異なる系統が関与していたパンデミックは、年月下旬に華南市場で動物からヒトが少なくとも回別々に感染したことから生じた可能性が高いと判断した。 2022-08-01 02:16:00
金融 ニッセイ基礎研究所 ユーロ圏GDP(2022年4-6月期)-コロナ禍から回復で成長率は大幅加速 https://www.nli-research.co.jp/topics_detail1/id=71934?site=nli 経済規模の大きいか国の伸び率を見ると図表、前期比ではドイツ前期、フランス前期、イタリア前期、スペイン前期となった。 2022-08-01 11:40:27
金融 ニッセイ基礎研究所 2021年 都道府県・人口動態解説(下)-男女移動純減差が示す「ニッポン労働市場の大きな課題」 https://www.nli-research.co.jp/topics_detail1/id=71919?site=nli つまり、純減要因の約割が女性減に因るものであること、そして何よりも、そのエリアで女性が減少するということは、そのエリアで生まれる「ふるさと人口」の未来も生物学的に期待できないことから、少子化対策、未来の人口対策として、男性よりも女性の人流を最優先課題とすべきことは間違いないだろう。 2022-08-01 11:17:08
北海道 北海道新聞 ひき逃げか、女性死亡 札幌市西区 https://www.hokkaido-np.co.jp/article/712566/ 札幌市西区 2022-08-01 11:29:00
北海道 北海道新聞 砲撃で穀物企業トップ死亡 輸出正常化へ影響懸念 https://www.hokkaido-np.co.jp/article/712464/ 輸出 2022-08-01 11:14:55
北海道 北海道新聞 <デジタル発>旭川出身・町田瑠唯選手が米女子バスケリーグで大活躍 五輪銀メダルを実現した神「アシスト」 スゴさの秘密を紹介 https://www.hokkaido-np.co.jp/article/711709/ 銀メダル 2022-08-01 11:03:22
北海道 北海道新聞 雌阿寒岳で男性遭難 https://www.hokkaido-np.co.jp/article/712558/ 十勝管内 2022-08-01 11:15:00
北海道 北海道新聞 密避け函館観光、貸し自転車好調 電動で坂道も楽/ルート提案の準備も https://www.hokkaido-np.co.jp/article/712416/ 新型コロナウイルス 2022-08-01 11:01:26
ビジネス プレジデントオンライン 【ネコの想いが分かる】人に愛された黒ネコが、最期に見つめていたものとは――『ラストカルテ』第1巻第5話 - 「コミック『ラストカルテ -法獣医学者 当麻健匠の記憶-』」 https://president.jp/articles/-/59763 記憶 2022-08-01 12:00:00
IT 週刊アスキー 薄型ボディにハイエンドな性能を詰め込んだ17.3インチゲーミングノートPC「Stealth GS77 12U」シリーズレビュー https://weekly.ascii.jp/elem/000/004/098/4098639/ stealthgsu 2022-08-01 11:30:00
IT 週刊アスキー 小網代湾海底で熟成させたワインを楽しもう! ヨコハマ グランド インターコンチネンタル ホテル「海底熟成ワイン」8月1日販売開始 https://weekly.ascii.jp/elem/000/004/100/4100033/ 販売開始 2022-08-01 11:30:00
IT 週刊アスキー 横浜シーサイドライン駅構内自動販売機で「ミツハシライス×シーサイドライン ボトル米(マイ)」8月8日より販売開始 https://weekly.ascii.jp/elem/000/004/100/4100034/ 横浜シーサイドライン 2022-08-01 11:30:00
IT 週刊アスキー 新作フィギュア販売や人気アニメのステージイベントも。8月6日(土)・7日(日)に新宿住友ビルの三角広場で「スマイルフェス2022」開催 https://weekly.ascii.jp/elem/000/004/100/4100036/ 新宿住友ビル 2022-08-01 11:30:00
IT 週刊アスキー 【今週の注目】やったね 出前館「ウルトラ半額祭」、ケンタの“クリスピー”がお得、ファミマ増量キャンペーン(8月1日~7日) https://weekly.ascii.jp/elem/000/004/100/4100050/ 発売 2022-08-01 11:30:00
マーケティング AdverTimes 東京ドームとサントリー「ボトルtoボトル」水平リサイクルを開始 https://www.advertimes.com/20220801/article391657/ 使用済み 2022-08-01 02:43:15
マーケティング AdverTimes 髙島屋、関東サポートセンター長ほか(22年8月1日付) https://www.advertimes.com/20220801/article391612/ 髙島屋 2022-08-01 02:15:06
マーケティング AdverTimes ヤマハ発動機、海外市場開拓事業部長ほか(22年8月1日付) https://www.advertimes.com/20220801/article391655/ 海外市場 2022-08-01 02:11:19
マーケティング AdverTimes 大丸松坂屋百貨店、コスト構造推進部部長ほか(22年9月1日付) https://www.advertimes.com/20220801/article391628/ ginzasix 2022-08-01 02:08:23

コメント

このブログの人気の投稿

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