投稿時間:2022-04-05 10:17:50 RSSフィード2022-04-05 10:00 分まとめ(26件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] そのクレカを選択した理由は? 利用金額は月5万800円 https://www.itmedia.co.jp/business/articles/2204/05/news072.html itmedia 2022-04-05 09:53:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] ちょっと前までブームだったのに、なぜ「高級食パン」への風当たりは強いのか https://www.itmedia.co.jp/business/articles/2204/05/news052.html itmedia 2022-04-05 09:51:00
IT ITmedia 総合記事一覧 [ITmedia News] マスクしたまま顔認証+決済 NEC、大阪メトロ店舗で実験 https://www.itmedia.co.jp/news/articles/2204/05/news073.html 実証実験 2022-04-05 09:44:00
IT ITmedia 総合記事一覧 [ITmedia News] 「○駅から混雑」……JR東、経路検索に混雑情報表示する実験 https://www.itmedia.co.jp/news/articles/2204/05/news071.html itmedia 2022-04-05 09:16:00
TECH Techable(テッカブル) 非公開の哺乳類の標本を自由な角度から閲覧! 国立科学博物館、剥製3Dデジタル図鑑を公開 https://techable.jp/archives/176458 yoshimotod 2022-04-05 00:00:15
デザイン コリス これまでとは異なるCSSフレームワークが登場! 一貫性のあるUIコンポーネントを簡単に実装できる -Open Props https://coliss.com/articles/build-websites/operation/css/open-source-css-variables-open-props.html 続きを読む 2022-04-05 00:36:53
python Pythonタグが付けられた新着投稿 - Qiita python+opencvで画像処理の勉強9 パターン認識 https://qiita.com/tanaka_benkyo/items/43ef63f54f3dc191e64b ここで、N個の学習用の入力画像群の特徴量をK個とすると、入力画像は、特徴ベクトルboldsymbolxnxnxncdotsxnKTncdotsNとなる。 2022-04-05 09:50:50
python Pythonタグが付けられた新着投稿 - Qiita Pythonのf文字列(フォーマット済み文字列リテラル)の使い方 https://qiita.com/TP-faure/items/216b9d76b3855a389e8c まずはf文字列からf文字列とはPythonから追加された、文字列の中に書式を指定して数値などの値を埋め込めるようにしたもの。 2022-04-05 09:42:34
Azure Azureタグが付けられた新着投稿 - Qiita Azure Key Vaultのアクセスポリシー "Azure Databricks"は何を指すか https://qiita.com/kyohets/items/685630ab86c1547a2100 だとすると、アクセスポリシーにAzureDatabricksがあれば、誰でもAzureKeyVaultBackedScopeを設定できてしまうのか気になりました。 2022-04-05 09:37:33
技術ブログ Developers.IO [データアナリティクス事業本部] 若手Pythonエンジニアとして1年間働いてみました! https://dev.classmethod.jp/articles/da-bs-bd-workstyle-python-engineer2/ python 2022-04-05 00:24:40
海外TECH Ars Technica Zyxel patches critical vulnerability that can allow Firewall and VPN hijacks https://arstechnica.com/?p=1845801 administrative 2022-04-05 00:14:44
海外TECH DEV Community Micro-frontends building blocks: Monorepos https://dev.to/aws-builders/micro-frontends-building-blocks-monorepos-ge1 Micro frontends building blocks Monorepos A monorepo what s that A while back I was finishing work with an employer and was due to join my new team I remember feeling excited when I heard that the new project will be using monorepos I did not have a clue what monorepos were only I ve heard that that s what the big boys were using What is a Monorepo image from Voiceflow comDefinitely not mainstream still not these days they were supposed to promote better collaboration and give the teams using it full autonomy and are perfect for when you re anticipating the project to scale Yeah OK that sounds good however I just didn t understand how just by co locating all your sub projects into a single repository will magically give you all the advantages mentioned Monorepo is code co locationYes Monorepo is code co location but there is more to it than that Just putting several projects in one repo does not make it a monorepo In fact if that s the only thing that we do we are creating a monolith A good monorepo enables you to create distinct and separate projects that have well defined relationships and dependencies This is a very common misconception in software engineering where as far as I can remember we have been conditioned to put everything in its own repository to encourage team autonomy But it also promotes isolation that creates silos within the team and that essentially kills collaboration Monorepo promotes dependencies and relationshipsMonorepos excel with dependency management now that all the code is co located in one spot Because a monorepo can contain many disparate projects that may have deep and non trivial relationships monorepo tooling are optimized for build speed It can cache previously performed operations so that running them again will skip the work that has already been done to produce substantial time savings The node modules folder needs no introduction its that deep dark place where all project dependencies end up in Current monorepo tooling can save a substantial amount of disk space by hoisting common dependencies to the top level so that all lower level dependencies are satisfied from there instead Monorepo is one version for allWith monorepos version configuration is simple there is only one version and this essentially is a snapshot of the system removing the need to manage the multiple different versions of your application and its dependencies Monorepo is atomicImagine all your system in one repo Web frontend IOS and Android mobile app shared libraries APIs Lambdas IaC scripts etc The ability to be able to work on a task and do everything in the same commit that is possible with monorepos Monorepo is intelligent toolingMany of the monorepo benefits are not possible without the advancements in current monorepo tools Tools like Lerna Bazel Nx Rush Turborepo to name a few Lerna is probably the grand daddy of all monorepo tools CRA Babel Jest are a few projects that use it Bazel has been refined and tested for years at Google to build heavy duty mission critical infrastructure services and applications Turborepo is the monorepo for Vercel the leading platform for frontend frameworks These tools can help keep your monorepo workspaces fast understandable and manageable Monorepo tools is an excellent resource detailing the many intelligent features of these tools that help manage your monorepo projects Monorepo is collaborationBecause all the team s code maybe even the whole organization s exist in the same repository monorepos encourage code sharing transparency and cross team collaboration This does not come for free though There will be more noise but with good management and the help of efficient tooling this is all possible Monorepo is peopleSoftware engineering is as much technical as it is people Yes monorepo is a technical strategy to structure your project and workspace However it is actually much more than that Because is encourages people to collaborate effectively and work efficiently together it represents a change that probably many software teams need today ConclusionMoving to monorepos represents a paradigm shift in software engineering There are reasons why many organizations have made the shift There are obviously many gains with using monorepos that made these organizations move But because it represents a fundamental change and shift in thinking there are also many detractors Because on the surface what may look like a simple change in project and workspace structure is actually an organizational change and that can be hard in any industry ResourcesBuilding Micro Frontends by Luca MezzaliraMonorepo toolsMisconceptions about Monorepos Monorepo MonolithGuide to Monorepos for Front end CodeHow monorepos can help improve your productivityOriginally published at Fullstack Developer Tips 2022-04-05 00:51:49
海外TECH DEV Community The Future of Gaming and NFTs https://dev.to/echo3d/the-future-of-gaming-and-nfts-4end The Future of Gaming and NFTsIn the world of online video games the underlining business model has been relatively stable for many years now The premise always being simple A game is either paid for or free and they make money through microtransactions or subscriptions usually to attain in game goods or rewards Though every game has its own differences in these ecosystems the game developers publishers tend to have all rights and ownership over any digital asset players own in these games A popular example being the online game Fortnite with every skin you purchase being continually owned by the Epic Games and with no official way to resell your skins Credit Fortnite Just in the past few years though non fungible tokens or NFTs have been ramping up to have a major impact on the business model for gaming companies and the industry as a whole As more players become warier of investing their time and money into games that don t provide them any sense of long term ownership people have been flocking to a new form of assets in the form of NFTs This has given birth to a new space within the virtual economy A economic frontier that ties technology and societal change The virtual nature of video games made them a prime industry for virtual marketplaces to flourish and provide value There are countless articles explaining what an NFT is and chances are you ve heard about the pictures from the Bored Ape Yacht Club selling for millions of dollars But the basic premise is NFTs guarantee the ownership by players of unique virtual assets collectables items skins tokens etc Instead of a game studio having the ability to delete your assets or ban you from the game your ownership precedes that authority giving you the ability to resell or trade said items Though still a novel concept more game studios are becoming interested in the space Credit AxieInfinityWith the success and big press around the popular and successful NFT based game Axie Infinity it seems like more companies will be taking a crack at implementing a play to earn model in their games In the game Axie Infinity players are compensated for actively playing the game and can sell or trade their in game characters with other players for real money This has built real economies and communities Big gaming studios like Ubisoft and Zynga and smaller projects like SYN CITY are attempting to build mainstream games that implement NFTs Scan this QR code to see something awesome Or go to go echod co Zau with your phone browser As the co founder of Twitch Justin Kan states on Twitter NFTS are better for gamers Allowing gamers to have ownership of the assets they buy and earn in game allows them to participate in the potential growth of a game It lets gamers preserve some economic value when they switch to playing something new Companies are also hoping to monetize off collecting transaction fees as these assets get traded in the secondary markets among players and nobody wants to be late to the potential boom Games range from collectathon games such as Axie Infinities to entire virtual worlds such as Decentraland where users have invested millions into virtual real estate in the hopes it appreciates in the future The possibilities are endless and as more people experiment within the space these games will only become more fleshed out and expansive Credit Decentraland Currently studios small teams and individuals are ramping up their own projects to claim their piece of the pie in the new virtual economy While this demand has been increasing developers may be looking for quicker ways to update and develop their games in the fast growing space echoD a cloud solutions platform that helps you stream D content into your games allowing you to swap out D assets without entirely rebuilding your app or requiring your users to download update packages to continue to play the game As people s attention span shorten it s getting more important to release quick content updates to keep players engaged and echoD helps you move all your D assets to the cloud Upload your assets edit them and see real live change in your games You can also easily store your NFT and showcase it in augmented reality Check out echoD s docs to learn more Scan me By Jason LinechoD www echoD co Techstars is a cloud platform for D AR VR that provides tools and network infrastructure to help developers amp companies quickly build and deploy D apps games and content 2022-04-05 00:50:19
海外TECH DEV Community How to fight your Impostor Syndrome and win? https://dev.to/iampearceman/how-to-fight-your-impostor-syndrome-and-win-61p How to fight your Impostor Syndrome and win Imposter Syndrome is a problem for me Most of us will never be free of self doubt but to be honest I don t want to be free of Imposter Syndrome even Humility intimidation and fear are all beneficial feelings that keep us hungry and keep us from becoming arrogant On the other hand Imposter Syndrome may be paralyzing leading to discouragement and a sense of powerlessness The good news is that there are a few pointers to share with you that have helped me manage my difficult emotions   Momentum Is Everything When I take a step back and consider the modest things I do to overcome Imposter Syndrome I realize they re essentially small efforts that help me achieve the medium to the significant goal I ve been assigned These small acts of affirmation pile up and as the good sensations continue to flow I find myself suddenly filled with a sense of self assurance that encourages me to try new things So how does this method relate to my day to day activities Let s have a look at what we ve got here    Make Task Commitments in Front of the Team Even if you are hesitant because of a lack of confidence in a task put your face on it and accept it Essentially you will make yourself accountable You might pretend to do something else but the fact is that the assignment isn t going to disappear and the sooner you do it the sooner it will be something you don t have to worry about Making yourself accountable is a fantastic approach to encouraging yourself It also demonstrates how we may create situations in our minds to paralyze ourselves in fact the work is typically not as terrible as we ve made it out to be   Little Victories The most effective approach to generating momentum is through little wins Too frequently we see huge tasks as a mountain to climb and not knowing where to begin may demotivate or overwhelm the brain paralyzing us into doing nothing or losing interest When we break projects down they become more doable and something you can work on in tiny increments On the other hand the little wins don t have to do with your massive tasks or your given project they re just about getting something on the board    Here are a few ideas for small victories to help you get your day started  Refactor Code Unless the code hasn t been maintained you ll probably need to make a few modifications but it s a win so take it  Update documentation Submit a suggestion to update the README or other documentation Add some facts correct grammatical errors or rephrase a statement Yes that small  Conduct a Code Review Conducting code reviews is an excellent method to analyze how you would have performed a task if you didn t have to finish it The best sensation Furthermore checking out your colleague s work may enhance your sense of accountability when you write code  Report Bugs Because who doesn t like to search for the wrong things Reporting a bug is a contribution Bug reporting also gets you thinking about ways to enhance a project which may inspire you to think of additional ways to improve it   Inbox Zero Getting emails out of my inbox is motivating or maybe some other forms of messages my WhatsApp Telegram and Discord for example are full of unread messages Get as near to your inbox zero as possible  Contribute a Minor Fix Not every PR must include a new feature Even if the change is minor submit it Not every pull request needs to revolutionize the world  Start a Discord Slack conversation Sometimes just talking is enough to give ideas and motivate to jump into coding It could be about anything Start even with sharing about your last meal or movie you watched  Little victories are all about doing anything to generate a sense of accomplishment and momentum There is no work too minor or beneath your title to be considered a win   Schedule Quick Meetings and Pair Program Meetings particularly pair programming are a terrific method to invoke accountability and motivation You re forced to show up you re pushed to perform and you can ask questions and bounce ideas around These gentle nudges are an excellent approach to boosting motivation and enthusiasm Being with someone else also takes away the sensation of being on an island where everyone counts on you to fulfill your responsibilities    Contribute to Passions Contributing to initiatives that align with your passions whether inside or outside your company is an excellent way to start the day feeling positive and productive The endorphins of coding in your comfort zone and the small victories resulting from that effort serve as a ramp for completing things you aren t as enthused or confident about   Talk to Your Manager and Colleagues They Care  Even the worst bosses won t put you in a position to fail if the job isn t done well or on schedule it s also their problem Your manager and coworkers trust you to complete assignments and they won t throw difficulties at you that they don t think you ll be able to handle If you believe an issue is beyond your abilities whether or not you have Impostor Syndrome you should speak with your management or coworkers as soon as possible Your manager and coworkers will reassure you that you are capable and more importantly will assist you in planning how to begin tackling the problem   Remember no teammate wishes to see you fail so they ll gladly assist you in getting back on track If it isn t the case maybe it s time to reconsider your work environment  Your Work does not define you Work is only a tiny part of your life  Impostor Syndrome does not go away and if it does it means we ve gotten cocky or arrogant both of which are far worse outcomes Whatever your industry position or degree of expertise overcoming Impostor Syndrome even if just for a day is all about small victories that prepare you for greater responsibilities Keep punching and chipping away at that evil until you ve overcome it You re wiser and more critical than your Impostor Syndrome will let you believe 2022-04-05 00:25:28
海外TECH Engadget Hackers breached Mailchimp to target crypto holders https://www.engadget.com/hackers-breached-mailchimp-to-target-crypto-holders-002723754.html?src=rss Hackers breached Mailchimp to target crypto holdersHackers used internal tools from Mailchimp to target customers from a total of users including hardware cryptocurrency wallet Trezor reportedThe Verge Trezor users over the weekend received emails claiming that their accounts were compromised in a data breach The email included a purported link to an updated version of Trezor Suite along with instructions to set up a new pin ーthough in actuality it was a phishing site meant to capture the contents of their digital wallets In a tweet on Sunday Trezor confirmed that the emails were a part of a sophisticated phishing campaign by a malicious actor that targeted MailChimp s newsletter database “The Mailchimp security team disclosed that a malicious actor accessed an internal tool used by customer facing teams for customer support and account administration quot Trezor wrote in a blog post quot The bad actor gained access to this tool as a result of a successful social engineering attack on Mailchimp employees quot In other words the hackers managed to trick employees in MailChimp s customer support team into handing over their log in credentials then used the company s own internal tools to send the emails The Trezor attack specifically was planned to a “high level of detail according to the company s blog post Still in order for the attack to be successful Trezor users had to download the fake app and submit their wallet credentials It s unlikely many made it that far as Trezor points out in its post considering that most operating systems would have notified the user that they were downloading software from an unknown source MailChimp first became aware of the breach on March th according to a statement by its chief information officer Siobhan Smith given to The Verge The hackers were able to obtain audience data from different MailChimp clients meaning that Trezor is far from the only company likely impacted Decentraland the in browser metaverse platform confirmed on Twitter that its newsletter was among those caught up in the hack Attention Our newsletter subscribers email addresses were leaked in a Mailchimp data breach Please stay alert as the malicious actors may use your email address to try and message you impersonating the Decentraland Foundation Learn more details ーDecentraland decentraland April We ll likely find out what other companies were involved in the MailChimp hack in the days to follow The company has already alerted all of its clients who were involved 2022-04-05 00:27:23
金融 ニッセイ基礎研究所 日銀の金融政策正常化時にとるべき国内債券のアクティブ戦略 https://www.nli-research.co.jp/topics_detail1/id=70703?site=nli 教科書的には、イールドカーブがスティープ化する場合に採用すべき債券アクティブ戦略として、短期金利、長期金利、超長期金利の順で金利上昇幅が大きくなるため、年限構成比の調整を行う戦略では、一般的にバーベル戦略よりもブレット戦略が支持されることになる。 2022-04-05 09:59:53
金融 ニッセイ基礎研究所 増える外国資本、長期投資の定着で優良不動産の取得はより困難に https://www.nli-research.co.jp/topics_detail1/id=70702?site=nli nbsp外国資本が日本の不動産市場へ投資する理由には、日本の不動産市場の規模が大きいこともある。 2022-04-05 09:56:54
金融 日本銀行:RSS 【概要説明】黒田総裁「通貨及び金融の調節に関する報告書」(衆議院財務金融委員会) http://www.boj.or.jp/announcements/press/koen_2022/ko220405a.htm 財務金融委員会 2022-04-05 09:10:00
ニュース @日本経済新聞 電子版 人材確保へ初任給増 ダイキン7年ぶり、百貨店や鉄道も https://t.co/7nOwmHCNGr https://twitter.com/nikkei/statuses/1511131694631251970 確保 2022-04-05 00:00:46
ニュース BBC News - Home The Papers: Zelensky 'haunted' by Bucha visit, and tribute to soap icon https://www.bbc.co.uk/news/blogs-the-papers-60991441?at_medium=RSS&at_campaign=KARANGA ukraine 2022-04-05 00:07:44
北海道 北海道新聞 大リーグOP戦、鈴木は2安打 沢村は1/3回を無失点 https://www.hokkaido-np.co.jp/article/665509/ 大リーグ 2022-04-05 09:16:00
北海道 北海道新聞 南富良野、出直し町長選が告示 前副町長届け出、無投票の公算大 https://www.hokkaido-np.co.jp/article/665500/ 上川管内 2022-04-05 09:03:49
北海道 北海道新聞 栗山町長選告示、現職が届け出 無投票の公算大 https://www.hokkaido-np.co.jp/article/665502/ 任期満了 2022-04-05 09:02:40
マーケティング AdverTimes 大日本印刷モビリティ事業が取り組む「デザインの実験室」、素材と思考のデザインスタディを公開 https://www.advertimes.com/20220405/article380822/ 大日本印刷モビリティ事業が取り組む「デザインの実験室」、素材と思考のデザインスタディを公開大日本印刷は、月日より東京・市ヶ谷にあるDNPプラザで「FUTURESPECTLabー素材と思考のデザインスタディー」を開催する。 2022-04-05 00:52:43
海外TECH reddit Place has ended. https://www.reddit.com/r/place/comments/twhfmh/place_has_ended/ Place has ended Thank you to everyone who participated Maybe the real art was the friends we made along the way submitted by u ggAlex to r place link comments 2022-04-05 00:06:02
ニュース THE BRIDGE 令和トラベルの「NEWT」ついに予約開始ーー篠塚氏が語る「かんたん」海外ツアー体験はじまる https://thebridge.jp/2022/04/newt-finaly-open-their-reservsation-service 令和トラベルの「NEWT」ついに予約開始ー篠塚氏が語る「かんたん」海外ツアー体験はじまるニュースサマリデジタル旅行代理店の令和トラベルは月日、海外旅行ツアーパッケージが購入できる「NEWTニュート」のツアー予約開始を伝えている。 2022-04-05 00:03:25

コメント

このブログの人気の投稿

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