IT |
ITmedia 総合記事一覧 |
[ITmedia エグゼクティブ] 大成建設社長 相川善郎さん(65) 創業150周年、脱炭素・生物多様性を重視 |
https://mag.executive.itmedia.co.jp/executive/articles/2212/22/news092.html
|
itmedia |
2022-12-22 08:03:00 |
IT |
情報システムリーダーのためのIT情報専門サイト IT Leaders |
BlueMeme、カスタマイズ可能な業務アプリケーション「AGILE-SaaS」を発表 | IT Leaders |
https://it.impress.co.jp/articles/-/24234
|
BlueMeme、カスタマイズ可能な業務アプリケーション「AGILESaaS」を発表ITLeadersBlueMemeブルーミームグループは年月日、SaaS型業務アプリケーション「AGILESaaS」を発表した。 |
2022-12-22 08:30:00 |
AWS |
lambdaタグが付けられた新着投稿 - Qiita |
[go] [terraform] lambdaのsource_code_hashが毎回更新される |
https://qiita.com/t0yger/items/ef5baeeacf58ce676747
|
iongoversiongodarwina |
2022-12-22 08:55:59 |
AWS |
AWSタグが付けられた新着投稿 - Qiita |
2022年に受験したAWS認定のふりかえりと対策 |
https://qiita.com/amarelo_n24/items/79f87cf522c697aa5be5
|
qiita |
2022-12-22 08:03:06 |
golang |
Goタグが付けられた新着投稿 - Qiita |
[go] [terraform] lambdaのsource_code_hashが毎回更新される |
https://qiita.com/t0yger/items/ef5baeeacf58ce676747
|
iongoversiongodarwina |
2022-12-22 08:55:59 |
Azure |
Azureタグが付けられた新着投稿 - Qiita |
AZ-900:Describe cloud concepts ⑧ |
https://qiita.com/fsd-lukapyon/items/abfc398d55bf28160b90
|
azdescribecloudconcepts |
2022-12-22 08:54:00 |
技術ブログ |
Developers.IO |
全社施策・各部施策の関係と抽象クラスを用いたTemplate Methodパターン |
https://dev.classmethod.jp/articles/organization-template-method-pattern/
|
templatemethod |
2022-12-21 23:47:55 |
技術ブログ |
Developers.IO |
CDKではCDK_DOCKER環境変数を指定することで任意のコマンドでDockerビルドができる |
https://dev.classmethod.jp/articles/cdk-lambda-python-docker-env/
|
cdkdocker |
2022-12-21 23:00:38 |
技術ブログ |
Developers.IO |
CDKのLambda Pythonを使う場合はRancher DesktopだけでなくDocker CLIもインストールする |
https://dev.classmethod.jp/articles/cdk-docker-using-rancher/
|
docker |
2022-12-21 23:00:32 |
海外TECH |
DEV Community |
A Developer Roadmap for High School Students: How to Get Started in Tech |
https://dev.to/verisimilitude11/a-developer-roadmap-for-high-school-students-how-to-get-started-in-tech-404g
|
A Developer Roadmap for High School Students How to Get Started in Tech OverviewAs a high school student myself I understand the challenges and excitement of pursuing a career in tech The tech industry is vast and constantly evolving and it can be overwhelming to figure out where to focus your efforts RoadmapTo help you get started here is a roadmap of steps you can take to begin your journey as a developer Learn the fundamentalsBefore diving into specific technologies it s important to build a strong foundation in computer science concepts This includes topics such as algorithms data structures and programming languages There are many online resources and courses available to help you learn these concepts such as Codecademy or Khan Academy Choose a programming languageOnce you have a solid understanding of the fundamentals it s time to start learning a specific programming language There are many languages to choose from each with its own strengths and use cases Some popular options for beginners include Python Java or C Build projectsThe best way to learn and improve as a developer is by building projects This can be as simple as creating a simple program or app or participating in online coding challenges and hackathons Not only will building projects help you develop your skills but it will also give you something to showcase on your resume and portfolio Join a communityThe tech community is full of supportive and knowledgeable people who are happy to help others learn and grow Join online communities such as dev to or Reddit s r learnprogramming to connect with other developers and get feedback on your projects Consider internships or part time workAs a high school student you may not be able to commit to a full time job in tech However internships and part time positions can be a great way to gain valuable experience and make connections in the industry Keep an eye out for opportunities in your area or consider reaching out to local tech companies to inquire about potential openings ConclusionPursuing a career in tech as a high school student can be exciting and rewarding but it also requires dedication and hard work By following this roadmap and staying committed to your goals you can set yourself up for success in the tech industry Good luck |
2022-12-21 23:38:06 |
海外TECH |
DEV Community |
Awesome JavaScript hacks |
https://dev.to/mitchiemt11/awesome-javascript-hacks-35e3
|
Awesome JavaScript hacksIn this post I will share useful hacks for JavaScript These hacks reduce the code and will help you to run optimized code So let s start hacking Use shortcuts for conditionalsJavascript allows you to use certain shortcuts to make your code easier on the eyes In some simple cases you can use logical operators amp amp an instead of if and else amp amp Operator Example instead ofif loggedIn console log Successfully logged in useloggedIn amp amp console log Successfully logged in The functions as an or clause Now using this operator is a bit trickier since it can prevent the application from executing However we can a condition to get around it Operator Example instead of if users name return users name else return Getting the users usereturn users name Getting the users Check if an object has valuesWhen you are working with multiple objects it gets difficult to keep track of which ones contain actual values and which you can delete Here is a quick hack on how to check if an object is empty or has value with Object keys function Object keys objectName length if it returns it means the object is empty otherwise it displays the number of values Console TableThis awesome hack will help you to convert your CSV format or dictionary format data into tabular form using the console table method console tableconst data city New York city Chicago city Los Angeles console table data the result is a table below Operator TypeofThis simple hack will show you how you can use typeof operator to check the type of any data in JS You just need to pass the data or the variable as an argument of typeof let v JavaScript let v true let v let v null console log v gt stringconsole log v gt booleanconsole log v gt numberconsole log v gt object Shuffling array elementsTo shuffle the array s elements without using any external libraries like Lodash just run this magic trick const list console log list sort function return Math random gt That s it HappyCodingLet me in the comments section any other awesome JS hacks to add to the list |
2022-12-21 23:30:27 |
海外TECH |
DEV Community |
How I would build an MVP today |
https://dev.to/justaashir/how-i-would-build-an-mvp-today-15hc
|
How I would build an MVP todayIn the past years I ve learned a lot transitioning from just being a front end developer to being a product manager My thinking now is very different Before I focused too much on technology and just procrastinated on the things that don t really matter in terms of business and the word MVP This is how I would build an MVP for a SaaS product today Write down a checklist with bullet points in the context of how I imagine the end result would look like of my MVP Review if the things I listed are really needed for the first version of MVP and if I m not giving time to creating the product features that shouldn t even exist the first time Tip Review it the next day or a few hours later So the mind is fresh and that memory is over writeable Building the product as I know how to code Go with my most comfortable technologies in my case I ve worked with the JavaScript framework VueJS my whole life and Tailwind css and Node js on the backend Tip Do not try to try new technologies I ve tried this many times by trying NextJS Svelte NET e t c or even newer versions of your comfortable technologies Like Vue instead of I know that Vue is old and Vue is a newer version but am I comfortable with Vue No I ve done this mistake many times to go with the latest technologies newer edge technologies Trying to shoot two shots with one arrow Achieving to build MVP and also learning new technology Only one can be done either I waste all my time debugging the build processes and my code or build the MVP Also what I think may save you time like using an existing design system may end up giving me more pain and just increasing work Simply saying Go with what you already know what you ve already used and are comfortable with Do not try something new It s a deep hole you dig for yourself If you re not a developer use Bubble Don t try to read the pros cons of all NoCode Tools out there and compare pricing and stuff It doesn t matter in long term Just pick this one and go ahead You will always rebuild into code after your idea gets successful or you can always move around later Don t try to focus so much on the big big picture as one of my good friends says Try to make customer happy first then customers then then then For example If I m building an AI photo generator app it doesn t need to have a forget password page Don t waste time on that Your MVP is meant to serve very few people I m sure I can manually generate and reset passwords for them when they need it Just an example of ignoring things What an AI photo generator app needs to have is An Input to upload photos to model An output that gives you generated photos If this works it s enough Doesn t matter if my login page doesn t handle the edge cases or my site is not fully responsive on mobile or other cases Execute the points list that I wrote one by one Deploy it No need for a perfect domain A subdomain provided by Netlify could also work Share the link with my first customer Collect feedback and build from there MVP is done Thanks MVP is not taking decisions and setting base for your product for years to come MVP is fulfilling the need of your first customer and collecting feedback You can re build the whole thing in a much better design technologies after your MVP is successfulJust remember thisI also posted this here |
2022-12-21 23:26:21 |
Apple |
AppleInsider - Frontpage News |
Netflix to end password sharing in early 2023 |
https://appleinsider.com/articles/22/12/21/netflix-to-end-password-sharing-in-early-2023?utm_medium=rss
|
Netflix to end password sharing in early Netflix will begin cracking down on password sharing starting in in hopes of spurring password piggybackers to create new accounts Credit David Balev UnsplashNetflix says that million viewers watch the service using passwords borrowed from friends or family members While the service historically has looked the other way it s preparing to roll out measures to shut down the practice Read more |
2022-12-21 23:43:46 |
金融 |
金融総合:経済レポート一覧 |
FX Daily(12月20日)~日銀の「政策修正」受け、一時130円台半ばまで急落 |
http://www3.keizaireport.com/report.php/RID/520918/?rss
|
fxdaily |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
FSBレポ統計の日本分集計結果(2022年11月) |
http://www3.keizaireport.com/report.php/RID/520920/?rss
|
日本銀行 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
『利上げか、利上げでないか』論争が続く日銀のYCCの柔軟化措置:木内登英のGlobal Economy & Policy Insight |
http://www3.keizaireport.com/report.php/RID/520926/?rss
|
lobaleconomypolicyinsight |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
データを読む:事例の積み上げが進む「事業再生ファイナンス」~銀行員の知恵と専門家としての矜持 |
http://www3.keizaireport.com/report.php/RID/520931/?rss
|
事業再生 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
サステナブルファイナンスにおいて脚光を浴びるインパクト投資:ニュース&トピックス |
http://www3.keizaireport.com/report.php/RID/520932/?rss
|
中小企業 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
世界経済ウィークリー・アップデート 2022年12月19日 ~主要国金融政策の総括と2023年の注目点 |
http://www3.keizaireport.com/report.php/RID/520935/?rss
|
世界経済 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【第45回~TCFDを旅する~】3分解説シリーズ SFDRが金融機関に求める投資先企業に関する主な開示 |
http://www3.keizaireport.com/report.php/RID/520950/?rss
|
金融機関 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【JREI Think-Tank Eyes】#5 日銀の政策修正~歓迎できないネガティブサプライズ |
http://www3.keizaireport.com/report.php/RID/520960/?rss
|
jreithinktankeyes |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【資料】地域活性化ワークショップ第5回「DXを活用した一次産業の活性化と地域金融機関による支援の方向性」を開催 |
http://www3.keizaireport.com/report.php/RID/520961/?rss
|
地域活性化 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
(日本株)いったんの下値めどは26000円前後を想定、今後は売り一巡も |
http://www3.keizaireport.com/report.php/RID/520964/?rss
|
下値めど |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2023年米国経済・金利見通し~来たる景気後退と債券投資の高まる投資妙味:マーケットレター |
http://www3.keizaireport.com/report.php/RID/520965/?rss
|
投資妙味 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【エコシル】予想外の日銀政策修正に動揺するマーケット~20日の日本金融市場は大荒れ... |
http://www3.keizaireport.com/report.php/RID/520966/?rss
|
野村アセットマネジメント |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【石黒英之のMarket Navi】2023年の米国市場見通し~23年は賃金と景気動向がカギ... |
http://www3.keizaireport.com/report.php/RID/520967/?rss
|
marketnavi |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
楽読 Vol.1863~日米の家計金融資産を比べて見ると・・・~拡大ペースの差が示唆する、長期分散投資で「おカネ」を活かすことの重要性 |
http://www3.keizaireport.com/report.php/RID/520968/?rss
|
分散投資 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
日銀金融政策決定会合(12月19・20日)の注目点~長期金利の変動許容幅±0.5%に、大規模緩和の枠組みは維持:マーケット・レポート |
http://www3.keizaireport.com/report.php/RID/520970/?rss
|
金融政策決定会合 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
家計の金融行動に関する世論調査[二人以上世帯調査](令和4年) |
http://www3.keizaireport.com/report.php/RID/520971/?rss
|
世論調査 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
家計の金融行動に関する世論調査[単身世帯調査](令和4年) |
http://www3.keizaireport.com/report.php/RID/520972/?rss
|
世論調査 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2023年市場の見通し(グローバル社債):プロの視点 |
http://www3.keizaireport.com/report.php/RID/520975/?rss
|
視点 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2023年市場の見通し(世界経済):インフレに注視:プロの視点 |
http://www3.keizaireport.com/report.php/RID/520976/?rss
|
世界経済 |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【第85回】今、注目されている“職場”における金融教育と資産形成支援について |
http://www3.keizaireport.com/report.php/RID/520996/?rss
|
三井住友トラスト |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【注目検索キーワード】培養肉 |
http://search.keizaireport.com/search.php/-/keyword=培養肉/?rss
|
検索キーワード |
2022-12-22 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【お薦め書籍】世界2.0 メタバースの歩き方と創り方 |
https://www.amazon.co.jp/exec/obidos/ASIN/4344039548/keizaireport-22/
|
宇宙開発 |
2022-12-22 00:00:00 |
金融 |
日本銀行:RSS |
BIS国際資金取引統計および国際与信統計の日本分集計結果 |
http://www.boj.or.jp/statistics/bis/ibs/index.htm
|
集計 |
2022-12-22 08:50:00 |
ニュース |
BBC News - Home |
Newspaper headlines: 'Fears for sick' and PM's 'silence' over strike |
https://www.bbc.co.uk/news/blogs-the-papers-64060257?at_medium=RSS&at_campaign=KARANGA
|
newspapers |
2022-12-21 23:49:58 |
ニュース |
BBC News - Home |
In pictures: Zelensky's momentous day in Washington |
https://www.bbc.co.uk/news/world-us-canada-64060557?at_medium=RSS&at_campaign=KARANGA
|
february |
2022-12-21 23:08:21 |
ニュース |
BBC News - Home |
The people who rent the same Christmas tree year after year |
https://www.bbc.co.uk/news/uk-scotland-64052537?at_medium=RSS&at_campaign=KARANGA
|
christmas |
2022-12-21 23:03:15 |
ニュース |
BBC News - Home |
Watch: Sportscene - Celtic v Livingston highlights |
https://www.bbc.co.uk/sport/av/football/63653902?at_medium=RSS&at_campaign=KARANGA
|
sportscene |
2022-12-21 23:19:56 |
ニュース |
BBC News - Home |
Zurich 1-9 Arsenal: Crushing win gives Gunners top spot in Champions League group |
https://www.bbc.co.uk/sport/football/64058772?at_medium=RSS&at_campaign=KARANGA
|
Zurich Arsenal Crushing win gives Gunners top spot in Champions League groupArsenal clinch top spot in Group C of the Women s Champions League as Frida Maanum scores a hat trick in a win at bottom side Zurich |
2022-12-21 23:06:08 |
北海道 |
北海道新聞 |
日米欧、女子教育停止撤回を要求 12カ国、タリバンに |
https://www.hokkaido-np.co.jp/article/778925/
|
女子教育 |
2022-12-22 08:47:00 |
北海道 |
北海道新聞 |
<奇跡の小売り王国・特別編>⑦「スーパーの男」横山清アークス社長、ライバルへの移籍騒動の真相 後継者は誰に?(後編) |
https://www.hokkaido-np.co.jp/article/778736/
|
食品スーパー |
2022-12-22 08:30:00 |
北海道 |
北海道新聞 |
NY円、132円台半ば |
https://www.hokkaido-np.co.jp/article/778920/
|
外国為替市場 |
2022-12-22 08:04:00 |
ニュース |
Newsweek |
「今日やること」リストに「明日やるべきこと」を1つ加えるだけで、生活は激変する |
https://www.newsweekjapan.jp/stories/business/2022/12/1-248.php
|
それも、Aの紙にその日のやることを箇条書きにしただけのものになる。 |
2022-12-22 08:05:22 |
マーケティング |
MarkeZine |
サブウェイ、公式Twitterのフォロワー数が4年で約5倍に成長 広告に依存せずファンを醸成 |
http://markezine.jp/article/detail/40894
|
公式twitter |
2022-12-22 08:30:00 |
マーケティング |
MarkeZine |
メディアプラットフォーム「note」、ロゴのリニューアルを発表 |
http://markezine.jp/article/detail/40900
|
ロゴ |
2022-12-22 08:15:00 |
コメント
コメントを投稿