投稿時間:2023-06-02 12:20:03 RSSフィード2023-06-02 12:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] AIで振り込め詐欺防止 「ATM前の通話」検知 ゆうちょ銀、警視庁と実験 https://www.itmedia.co.jp/news/articles/2306/02/news102.html itmedianewsai 2023-06-02 11:21:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] ライフカード、表面は“無地”に クレカデザイン変更、ナンバーレス採用 https://www.itmedia.co.jp/business/articles/2306/02/news094.html itmedia 2023-06-02 11:04:00
IT ITmedia 総合記事一覧 [ITmedia News] にじさんじのANYCOLOR、東証プライムに https://www.itmedia.co.jp/news/articles/2306/02/news098.html anycolor 2023-06-02 11:03:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] HDDやSSD、SDカードの入れ替えを検討中なら要チェック ウエスタンデジタル製品がセール対象に https://www.itmedia.co.jp/pcuser/articles/2306/02/news106.html amazoncojp 2023-06-02 11:01:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders 食品卸の日本アクセス、買掛照合業務をAIで効率化、2025年までに年間1万2000時間を削減 | IT Leaders https://it.impress.co.jp/articles/-/24904 食品卸の日本アクセス、買掛照合業務をAIで効率化、年までに年間万時間を削減ITLeaders食品卸売業を営む日本アクセス本社東京都品川区は、取引メーカーとの買掛照合業務を効率化するため、AIを年月から運用している。 2023-06-02 11:10:00
AWS AWS Japan Blog 2023年5月25日(木) 開催「AWS Purpose Built Database Webinar : AWS Summit ハイライト, Amazon RDS / Amazon Aurora パフォーマンスのチューニングとモニタリング」開催のご報告 https://aws.amazon.com/jp/blogs/news/20230525_aws-purpose-built-db-webinar_wrapup/ iltdatabasewebinarawssum 2023-06-02 02:29:19
AWS AWS Japan Blog 2023年 AWS Purpose Built Database Webinar 一覧 https://aws.amazon.com/jp/blogs/news/2023fy-aws-purpose-built-database-webinar/ posebuiltdatabasewebinar 2023-06-02 02:29:15
python Pythonタグが付けられた新着投稿 - Qiita Google ColaboratoryでseleniumとChrome Driverをインストールする https://qiita.com/76r6qo698/items/cfea95c6b77ddaae518d alluurllibubuntunolonger 2023-06-02 11:45:03
python Pythonタグが付けられた新着投稿 - Qiita GitHub Actions で .python-version を読んで Python のセットアップを行う https://qiita.com/akeyhero/items/2e03a0a16c0a5d895f47 githubactions 2023-06-02 11:22:26
js JavaScriptタグが付けられた新着投稿 - Qiita 【SamuraiStats】2. サーバーを建ててLINEメッセージを送る https://qiita.com/kohki_takatama/items/2df783bff08b48f00cba messagingapiline 2023-06-02 11:09:59
Ruby Rubyタグが付けられた新着投稿 - Qiita 【AWS Cloud9】Ruby,Railsの導入方法 https://qiita.com/PB-193/items/e0ac178d0f456dfaa3c5 awscloud 2023-06-02 11:22:08
Ruby Railsタグが付けられた新着投稿 - Qiita 【AWS Cloud9】Ruby,Railsの導入方法 https://qiita.com/PB-193/items/e0ac178d0f456dfaa3c5 awscloud 2023-06-02 11:22:08
技術ブログ Developers.IO [アップデート] Amazon SNS の FIFO トピックでも AWS X-Ray のアクティブトレース統合機能が利用可能になりました https://dev.classmethod.jp/articles/active-tracing-fifo-topics/ amazonsns 2023-06-02 02:50:14
海外TECH DEV Community How To Create An UI Menu In Neovim https://dev.to/____marcell/how-to-create-an-ui-menu-in-neovim-2k6a How To Create An UI Menu In NeovimOne of the great things about neovim is the ability to easilty create plugins using lua lua is a very simple language and the way that it s integrated with neovim is really straight foward when neovim is initiated it reads a file called init lua in one of the paths configured you can check the path by opening neovim and typing h rtp for run time path you should see something like this the first path is the one that matters for us it means that neovim will search for the file inside nvim we can then go ahead the create a file there or use the file that you already have to create a function just to test thingswe can create a function to open a pop up menu using plenary popup like this you need to install neovim plenary if you don t already have it local popup require plenary popup local Win idfunction ShowMenu opts cb local height local width local borderchars ー │ ー │ ╭ ╮ ╯ ╰ Win id popup create opts title MyProjects highlight MyProjectWindow line math floor vim o lines height col math floor vim o columns width minwidth width minheight height borderchars borderchars callback cb local bufnr vim api nvim win get buf Win id vim api nvim buf set keymap bufnr n q lt cmd gt lua CloseMenu lt CR gt silent false endthe code is pretty self explanatory the only part that is a little confusing is the cb parameter this parameter is the function that you gonna call when someone intereact with the popup menu also we create a keymap for the popup buffer to close the popup when you hit qvim api nvim buf set keymap bufnr n q lt cmd gt lua CloseMenu lt CR gt silent false this part can also be a little confusing and the following is the code to close the UIfunction CloseMenu vim api nvim win close Win id true endthis is the function that we gonna call when we hit q when the pop up menu is openenedNow let s create another function to call the function that shows the menufunction MyMenu local opts local cb function sel print it works end ShowMenu opts cb endWe not gonna do anything here for now just open the menu with nothing inside and then you can close the menu by hitting qafter writing this data to nvim init lua you can load the file by running so then you can run lua MyMenu to call the function and show the menu you should see something like thisthere s cool but not useful how do we add data inside the menu we can add data there the same way that we do in any buffer just by setting lines of text the plugin that we gonna build is just a list of projects that we can chose from and the cd in to the project from vim we can add the lines of text by filling out opts the variable that we pass to the menu like thisfunction MyMenu local opts home me myproject home me myproject home me myproject this is just a list of things to show in the menu if you do that you should be able to see a list of those things nowAwesome We re almost there now we just need to do something when someone choses one of the thing in the list we can do that in the cb that we pass to the function local cb function sel vim cmd cd sel endif you hit enter on top of one of the lines that line will be passed to this function and then we ll change neovim current directory to that path in our example the paths aren t real but you get the idea you just need to put a real path there and that should do it one upgrade that we can do is to load a file with paths instead of hardcoding the paths in the function that way you don t need to open this lua file everytime you want to add a project to your list of projects we can do that just by reading a simple file with a list of projects same a list of project in projects home me myproject home me myproject home me myprojectnow we can read this file and add to the options like thislocal file io open projects r Open the file in read modelocal opts if file then for line in file lines do table insert opts line endend pass the opts to the file laterthe last thing we need to do is map this function to a shortcut that way we can hit the short cut and show the menu where we can chose our projectvim keymap set n lt leader gt o lt cmd gt lua MyMenu lt CR gt and that s pretty much it after you have a way of creating a menu you can thing about a lot of interesint things todo the idea presented here is just to show a easy way of creating a menu in neovim you can use lua to do anything that you want 2023-06-02 02:26:44
海外ニュース Japan Times latest articles Japanese high court rejects appeal for damages over forced sterilization https://www.japantimes.co.jp/news/2023/06/02/national/sterilization-court-appeal/ Japanese high court rejects appeal for damages over forced sterilizationThe two plaintiffs in Miyagi Prefecture had sought a total of million arguing that the law deprived them of self determination with regard to giving 2023-06-02 11:19:24
ニュース BBC News - Home Florida teenager Dev Shah wins US Spelling Bee with 'psammophile' https://www.bbc.co.uk/news/world-us-canada-65784595?at_medium=RSS&at_campaign=KARANGA charlotte 2023-06-02 02:33:37
GCP Google Cloud Platform Japan 公式ブログ Google Cloud Partner Top Engineer 2024 アワードプログラムのご案内 https://cloud.google.com/blog/ja/topics/partners/2024-google-cloud-partner-top-engineer-award-program/ 審査基準活動対象期間年月日年月日下記ポイントに基づき、技術的観点からGoogleCloudの普及に如何に貢献したかを総合的に判断します。 2023-06-02 03:00:00
ビジネス 東洋経済オンライン 83歳で父になる「アル・パチーノ」波乱の恋愛遍歴 相手は29歳、「生涯未婚」の信念は変わるのか | 映画・音楽 | 東洋経済オンライン https://toyokeizai.net/articles/-/676599?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2023-06-02 11:30:00
ビジネス プレジデントオンライン 「厚底王者ナイキもウカウカできない」2000億円市場に選手を自社育成しシェア獲得狙う"新参ブランド"の名前 - シューズを作って終わりではない…群雄割拠のスポーツメーカー新たな動き https://president.jp/articles/-/70225 厚底シューズ 2023-06-02 11:30:00
IT 週刊アスキー AIでイメージ素材を自動生成できるMSのデザインツール「Microsoft Designer」を使う https://weekly.ascii.jp/elem/000/004/139/4139329/ dalle 2023-06-02 11:30:00
IT 週刊アスキー ミント10倍!! カフェ・ド・クリエの「チョコミント」、今年は過去最強に https://weekly.ascii.jp/elem/000/004/139/4139326/ 過去 2023-06-02 11:30:00
IT 週刊アスキー アキバの各店でインテルやWindows 11のキャンペーンが開始! 対象品とショップを確認しておこう https://weekly.ascii.jp/elem/000/004/139/4139338/ windows 2023-06-02 11:30:00
海外TECH reddit 【UPDATE】Wife of dead cyclist has apologised and is moving away. Turns out that the "lawyer" that harassed me is a well-known loan shark! https://www.reddit.com/r/japanlife/comments/13y085j/updatewife_of_dead_cyclist_has_apologised_and_is/ 【UPDATE】Wife of dead cyclist has apologised and is moving away Turns out that the quot lawyer quot that harassed me is a well known loan shark First post and Second post Got a phone call Tuesday evening from the police they said that the woman wanted to apologise in person and asked me to come down to my local station Thursday morning I took the morning off work they are aware and have been very understanding and am sat in a room with two cops and the cyclist s wife She apologised whilst bowing super deeply and then explained that she was just mentally gone with the loss of her husband She then offers to pay for my door and doorbell I reject this before anyone starts calling me a heartless asshole like in the last update and says she understands she was completely in the wrong She and her kids are now moving to her parent s hometown in Touhoku so I won t hear from her again She gets up apologises again and leaves I am with the two cops They thank me for being very understanding and apologise for all of the trouble They then let me know that they worked out something The quot lawyer quot that tried intimidating me the first time is a loan shark and the deceased seemingly owed him a good chunk of change for a number of years It seems Mr Loan shark was taking advantage and looking to get a good pay day through me My heart sinks but the police assure me that quot he is a well known character and has been told to leave me well alone quot I find the idea that police seem to have a rapport with this guy a bit worrying I asked quot surely pretending to be a lawyer is a crime quot which the police just laughed off They tell me not to worry and that they need to run have a good day Call us if anything else comes up I go home and tell the wife who also just brushes it off quot all sorted itself out then よかったね quot Am I the only one who thinks that some underworld figure knowing my address is fishy Why are the police so nonchalent about his involvement I am relieved that this seems to be solved but also a bit freaked out Again apologies for any weird English you have all been very kind submitted by u ThrowawayChariHater to r japanlife link comments 2023-06-02 02:06:50
GCP Cloud Blog JA Google Cloud Partner Top Engineer 2024 アワードプログラムのご案内 https://cloud.google.com/blog/ja/topics/partners/2024-google-cloud-partner-top-engineer-award-program/ 審査基準活動対象期間年月日年月日下記ポイントに基づき、技術的観点からGoogleCloudの普及に如何に貢献したかを総合的に判断します。 2023-06-02 03:00: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件)