投稿時間:2021-12-31 20:14:19 RSSフィード2021-12-31 20:00 分まとめ(16件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese 軽くてコンパクトなのに耐荷重135kg。イタリアのベストデザイン賞を受賞したポータブルチェア「bip」 https://japanese.engadget.com/bip-portable-chair-103505367.html BIPは「信じられないほど軽い」、「信じられないほどコンパクト」であることに加え、革新的な脚型のイスとなっているので、どんな場面や場所でも使用することができます。 2021-12-31 10:35:05
AWS AWS Japan Blog 自律的な旅:消費財企業がサプライチェーンの需要計画をどのように変革できるか https://aws.amazon.com/jp/blogs/news/the-autonomous-journey-how-cpg-firms-can-transform-supply-chain-demand-planning/ 可視性データ分析高度な分析とシミュレーション可視性在庫を可視化することで、保有している在庫量、ステータス、在庫場所輸送中を含むを把握できるため、在庫状況をリアルタイムで正確に判断して予測できます。 2021-12-31 10:26:40
python Pythonタグが付けられた新着投稿 - Qiita NotionのAPIを使ってPythonからデータベースの値を取得すする。 https://qiita.com/bluedack/items/4995f3879b1ef6e1b293 NotionのAPIを使ってPythonからデータベースの値を取得すする。 2021-12-31 19:54:06
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) <PHP>特定の選択をしたときのみ質問を表示する https://teratail.com/questions/376215?rss=all ltPHPgt特定の選択をしたときのみ質問を表示する前提・実現したいこと下に示すコードでスカートを選択したときのみ、丈を選択するメニューが出てくるようにしたいのですがif文の中身の書き方がわかりません。 2021-12-31 19:37:55
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) axiosで取得したデータをsetStateする際にバッチ処理がされず、何度もレンダリングされてしまう https://teratail.com/questions/376214?rss=all 2021-12-31 19:37:05
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) データ抽出、転記のマクロコード(GAS) https://teratail.com/questions/376213?rss=all データ抽出、転記のマクロコードGAS下記のようなExcelVBAマクロを、スプレッドシートGAS版で作りたいのですが、GAS初心者でコードがわかりません。 2021-12-31 19:27:47
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) sshでリモート実行したpythonの実行時、cv2のimportエラー https://teratail.com/questions/376212?rss=all sshでリモート実行したpythonの実行時、cvのimportエラー前提・iPhoneのショートカット機能から、公開鍵認証でラズパイにssh接続・ラズパイ上に配置されたpythonを実行すると下記のエラーが発生・対象プログラムは、local環境ラズパイから実行すると正常に動作する切り分けのためシンプルなソースで実行してみたところ、cvのimportに対してエラーしていました。 2021-12-31 19:24:03
海外TECH DEV Community Remote Debugging on the Last Day of - Building DDTJ Day 10 https://dev.to/codenameone/remote-debugging-on-the-last-day-of-building-ddtj-day-10-3i64 Remote Debugging on the Last Day of Building DDTJ Day Yesterday the DDT PoC started working today is the last day of my two week “hack fest on DDTJ…Here s where we stand The second week is finally over and while I built a working DDT proof of concept I wasn t able to complete a fully working MVP The difference is that a proof of concept shows something working an MVP needs to do something useful DDT has yet to be realistically useful Making DDT useful is my main goal right now To facilitate that I m trying to get it to work with a Spring Boot application So far this isn t going great but I m making iterative progress Running the application like we do a “hello world just doesn t work The backend is blocked and the launch method never returns Spring Boot has a relatively elaborate bootstrap loading phase which causes issues with debuggers The approach is to bind a remote debugger which wasn t supported by DDTJ so I added that support With remote debugging and some command line magic for spring boot I was able to connect to the spring boot VM and got the whole thing working Weird BugsRight now I m in a bug squashing phase Run the spring boot pet clinic app with remote debugging Launch the backend Connect them and find a bug Fix rinse repeat This is tedious but mostly running smoothly Unfortunately I seem to run into issues that are very hard to debug E g Unexpected JDWP Error which is thrown by the JDI implementation This seems like an issue with stack frames but I can t figure out why it s happening Another problem is that on a method entry event the stack seems to be occasionally “corrupted Where the current method isn t at the top of the stack As far as I can tell this isn t something that should ever happen But I might have missed a documentation nuance Attaching a DebuggerWe can attach a debugger using the process id with a command like java jar target CLI SNAPSHOT shaded jar pid Or we can use a socket Notice the socket always connects to localhost as remote debugging is a danger over jdwp java jar target CLI SNAPSHOT shaded jar attach Notice that the backend should have been running before and the pet clinic demo I used the following command for the pet clinic java Xdebug Xnoagent Xrunjdwp transport dt socket server y suspend n address jar spring petclinic SNAPSHOT jar Dagentlib jdwp transport dt socket server y suspend n address Which might have been a bit much but it took me forever to get the damn thing to connect through JDWP Upcoming PR and Where do we go Next This code is in a PR that still isn t running the spring boot pet clinic As such I don t want to commit it yet or create a PR Unfortunately the two week vacation is over and I have other duties I ll reduce my work pace on DDT for now as I have a lot of catching up to do at work But I plan to bring it to MVP status within weeks I think the slower pace might help me digest some of these issues So overall it s probably a good thing to take a bit of a break I made a lot of mistakes in the past two weeks but I think I m too close to it right now I ll try to write a post mortem post next week to cover what I did well and what I can improve This won t be a summary as I think my opinions on this will evolve further as I rethink some of my stances I suggest watching the ddtj project to see when it gets updated with a new PR You can also follow me on twitter to keep up to date with the latest developments I have some great ideas for the core technology of DDT that go well beyond testing alone There s a lot of untapped potential here that we need to explore 2021-12-31 10:55:06
海外TECH DEV Community 2021 Tech Highlights: Best Software For Dev Teams https://dev.to/jamieswift90/2021-tech-highlights-best-software-for-dev-teams-1ke5 Tech Highlights Best Software For Dev TeamsHow would I sum up For me and my team the last months were filled with constant learning and adapting to the new trends that completely changed the way we used to work remember the habit of actually going to the office and wearing pants to work… It wasn t always easy but the challenges we faced pushed us into searching for convenient software that could help us handle the new normal In this short post I would like to share with you the discoveries I made this year in the field of developer tools GitLiveThis tool is for all you team players out there GitLive makes Git LIVE It adds a tab to your IDE where you can see your fellow collaborators if they are online what issue and branch they are working on and even their uncommitted changes all updated in real time Any non stale branch ahead of master main is considered work in progress and you can inspect diffs of the files changed as well as view the associated issue or pull request Their flagship feature is automatic merge conflict detection Your teammates changes show in the gutter of the editor addition deletion modification or conflict where you can inspect them to see the diff what branch it s from and cherry pick them straight into your copy of the file if you need to GitLive can be very useful for larger teams and especially useful for open projects as these features even work across forks What s also cool is as the data comes straight from Git there s no manual entry required to keep it up to date   Wallaby jsWallaby is an integrated continuous testing tool for JavaScript developed by the team behind Quokka and Dingo fun fact they name all their products after native Australian animals This distraction free javascript testing runs the tests as you type and provides the results directly in your editor right next to your code unlike traditional test runners that display feedback in your console even on unsaved files Wallaby works really well on bigger projects where it can help you maximize your productivity by allowing you to focus on a specific set of tests no matter how large your project becomes The tool comes with a lot of great features like time travel debugger with edit and continue or value explorer and output inspector for viewing runtime values to name just a few Plus their docs are amazing and provide you with a vast overview of all the functionality that can really make you kick it off with the product in no time   GitPodThe problem developers often face is a huge amount of time wasted on setting a development environment Gitpod aims at automating this cumbersome process by allowing you to spin up fresh automated dev environments for each task in the cloud in no time By providing always ready to code development environments GitPod eliminates a tone of pain points that we all know too well project onboarding context switching dependencies that no longer work you name it Dropping your local development environment can mean a huge boost of productivity for you and your team It is open core so there are some features that you have to pay for if you want to host them yourself targeted at larger teams but the free plan is pretty generous for everyone who d like to try it   RetoolRetool is an internal app builder As we all know setting up internal tooling and applications is time consuming repetitive and keeps developers from the actual problems they are trying to solve Retool offers a collection of drag and drop components that allow you to build an elegant UI for your app in minutes Plus everything in Retool is a JS object that you can easily manipulate you can also build your own custom React components Out of the box Retool will connect to nearly anything with a REST or GraphQL API A growing library of native integrations makes it even easier to connect with your data sources   FireHydrantFireHydrant is a tool that puts out “fires at work and handles your system reliability It helps document the system integrate the tools you already use and gather data and alerts for handling incidents With FireHydrant you can automate incident handling workflows e g create a new Slack room status page update or a Zoom bridge FireHydrant gives teams the tools to maintain service catalogs respond to incidents communicate through status pages and learn with retrospectives The paid plan may seem quite costly per user per month for smaller teams and per month for teams but there is a free plan available that lets you test if the platform suits your company s needs Thanks for reading hope you ll find the tools I presented above interesting and useful Happy New Year 2021-12-31 10:24:51
ニュース BBC News - Home Covid: UK incomparably better placed this New Year - PM https://www.bbc.co.uk/news/uk-59834667?at_medium=RSS&at_campaign=KARANGA covid 2021-12-31 10:23:11
ニュース BBC News - Home London teen deaths: Fatal stabbing of boy is 30th teenage homicide in 2021 https://www.bbc.co.uk/news/uk-england-london-59836010?at_medium=RSS&at_campaign=KARANGA previous 2021-12-31 10:47:16
ニュース BBC News - Home Scots urged to stay at home for Hogmanay amid Omicron surge https://www.bbc.co.uk/news/uk-scotland-59827331?at_medium=RSS&at_campaign=KARANGA covid 2021-12-31 10:07:08
ニュース BBC News - Home Most defeats, most ducks, most collapses - England's 'record-breakingly bad' year https://www.bbc.co.uk/sport/cricket/59825697?at_medium=RSS&at_campaign=KARANGA Most defeats most ducks most collapses England x s x record breakingly bad x yearAndy Zaltzman digs out the statistics that show how England s savage Ashes defeat caps a woeful year for Joe Root s side 2021-12-31 10:14:11
ニュース BBC News - Home What are the Covid self-isolation rules now? https://www.bbc.co.uk/news/explainers-54239922?at_medium=RSS&at_campaign=KARANGA ireland 2021-12-31 10:25:00
北海道 北海道新聞 「商都」小樽の新時代へ 2022年8月に市制施行100年 https://www.hokkaido-np.co.jp/article/629193/ 時代 2021-12-31 19:10:22
海外TECH reddit 【クソスレ】のーもら歳末晩酌部 https://www.reddit.com/r/newsokunomoral/comments/rsquxv/クソスレのーもら歳末晩酌部/ ewsokunomorallinkcomments 2021-12-31 10:14:02

コメント

このブログの人気の投稿

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