投稿時間:2022-04-07 19:30:20 RSSフィード2022-04-07 19:00 分まとめ(35件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 実物大ニューガンダム立像4月25日より展示開始!夜間には壁面の特別映像と連動 「ガンダムパーク福岡」も同時オープン https://robotstart.info/2022/04/07/new-gundam-statue-fukuoka.html 2022-04-07 09:21:47
IT ITmedia 総合記事一覧 [ITmedia News] ドンキの超小型ノートPCに第3弾 3万2780円 eMMCからSSDに刷新 https://www.itmedia.co.jp/news/articles/2204/07/news157.html itmedia 2022-04-07 18:30:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 「研究分野別」世界大学ランキング、東大がアジア1位 京大は9位 https://www.itmedia.co.jp/business/articles/2204/07/news091.html itmedia 2022-04-07 18:16:00
AWS AWSタグが付けられた新着投稿 - Qiita 複数のAWSアカウントを扱う際に工夫しているChromeの設定 https://qiita.com/moritalous/items/d81fb8216ad5db7328a4 chrome 2022-04-07 18:53:18
Docker dockerタグが付けられた新着投稿 - Qiita コマンドが覚えられないので、Makefileを使って簡略化する https://qiita.com/UvgQL/items/2165d16c00976a679f09 makefile 2022-04-07 18:37:48
技術ブログ Developers.IO 【2022年3月】全世界にあるAWSリージョンを調べて考察してみた https://dev.classmethod.jp/articles/global_region_202203/ 考察 2022-04-07 09:43:30
技術ブログ Developers.IO 【Tableau Desktop】TableauDesktopのパラメータ設定を行う際に気をつけること https://dev.classmethod.jp/articles/tableau-parameter1031/ alteryx 2022-04-07 09:26:01
海外TECH DEV Community GnuPG (PGP) SmartCard over SSH to a VM with a Yubikey https://dev.to/leehambley/gnupg-pgp-smartcard-over-ssh-to-a-vm-with-a-yubikey-kio GnuPG PGP SmartCard over SSH to a VM with a YubikeyAgent Forwarding GNU Privacy Guard GPG amp SSH over SSH Most all the blog posts I found for this topic were five or more years old and were referencing a time prior to GnuPG which was where some real changes landed which made this process possible and safe These days even LTS distributions such as Ubuntu include GnuPG which is yet simplier and requires even fewer hoops be jumped through My objective seemed simple From my laptop macOS Monterey Forward my EC DSA key with an SSH agent and a GPG Key actually a smartcard but that doesn t matter into a Linux VM over SSH so that I can work there sign commits and clone git ssh repositoriesIt s possible to use a GPG key and smartcard as an SSH authentication token but I m not interested in that I have separate SSH and GPG keys and I m happy with that set up Check you have new enough software Workstation gpg versiongpg GnuPG anything over is fine VM ssh target gpg versiongpg GnuPG Generate or configure relevant keys Smart cardOut of scope but it s pretty doable Follow this guide Generate a GPG Key gpg gen keyIt is an interactive program which will ask for your real name and your user email address complete those and then show you some output the important part is the long key ID Real name Example UserEmail address user example comYou selected this USER ID Example User lt user example com gt snip pub ed SC expires BCBDAABBBuid Example User lt user example com gt sub cv E expires In this case BCBDAA is the key ID copy it to the clipboard or export it to an environment variable we ll need this a lot Generate an SSH keyRun this and follow the prompt ssh keygen This will generate something like an ssh id rsa or ssh id ecdsa or something depending what you configure Getting Relevant Socket Addresses On your local machine gpgconf list dirs agent ssh socket Users lt your username gt gnupg S gpg agent ssh gpgconf list dir agent socket Users leehambley gnupg S gpg agent gpgconf list dirs agent extra socket Users lt your username gt gnupg S gpg agent extra On the remote machine gpgconf list dirs agent ssh socket run user lt your numeric user id probably gt gnupg S gpg agent ssh gpgconf list dirs agent socket run user lt your numeric user id probably gt gnupg S gpg agentThe GPG Agent and SSH Agent sockets should be self explanatory enough however the extra socket is peculiar see this from the docs Also listen on native gpg agent connections on the given socket The intended use for this extra socket is to setup a Unix domain socket forwarding from a remote machine to this socket on the local machine A gpg running on the remote machine may then connect to the local gpg agent and use its private keys This enables decrypting or signing data on a remote machine without exposing the private keys to the remote machine The extra socket then is a slightly less privilidged socket which safely allows forwarding to a remote machine without giving that remote machine full control over your local GPG agent as a the normal socket would have Local Configuration ssh configHost thevmweworkin this is standard SSH config mostly HostName User vagrant Port UserKnownHostsFile dev null StrictHostKeyChecking no PasswordAuthentication no IdentitiesOnly yes LogLevel FATAL This is the GPG SSH forwarding RemoteForward run user lt your numeric user id probably gt gnupg S gpg agent Users lt your username gt gnupg S gpg agent extra RemoteForward run user lt your numeric user id probably gt gnupg S gpg agent ssh Users lt your username gt gnupg S gpg agent ssh ForwardAgent yes ExitOnForwardFailure yes gnupg agent config confcat gnupg gpg agent confdefault cache ttl max cache ttl pinentry program opt homebrew bin pinentry mac brew install gnupg for this or don t specify pin entryextra socket Users lt your username gt gnupg S gpg agent extra enable ssh supportkeep displaydefault cache ttl max cache ttl keep ttykeep display Your zshrc or bash profile etceval gpg agent daemon Run this to make sure your agent is running restarted with the correct config gpg connect agent reloadagent bye will start an agent if you didn t have one runningOK Remote ConfigurationConfigure Git to require signing commits git config global commit gpgsign true git config global user signingkey ECADEFDFFDEAFDCFADA the exclamation mark makes Git use this key and not try and detect a subkey to useConfigure SSH to remove local sockets of already running daemons and allow you to overbind them etc ssh sshd conf add the following StreamLocalBindUnlink yes Upload the key someplace Github Gitlab and into the VM public keychain From the host machinegpg output public pgp armor export ECADEFDFFDEAFDCFADAgpg armor export ECADEFDFFDEAFDCFADA pbcopyscp public pgp thevm public gpgThen go to your profile and paste the new GPG key into your profile Check Everything Works 2022-04-07 09:14:10
海外TECH DEV Community Easy fix for webpack ERROR in Plugin "react" was conflicted ... https://dev.to/marcandreh/easy-fix-for-webpack-error-in-plugin-react-was-conflicted--3nm8 Easy fix for webpack ERROR in Plugin quot react quot was conflicted Regardless whether you just upgraded to React or some of your Node dependencies in package json version conflicts are very annoying But there s an easy fix webpack dev server client overlay display none Just insert these three lines of code in any top level CSS file such as your index css and the error  at least its overlay will be gone IRONY OFFWhat was your latest temp fix that you accidentally pushed into a Git repo 2022-04-07 09:03:36
海外TECH DEV Community It’s 2022, Don’t Use the console.log() Anymore 😎 https://dev.to/braincuber_technologies/its-2022-dont-use-the-consolelog-anymore-51dn It s Don t Use the console log Anymore We as JavaScript developers usually use console log to test the output or just for fun Even I can bet that our including mine first code was “Hello world logged in the console console log Hello World This piece of code has been nostalgic for all fellow JS developers But now it s let s make it a little handy and comfortable for our fingers In this article I have discussed a simple and common method that has rarely been used by developers Let s get startedAs we know we all use to log the data to the console like this console log I love js I love jsconsole log console log true falseLet s work smartly and efficiently as shown below const log arg gt console log arg Here we have created a function with a shorter name ーlog relative to console log you can even use a shorter name something like this const l arg gt console log arg So you might be wondering what s the benefit of writing code like this Let s discuss the benefits BenefitsKeeps your code clean and slickImprove readabilityRelief to your fingers don t have to write a long thingComment more benefits if you can Let s test log Hello world Hello worldlog log false truelog Math PI ConclusionSo this was a quick tip to save your time and make your code look cleaner Let me know in the comments if you will use this tip You can try the same thing for the console info console warn console error Let s connectLinkedInTwitterRead MoreA Complete Guide to WEB How to upload files to aws s using nodejs lambda and api gateway 2022-04-07 09:00:51
海外TECH Engadget TAG Heuer's latest golf smartwatch offers more help with your shots https://www.engadget.com/tag-heuer-connected-calibre-e4-golf-edition-093031897.html?src=rss TAG Heuer x s latest golf smartwatch offers more help with your shotsTAG Heuer was virtually certain to follow up its Connected Calibre E smartwatch with a version for golf enthusiasts and it s now clear you didn t have to wait long The watchmaker has introduced a Calibre E Golf Edition that melds the updated wristwear with some matching upgrades to your experience on the fairway Most notably the brand has overhauled the on watch map interface to show more of the course and your game including the distances for the target and tracking shot You can also expect automatic shot tracking when you swing at the tee ーthe feature will eventually come to the Apple Watch app but it s worth noting if you re determined to perfect your drive If you pair with an iPhone you can also use TAG Heuer s iOS app to share D videos of your best shots Like you d expect the Golf Edition E has its share of game inspired faces and a strap that not so subtly mimics the dimples on your ball This is otherwise the titanium mm Calibre E introduced in February although that s plenty if you want a reasonably current Wear OS watch You ll find a Snapdragon Wear chip that promises both faster performance and percent more battery life than previous models An altimeter will help with your hiking trips and the brighter screen will help on sunny golfing days TAG Heuer should upgrade the watch to Wear OS when it s available The Connected Calibre E Golf Edition will be available this month for with three Titleist balls and a spare marker in the box That s more than the regular titanium E and well above the entry price for the watch range But let s be honest if you re even considering a TAG Heuer smartwatch and already devote your weekends to golf you can likely afford to pay the premium for this variant 2022-04-07 09:30:31
金融 JPX マーケットニュース [東証]新規上場日の基準値段等:NEXT FUNDS SolactiveジャパンESGコア指数連動型上場投信(コード2850) https://www.jpx.co.jp/news/1030/20220407-01.html nextfundssolactive 2022-04-07 18:30:00
金融 ニュース - 保険市場TIMES アイペット、成約者全員にプレゼントが当たるスプリングキャンペーン開始 https://www.hokende.com/news/blog/entry/2022/04/07/190000 アイペット、成約者全員にプレゼントが当たるスプリングキャンペーン開始「春満開スプリングキャンペーン」開催中アイペット損害保険株式会社以下、アイペットは、成約者全員に電子ギフト券プレゼント抽選で豪華景品が当たる「春満開スプリングキャンペーン」を年月日火まで開催中だ。 2022-04-07 19:00:00
海外ニュース Japan Times latest articles Miyuki Suzuki sets example for Japan Inc. with grace and ‘spine of steel’ https://www.japantimes.co.jp/news/2022/04/07/business/miyuki-suzuki-women-work/ Miyuki Suzuki sets example for Japan Inc with grace and spine of steel During a varied career with stints at a number of firms Suzuki has strived to empower her team members ーsomething of a novel approach 2022-04-07 18:12:36
ニュース BBC News - Home BBC cannot name alleged abusive MI5 agent - court https://www.bbc.co.uk/news/uk-61021108?at_medium=RSS&at_campaign=KARANGA dangerous 2022-04-07 09:51:55
ニュース BBC News - Home Hitachi train cracks report calls for standards review https://www.bbc.co.uk/news/uk-england-61021701?at_medium=RSS&at_campaign=KARANGA class 2022-04-07 09:25:01
ニュース BBC News - Home Barnsley ram-raiders steal £100,000 worth of clothes https://www.bbc.co.uk/news/uk-england-south-yorkshire-61010532?at_medium=RSS&at_campaign=KARANGA barnsley 2022-04-07 09:40:51
ニュース BBC News - Home How much nuclear power does the UK use and is it safe? https://www.bbc.co.uk/news/business-59212992?at_medium=RSS&at_campaign=KARANGA energy 2022-04-07 09:09:22
ニュース BBC News - Home Grand National 2022: Eclair Surf and Fortescue make cut for Aintree race https://www.bbc.co.uk/sport/horse-racing/61012910?at_medium=RSS&at_campaign=KARANGA Grand National Eclair Surf and Fortescue make cut for Aintree raceEclair Surf and Fortescue make the cut for Saturday s Grand National after it was announced Caribean Boy and Farclas will not run 2022-04-07 09:56:48
ビジネス ダイヤモンド・オンライン - 新着記事 マイクロソフト、米政界で特別扱いの理由 - WSJ発 https://diamond.jp/articles/-/301297 特別扱い 2022-04-07 18:17:00
ビジネス 不景気.com オンワードHDの22年2月期は10億円の営業赤字、コロナ再拡大 - 不景気.com https://www.fukeiki.com/2022/04/onward-2022-loss.html 赤字 2022-04-07 09:20:41
サブカルネタ ラーブロ 二代目対流式 節極@多摩市<節そば> http://ra-blog.net/modules/rssc/single_feed.php?fid=197934 聖蹟桜ヶ丘駅 2022-04-07 10:09:07
北海道 北海道新聞 8日の予告先発 日本ハムは伊藤 https://www.hokkaido-np.co.jp/article/666867/ 予告先発 2022-04-07 18:18:03
北海道 北海道新聞 囲碁、許家元十段が初防衛 余正麒八段を3連勝で下す https://www.hokkaido-np.co.jp/article/666882/ 長野県大町市 2022-04-07 18:15:00
北海道 北海道新聞 経済安保法案、衆院通過 国際情勢急変に対応 https://www.hokkaido-np.co.jp/article/666800/ 安保法案 2022-04-07 18:10:51
北海道 北海道新聞 シロツメクサ、都市部では世界共通の進化 北大など国際チーム調査 「都市化が生態に影響」 https://www.hokkaido-np.co.jp/article/666880/ 世界共通 2022-04-07 18:07:00
北海道 北海道新聞 G7外相、対ロ制裁強化へ ウクライナ「虐殺」非難 https://www.hokkaido-np.co.jp/article/666879/ 日本時間 2022-04-07 18:02:00
IT 週刊アスキー THQ Nordicの最新情報を届ける「デジタルショーケース2022」が8月13日4時に配信決定! https://weekly.ascii.jp/elem/000/004/088/4088734/ steam 2022-04-07 18:35:00
IT 週刊アスキー UCC上島珈琲、産地とのサステナビリティーにこだわった「UCC ORIGIN BLACK ルワンダ & ブラジル リキャップ缶275g」 https://weekly.ascii.jp/elem/000/004/088/4088725/ uccoriginblack 2022-04-07 18:30:00
IT 週刊アスキー ドン・キホーテ、SSD搭載の7型ウルトラモバイルPC「NANOTE NEXT」を5月より発売 https://weekly.ascii.jp/elem/000/004/088/4088728/ nanotenext 2022-04-07 18:10:00
IT 週刊アスキー PC『SDガンダムオペレーションズ』で★5-12 νガンダムが1体確定の「νガンダムセットボックス」が販売開始! https://weekly.ascii.jp/elem/000/004/088/4088733/ 販売期間 2022-04-07 18:05:00
マーケティング AdverTimes 「虹の似合うまち」岩手県雫石町がプロモーション動画公開 https://www.advertimes.com/20220407/article381143/ 「虹の似合うまち」岩手県雫石町がプロモーション動画公開岩手県雫石町は、町の魅力を盛り込んだプロモーション動画を月日に公開した。 2022-04-07 09:43:28
マーケティング AdverTimes 【人事】電通(5月1日付) https://www.advertimes.com/20220407/article381162/ 電通 2022-04-07 09:29:54
マーケティング AdverTimes UCC、『#香るどダンサーオーディション』 優秀作品は池田エライザとCM出演 https://www.advertimes.com/20220407/article381125/ ucccoldbrew 2022-04-07 09:22:35
マーケティング AdverTimes 18歳新成人へ「Twitterおとなの使い方マニュアル」 近畿大の学生と作成 https://www.advertimes.com/20220407/article381134/ japan 2022-04-07 09:14:28

コメント

このブログの人気の投稿

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