投稿時間:2022-02-25 09:35:39 RSSフィード2022-02-25 09:00 分まとめ(42件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「Windows 11 Insider Preview Build 22563」がDevチャネル向けにリリース − タブレット向けにタスクバーを最適化など https://taisy0.com/2022/02/25/153702.html build 2022-02-24 23:43:11
IT 気になる、記になる… Apple、「Apple Store」のiOS向け公式アプリをアップデート − 機能強化とパフォーマンスの向上 https://taisy0.com/2022/02/25/153700.html apple 2022-02-24 23:15:49
IT ITmedia 総合記事一覧 [ITmedia News] ウクライナのIT企業、ロシア侵攻の影響について発表 CleanMyMac Xなどを開発するMacPaw https://www.itmedia.co.jp/news/articles/2202/25/news074.html cleanmymacx 2022-02-25 08:20:00
TECH Techable(テッカブル) ベテランの勘を数値に変えて蓄積! 水稲専門の栽培管理アプリ「RiceLog」リリース https://techable.jp/archives/173945 ricelog 2022-02-24 23:00:30
js JavaScriptタグが付けられた新着投稿 - Qiita Gitリポジトリの一部を指定してclone(ダウンロード)したい場合にdegitが便利 https://qiita.com/3w36zj6/items/b005c46a150100d66d78 degituserreposubdirectoryタグ、ブランチ、コミットを指定する省略した場合はデフォルトブランチ基本的にはmasterまたはmainになります。 2022-02-25 08:14:52
Git Gitタグが付けられた新着投稿 - Qiita Gitリポジトリの一部を指定してclone(ダウンロード)したい場合にdegitが便利 https://qiita.com/3w36zj6/items/b005c46a150100d66d78 degituserreposubdirectoryタグ、ブランチ、コミットを指定する省略した場合はデフォルトブランチ基本的にはmasterまたはmainになります。 2022-02-25 08:14:52
技術ブログ MonotaRO Tech Blog Jenkins Day Japan 2021に登壇させていただきました https://tech-blog.monotaro.com/entry/2022/02/25/090000?utm_source=feed JenkinsDayJapanに登壇させていただきましたこんにちは。 2022-02-25 09:00:00
技術ブログ Developers.IO 【SwiftUI】iOS 15からの@FocusStateを使用して画面タップでキーボードを閉じる方法 https://dev.classmethod.jp/articles/focusstate-keyboard/ focusstate 2022-02-24 23:00:45
海外TECH DEV Community Read XKCD in the terminal with some bash magic https://dev.to/robole/read-xkcd-in-the-terminal-with-some-bash-magic-2m2g Read XKCD in the terminal with some bash magicXKCD is probably the most popular webcomic with Devs It only seems right that you can read it from the comfort of your terminal via a xkcd command How can we pull that off I use Kitty as my terminal of choice It is fast feature rich and is cross platform Linux and macOS The real game changer is that it is one of the few terminal emulators that uses GPU rendering and has its own graphics protocol for displaying images So out of the box Kitty can show images with caveats why not use put this to use TLDR behold the script usr bin env bash Save this file as xkcd URL if gt amp amp r then URL fidata curl s L URL grep href cut d gt f cut d lt f kitty kitten icat dataRun xkcd to fetch the latest comic or xkcd r for a random selection Read on if you d like to understand the finer details Displaying imagesKitty shows images via the icat kitten which is included in the default installation A kitten is Kitty s way to make programs to extend its functionality To display an image you can run the following command in Kitty kitty kitten icat img pngImageMagick must be installed for icat to work It supports all image types supported by ImageMagick I believe iTerm has similar functionality with its imgcat script If you want to use another terminal emulator maybe you can use a python library called Überzug to do this instead Scripting time You should not need to install anything else if you have a nix machine or have cygwin installed on Windows its installed with Git usually With the GNU coreutils curl grep and cut we should be able to get the latest webcomic from the XKCD homepage It would be nice to be able to read a random XKCD also Is there a way to do this from the XKCD website We are in luck because the XKCD website has a Random page where they fetch a random comic from their archive for you on the server So we can just inspect that page the same as the homepage To grab the homepage we use curl with the s flag to run in silent mode so there is no progress meter or error messages curl s We can use grep to pick out the URL of the image of the webcomic The webpage is quite short so we wont have to write anything too gnarly We just want to uniquely identify the image URL with the simplest regex regular expression possible On inspection of the HTML it looks like this snippet is the easiest to target Image URL for hotlinking embedding lt a href gt lt a gt There is an extra space after the equals sign for the href attribute oddly If we target the href attribute with the beginning of the URL we will will get this as the only result The regex href should do the trick We pipe the output of the curl command to the grep command and get the snippet we are after Next we want to get the URL on its own We can use cut to strip out the unwanted parts of this string using the angled brackets as a delimiter Using cut d gt f on the output gives us lt a if we pipe this output to cut d lt f we get the URL on its own So as a single line command we can run the following the latest webcomic kitty kitten icat curl s grep href cut d gt f cut d lt f Lets tidy the script up to make it more readable and add the ability to choose a random comic with a r flag If there is a r argument passed as the first parameter to the script we will fetch the page instead of the homepage Since this URL will redirect you to another page we need to adjust our curl command to follow this redirect We can do this by adding the L flag And thats it the rest of the logic is the same for getting the correct image from the fetched page This is our final script which we put in a file named xkcd usr bin env bashURL if gt amp amp r then URL fidata curl s L URL grep href cut d gt f cut d lt f kitty kitten icat dataNow to get a random comic we can run xkcd r Mission accomplished You got to love the power of bash scripting for this type of task Our basic functionality can be achieved with a single line command but in less than lines we have made a tidy script for reading comics on the commandline 2022-02-24 23:26:12
海外TECH Engadget Clubhouse adds chat function for those who would rather text https://www.engadget.com/clubhouse-adds-chat-function-for-those-who-would-rather-text-234521425.html?src=rss Clubhouse adds chat function for those who would rather textSocial audio app Clubhouse is adding a text chat function to its voice rooms it announced Thursday Similar to what you see in Discord or a Zoom call users who don t want to speak can write out their opinions in the room s chat channel While it may seem counterintuitive for an audio only app to also feature text it s a change that some users have been gunning for Especially in extra large rooms or rooms dominated by a few celebrity speakers an in chat function may be the only way some people can join the discourse But a chat function can also be a moderation nightmare as anyone who has spent a few minutes on Twitch can attest to Clubhouse has laid out a few ways for creators to keep their rooms from flying off the handle Creators can appoint mods to delete messages and kick out disruptive users from the room You can also report messages that violate Clubhouse s user guidelines to the platform For those who would rather keep their rooms audio only the in chat room function is optional Creators can opt out of in room chat when they create their room And if you choose to record your room s audio the written chat log will also be saved As social platforms like Facebook Twitter LinkedIn and Reddit add Clubhouse like features Clubhouse is starting to resemble the rest of social media Once only available as a mobile app Clubhouse last month rolled out a way for people to listen to conversations on their desktops Users can also send direct messages to each other with Backchannel As live voice chat rooms become less of a novelty Clubhouse will likely have to get creative in order to keep up with competitors 2022-02-24 23:45:21
海外科学 NYT > Science Who Is Behind QAnon? Linguistic Detectives Find Fingerprints https://www.nytimes.com/2022/02/19/technology/qanon-messages-authors.html Who Is Behind QAnon Linguistic Detectives Find FingerprintsUsing machine learning separate teams of computer scientists identified the same two men as likely authors of messages that fueled the viral movement 2022-02-24 23:17:19
海外TECH WIRED How US Sanctions Will Crimp Russia's Tech Sector https://www.wired.com/story/us-sanctions-crimp-russia-tech ukraine 2022-02-24 23:46:43
金融 金融総合:経済レポート一覧 FX Daily(2月23日)~ドル円、115円絡みでの値動き http://www3.keizaireport.com/report.php/RID/485620/?rss fxdaily 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 「平時」でないがゆえの難しさ 地政学リスクに配慮できない金融政策:Market Flash http://www3.keizaireport.com/report.php/RID/485624/?rss marketflash 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 米金融政策の変化に伴う経験則 http://www3.keizaireport.com/report.php/RID/485627/?rss 大和総研 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 国内銀行の資産・負債等(銀行勘定)(2022年12月末) http://www3.keizaireport.com/report.php/RID/485628/?rss 日本銀行 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 預金種類別店頭表示金利の平均年利率等 2月24日 http://www3.keizaireport.com/report.php/RID/485629/?rss 日本銀行 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 第1弾の対ロ制裁よりも追加措置が世界経済・金融市場に大きな打撃に~第1弾は先進国への打撃が小さい措置に限定された...:木内登英のGlobal Economy & Policy Insight http://www3.keizaireport.com/report.php/RID/485631/?rss lobaleconomypolicyinsight 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 シュローダー グローバル市場見通し(2022年2月号) http://www3.keizaireport.com/report.php/RID/485650/?rss 見通し 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 金融市場NOW:米利上げで金利は一方的な上昇が続くのか?~前回利上げ時は、初回利上げ後に10年国債利回りは一旦低下 http://www3.keizaireport.com/report.php/RID/485654/?rss 国債利回り 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 世界経済INSIDE-OUT vol.34「米国のインフレはそう簡単には収まらない?~住宅家賃の動向がポイントに」 http://www3.keizaireport.com/report.php/RID/485655/?rss insideoutvol 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 NYダウ、ウクライナ懸念で一段安~昨年3月以来、11カ月ぶり安値に:マーケットレポート http://www3.keizaireport.com/report.php/RID/485656/?rss 三井住友トラスト 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 ニュージーランド金融政策(2022年2月)~追加利上げと債券保有残高の削減計画:マーケットレター http://www3.keizaireport.com/report.php/RID/485657/?rss 投資信託 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 続・小説のなかの証券市場と法~マルセル・プルースト『失われた時を求めて(À la recherche du temps perdu)』(1913年~1927年) http://www3.keizaireport.com/report.php/RID/485663/?rss 失われた時を求めて 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 税制の相違が世界の資産運用ビジネスに与えている影響を4つの切り口から考える http://www3.keizaireport.com/report.php/RID/485664/?rss 日本証券経済研究所 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 大学ファンドの異質性~国民負担を生じさせないために http://www3.keizaireport.com/report.php/RID/485665/?rss 日本証券経済研究所 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 〔講演〕資本市場を巡る国際動向 http://www3.keizaireport.com/report.php/RID/485668/?rss 日本証券経済研究所 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 〔講演〕資産の形成・世代間移転と税制 http://www3.keizaireport.com/report.php/RID/485669/?rss 日本証券経済研究所 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 地方公共団体のESG債~神戸市と京都市はいずれも斬新:基礎研レター http://www3.keizaireport.com/report.php/RID/485678/?rss 地方公共団体 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 今週の内外株式市場の下落について~ロシアによるウクライナへの実力行使でリスクオフ:マーケットレター http://www3.keizaireport.com/report.php/RID/485681/?rss 実力行使 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 政治・経済スケジュール 2022年3月号 http://www3.keizaireport.com/report.php/RID/485682/?rss 三菱ufj 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 INVESTMENT STRATEGY MONTHLY<投資戦略マンスリー> 2022年3月号 http://www3.keizaireport.com/report.php/RID/485683/?rss investmentstrategymonthly 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 【注目検索キーワード】地政学リスク http://search.keizaireport.com/search.php/-/keyword=地政学リスク/?rss 検索キーワード 2022-02-25 00:00:00
金融 金融総合:経済レポート一覧 【お薦め書籍】5秒でチェック、すぐに使える! 2行でわかるサクサク仕事ノート https://www.amazon.co.jp/exec/obidos/ASIN/4046053631/keizaireport-22/ 結集 2022-02-25 00:00:00
金融 ニュース - 保険市場TIMES 保険市場に『MARINE PASSPORT(リスク細分型海外旅行保険)』が新登場! https://www.hokende.com/news/blog/entry/2022/02/25/090000 2022-02-25 09:00:00
海外ニュース Japan Times latest articles Japan announces more sanctions on Russia after attack on Ukraine https://www.japantimes.co.jp/news/2022/02/25/national/japan-new-russia-sanctions/ Japan announces more sanctions on Russia after attack on UkraineJapan will impose additional sanctions targeting Russia following its invasion of Ukraine Prime Minister Fumio Kishida said Friday joining the United States and Europe in 2022-02-25 08:35:10
ニュース BBC News - Home Russia invasion: Frontline Ukraine city holds breath amid attack https://www.bbc.co.uk/news/world-europe-60516704?at_medium=RSS&at_campaign=KARANGA attack 2022-02-24 23:14:16
ニュース BBC News - Home Ros Atkins on... how Ukraine became the front line between the West and Russia https://www.bbc.co.uk/news/world-europe-60518078?at_medium=RSS&at_campaign=KARANGA ukraine 2022-02-24 23:09:08
ニュース BBC News - Home Arsenal 2-1 Wolverhampton Wanderers: Late own goal from visiting goalkeeper Jose Sa gives hosts dramatic win https://www.bbc.co.uk/sport/football/59736889?at_medium=RSS&at_campaign=KARANGA Arsenal Wolverhampton Wanderers Late own goal from visiting goalkeeper Jose Sa gives hosts dramatic winAn own goal from Wolves goalkeeper Jose Sa helps Arsenal complete a dramatic late turnaround in their pursuit of a top four Premier League place 2022-02-24 23:29:06
ニュース BBC News - Home European football clubs display support for Ukraine https://www.bbc.co.uk/sport/football/60517348?at_medium=RSS&at_campaign=KARANGA European football clubs display support for UkraineAs Ukraine came under attack from Russia on Thursday football continued across the continent with clubs players and fans showing their support for the Eastern European country 2022-02-24 23:45:24
北海道 北海道新聞 欧州の3協会が会場変更を要求 サッカーW杯予選でロと対戦予定 https://www.hokkaido-np.co.jp/article/649628/ 要求 2022-02-25 08:06:00
マーケティング MarkeZine 【ウェビナー情報】仮説立てした購買増加の図式を基に戦術を実行、ベビースターのプロモーション成功事例 http://markezine.jp/article/detail/38433 成功事例 2022-02-25 08:30: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件)