投稿時間:2021-12-24 21:27:18 RSSフィード2021-12-24 21:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] ユニ・チャーム、大人用紙おむつのデジタル採寸サービス 自宅で最適なサイズ選びをサポート https://www.itmedia.co.jp/business/articles/2112/24/news175.html itmedia 2021-12-24 20:48:00
IT ITmedia 総合記事一覧 [ITmedia News] 防衛省、安全保障に関するデータ59件の流出を確認 19年6月の三菱電機の不正アクセスで https://www.itmedia.co.jp/news/articles/2112/24/news176.html itmedia 2021-12-24 20:02:00
python Pythonタグが付けられた新着投稿 - Qiita 「Python Advent Calendar 2021」集計(1/3) https://qiita.com/kaizen_nagoya/items/1b7281a69eed47805e4a 「PythonAdventCalendar」集計PythonAdventCalendar日に、「dockerでpython」を書きかけで投稿した。 2021-12-24 20:13:44
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 同じ値が連続しつつ規則性のある値をオートフィルしたい https://teratail.com/questions/375444?rss=all 関数 2021-12-24 20:28:59
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) C# .NET CoreアプリからGoogle Cloud Storageにアップロードしたい https://teratail.com/questions/375443?rss=all CNETCoreアプリからGoogleCloudStorageにアップロードしたいNETnbspCoreで作したアプリケーションからGooglenbspCloudnbspStorageにCSVをアップロードして保存を行いたいですGoogleCloudStorageVのUploadObjectを用いて行おうとしているのですがアップロード実行時にエラーがて失敗します試したところGCSからファイルのダウンロードサイズは大きくても大丈夫とkbちょいくらいのファイルのアップロードは可能なのですがそれ以上のファイルのアップロードはエラーがでてしまします。 2021-12-24 20:10:19
AWS AWSタグが付けられた新着投稿 - Qiita [小ネタ] Github Actions用のOIDC ProviderをAWSコンソールから作ったときのトラップ https://qiita.com/hajimeni/items/0e885b752a3a571d05be つ目のトラップGithubActionsに適当なWorkflowを作成して動かしてみます。 2021-12-24 20:48:17
Docker dockerタグが付けられた新着投稿 - Qiita Dockerfileベストプラクティス - Node.jsアプリケーション編 https://qiita.com/taquaki-satwo/items/f8fbe8b1efc4b2323ae7 Dockerfileとはあまり関係ないですが、ついでなのでNextjsの起動方法も確認してみます。 2021-12-24 20:14:29
技術ブログ Mercari Engineering Blog 不具合データの可視化と分析 https://engineering.mercari.com/blog/entry/20211222-6d545e2c99/ hellip 2021-12-24 12:00:15
海外TECH MakeUseOf How T-Mobile Blocked 21 Billion Spam Calls in 2021 https://www.makeuseof.com/t-mobile-blocked-21-billion-spam-calls-2021/ mobile 2021-12-24 11:21:35
海外TECH MakeUseOf You Can Now Zoom In on Skype: Here's How https://www.makeuseof.com/zoom-in-skype/ skype 2021-12-24 11:06:14
海外TECH DEV Community Still Deep in Type Hierarchy Hell Code, Building DDTJ - Day 5 https://dev.to/codenameone/still-deep-in-type-hierarchy-hell-code-building-ddtj-day-5-19ho Still Deep in Type Hierarchy Hell Code Building DDTJ Day Yesterday I was running into a roadblock which unfortunately I still didn t clear today There s a point in project development where you feel a bit like those war movie scenes The hero is surrounded and is just fighting left and right it seems hopeless and it s unclear how they ll survive This is where I am right now with DDTJ deep in the swamp with a hard to model problem Unfortunately it doesn t make for great writing I can t really communicate what I m doing because a lot of it is just “shooting left and right The code I write is pretty bad since I m trying to “get something working and to be fair I keep changing my mind Hopefully when I get something working I ll have the motivation to do a cleanup But those are pretty hard to do for a spare time project One question I got is “why don t you just use the JDI object model JDI Java Debug Interface already did all the work I m doing At first I felt it was over designed but now I appreciate it more it s a tough problem Unfortunately I can t reuse their object model If I could it would save me a ton of work But their model isn t the actual data It s tied to a remote VM state So as the application continues its execution the data is lost I need to replicate remote VM data locally so I can have it later when I want to generate a test case based on that data That means doing something similar to what they did But also pretty different I need to transfer all the remote state information to my local VM That Doesn t Sound too HardIt isn t when your object model only includes basic building blocks But it becomes pretty hard when you need to mirror entire object graphs which are built from classes you don t have in your local VM If you re thinking about fetching the classes to the local VM that s probably not the right idea Classes don t work in isolation you can t just pull one class without pulling the entire application Adding the entire application to the current VM is again Not a good idea It will break isolation and create a situation where we can affect execution significantly So the solution is to use the JDI API to take a full snapshot of the state with everything we ll need later to generate the code That also includes method class meta data The complexity is mostly in the way we store the data and interact with this API A lot of the code I write looks very “ugly Dealing with Project StallsI made little progress today I was debating posting this day at all but I think it s important that people read about the short term failures as much as on the success Every decently complex project has a grunt uncertainty phase You still don t know if you ll make it on the other side of the tunnel and have something “good Unfortunately there s no real cure for that But there are strategies to “manage this and avoid a long setback Iterative ProcessWhen you start a project from scratch you re effectively in front of an empty canvas There s nothing there and you can t yet see your creation Frustration and despair are common before you see something running That s why it s important to aim much lower than your eventual goal We need to avoid “theorized problems such as performance optimizations unnecessary features etc Stick to the MVP religiously even at the cost of rewriting extensive parts of the code later on You re better off writing bad code and throwing it away if you reach an intermediate goal This maps very well to the concept of sprints I m not a big methodology fan and feel that people sometimes apply these processes too religiously But the idea of aiming for short term quantifiable goals is powerful Shortcuts and StopgapsHacks or halfway points are an excellent way to get something working Right now I m mostly ignoring the test generation aspect of the project and only focusing on the data collection portion I also picked other shortcuts by avoiding a web interface and focusing only on the CLI for now We can update later a lot of these decisions but getting the first running version is crucial Once you have things running progress will speed up and compensate for any detours you took for these shortcuts stopgaps It s important to file issues for fixing such shortcuts stopgaps I don t bother doing this on a single developer project because I m lazy But if you re doing this as part of your job it s important A good project manager would schedule some of your time for code cleanup and will make sure to revert to these issues BacktrackingThis is the hardest thing to do We sometimes take the wrong direction and spend too much time trying to get it to work It might be the “right direction for the finished product But for a sprint it might be too much Unfortunately once we started in a direction that seems “right in the long term It s very hard to stop and throw away “correct code in order to do what is effectively a hack This is something that sometimes works It just takes a lot of effort In this case I m conflicted if the data collection logic I m trying to implement is over engineered for this stage of the project I can t see a simpler solution that would actually work but if there was a shortcut I would take it One thing I might need to backtrack is my focus on quality and testing I think I might need to put the quality aspect on hold and ignore code coverage for now Next WeekI was hoping to have something running this weekend as a Christmas present These hopes crashed against the harsh reality and constrained time because of family obligations I have a feeling I would have made it if I was working at an office I hope to get data collection working early next week otherwise code generation just wouldn t happen and the whole experiment would tank I m not sure when I ll be able to get time off work to finish such an extensive project if I don t do this now so this is pretty crucial In retrospect for this week I feel I spent too much time on coverage and quality which was probably the wrong thing to do at this early stage Usually I only add these tools later on when the project is functional I m holding off on this decision I want to see how next week starts and where I m at If you find this series interesting useful feel free to follow me on twitter 2021-12-24 11:27:20
医療系 医療介護 CBnews 診療報酬本体プラス、薬価引き下げが国民に還元されず-健保連「誠に遺憾」 https://www.cbnews.jp/news/entry/20211224193540 健康保険組合連合会 2021-12-24 20:05:00
金融 金融庁ホームページ 職員を募集しています。(金融モニタリング業務に従事する職員【弁護士】) https://www.fsa.go.jp/common/recruit/r3/souri-13/souri-13.html Detail Nothing 2021-12-24 11:40:00
ニュース BBC News - Home Selfridges sold for £4bn to Thai-Austrian alliance https://www.bbc.co.uk/news/business-59777577?at_medium=RSS&at_campaign=KARANGA austria 2021-12-24 11:11:06
ニュース BBC News - Home CrossCountry: Strike action affects Christmas Eve train journeys https://www.bbc.co.uk/news/uk-england-59781684?at_medium=RSS&at_campaign=KARANGA crosscountry 2021-12-24 11:16:24
ニュース BBC News - Home Man killed by dog 'died doing what he loved' https://www.bbc.co.uk/news/uk-scotland-tayside-central-59781502?at_medium=RSS&at_campaign=KARANGA angus 2021-12-24 11:44:42
ニュース BBC News - Home Burnley-Everton called off because of Covid cases and injuries https://www.bbc.co.uk/sport/football/59779209?at_medium=RSS&at_campaign=KARANGA burnley 2021-12-24 11:50:54
ニュース BBC News - Home Vunipola brothers sign new deals with Saracens https://www.bbc.co.uk/sport/rugby-union/59782546?at_medium=RSS&at_campaign=KARANGA england 2021-12-24 11:42:27
ビジネス ダイヤモンド・オンライン - 新着記事 来週(12/27~30)の日経平均株価の予想レンジは、 2万8500~2万9500円! 大納会に向けて「2万9000 円&75日移動平均線」への回復を目指す展開に期待! - 来週の日経平均株価の予想レンジを発表! https://diamond.jp/articles/-/291954 2021-12-24 20:10:00
LifeHuck ライフハッカー[日本版] 入浴後を快適に。高級エジプト綿バスローブのお得な先行販売が終了間近 https://www.lifehacker.jp/2021/12/machi-ya-casameara-end.html casamerarobe 2021-12-24 21:00:00
北海道 北海道新聞 札幌高1自殺 母親「アンケート破棄、校長らに重大過失」 監査委で主張 https://www.hokkaido-np.co.jp/article/627300/ 札幌市内 2021-12-24 20:18:00
北海道 北海道新聞 首相、五輪に政府代表団派遣せず 人権重視、事実上外交ボイコット https://www.hokkaido-np.co.jp/article/627297/ 東京五輪 2021-12-24 20:12:00
北海道 北海道新聞 道内の障害者雇用率、自治体はやや改善 全国平均下回る https://www.hokkaido-np.co.jp/article/627296/ 公的機関 2021-12-24 20:11:00
北海道 北海道新聞 沖縄の玉城知事、米軍対応を批判 コロナ検査免除「大きな穴」 https://www.hokkaido-np.co.jp/article/627295/ 在日米軍 2021-12-24 20:08:00
北海道 北海道新聞 国内でコロナ感染302人 300人超は2カ月ぶり https://www.hokkaido-np.co.jp/article/627294/ 新型コロナウイルス 2021-12-24 20:07:00
北海道 北海道新聞 小中学生、コロナで体力低下 男子の合計点は過去最低 https://www.hokkaido-np.co.jp/article/627293/ 小中学生 2021-12-24 20:07:00
北海道 北海道新聞 母を殴った疑いで女逮捕 母親は死亡 札幌・北区 https://www.hokkaido-np.co.jp/article/627292/ 逮捕 2021-12-24 20:06:00
北海道 北海道新聞 井上康生氏がリーダー就任 JOCパリ五輪対策プロジェクト https://www.hokkaido-np.co.jp/article/627291/ 井上康生 2021-12-24 20:04:00
北海道 北海道新聞 国内初のコロナ飲み薬を特例承認 厚労省、20万人分を配送へ https://www.hokkaido-np.co.jp/article/627270/ 厚生労働省 2021-12-24 20:02:24
ビジネス 東洋経済オンライン 中国新興電池「SVOLT」、生産能力急拡大の背景 2025年に600GWh目指すが、能力過剰の懸念も | 「財新」中国Biz&Tech | 東洋経済オンライン https://toyokeizai.net/articles/-/477986?utm_source=rss&utm_medium=http&utm_campaign=link_back biztech 2021-12-24 20: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件)