python |
Pythonタグが付けられた新着投稿 - Qiita |
Raspberry Pi で起動と同時にpythonファイルを実行する(Raspberry Pi OSがGUIなしで立ち上がる)。 |
https://qiita.com/MasashiTsubaki/items/9c256890d7d59c7fce60
|
raspberrypi |
2022-06-12 12:19:05 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
【JavaScript 関数ドリル】中級編のfindLastIndex関数の実装アウトプット |
https://qiita.com/yukacchi/items/44ccf1250efa2bfc3cba
|
findlastindex |
2022-06-12 12:57:11 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
【JavaScript 関数ドリル】中級編のfindIndex関数の実装アウトプット |
https://qiita.com/yukacchi/items/d2494466bf509bee722d
|
解説動画 |
2022-06-12 12:45:01 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
【JavaScript 関数ドリル】中級編のdropWhile関数の実装アウトプット |
https://qiita.com/yukacchi/items/3519920d1cdda8774bea
|
difference |
2022-06-12 12:28:51 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
【JavaScript関数ドリル】中級編の dropRightWhile関数の実装アウトプット |
https://qiita.com/yukacchi/items/3ca9910d337cf7abc6d4
|
droprightwhile |
2022-06-12 12:15:25 |
AWS |
AWSタグが付けられた新着投稿 - Qiita |
AWSにKeycloak立ててみる |
https://qiita.com/masagl07s/items/071bcd667f248fa7ca7f
|
cloak |
2022-06-12 12:51:54 |
Docker |
dockerタグが付けられた新着投稿 - Qiita |
OpenCV(3.4.10) C++用DockerFile |
https://qiita.com/bored_funuke/items/320efa659267db8e2410
|
dockerfiledockerfile |
2022-06-12 12:51:04 |
Git |
Gitタグが付けられた新着投稿 - Qiita |
絶対してはいけない。仕事やってるアピールするためにgithubに自動でコミットする方法。 |
https://qiita.com/petertakahashi/items/152d640db3a706650cbb
|
github |
2022-06-12 12:38:57 |
Git |
Gitタグが付けられた新着投稿 - Qiita |
GitHubでの作業の流れと使うコマンド |
https://qiita.com/mahariiku/items/acfa40f15d6f023e510a
|
gitclonelturlgt |
2022-06-12 12:07:01 |
技術ブログ |
Developers.IO |
Azure Load Testing に JMeter スクリプトの事前準備が不要なクイックテスト機能が追加されたので使ってみた |
https://dev.classmethod.jp/articles/azure-load-testing-quick-test/
|
azure |
2022-06-12 03:18:29 |
海外TECH |
DEV Community |
How to think like a programmer |
https://dev.to/mikhailkaran/how-to-think-like-a-programmer-4o5e
|
How to think like a programmer What is HTML All The Things HTML All The Things is a web development podcast and discord community which was started by Matt and Mike developers based in Ontario Canada The podcast speaks to web development topics as well as running a small business self employment and time management You can join them for both their successes and their struggles as they try to manage expanding their Web Development business without stretching themselves too thin What s This One About This week Matt and Mike discussed how to think like a programmer When you re learning to code you may think that syntax is the most important thing since it is so hard to memorize The problem with memorizing syntax is that if you ever need to move on to a new programming language you ll have to start memorizing all over again Instead Matt and Mike believe that learning programming concepts is more important than syntax as they allow you to apply that conceptual knowledge across any language you come across it lets you problem solve as a programmer Show NotesWhen you embark on your learn to code journey the number one thing on your mind is probably the syntax of whatever language you ve chosen to learnYou ll learn about ifs and loops how to declare variables what plugins tools are popular how functions work and much more brewing silently in the backgroundProblem Syntax is only applicable to the language you re working on so if you ever need to use a different one and you definitely will if you re a full stack dev or keeping up with the times in web dev Solution We need something common between languages that lets us use syntax in a more general way More about concepts and less about specific code formatting for a specific language Problem It s very difficult to memorize syntax without a purpose It s easy enough to memorize how to make if statements for example but how long will you remember the formatting if you don t use them frequently Should you even be memorizing the ins and outs of a language s syntax Solution We need a reason to be coding up a project More of a reason than just to practice syntax If we need to make a navbar that is controlled by logic then conditional statements are a natural need and should help you remember the formatting easier If you go to traditional school college university then they will commonly administer these solutions via teaching programming concepts ie algorithms instead of specific languagesIf you go to something like a bootcamp they ll commonly have less concept theory but will teach you more via doing projects instead of just syntax memorization When you re self teaching it can be difficult to determine the path forward Do you just memorize how to write code in your preferred language Do you just learn concepts How about starting projects But how do you start them if you have no syntax knowledge Regardless of traditional bootcamp or self teaching the general idea is that you need to be able to solve problems Solve problems in a way that a computer can execute and by association in such a way that you can code up for a computer to runThis is commonly referred to as thinking like a programmer What does it mean to think like a programmer Programmers break projects down into smaller parts commonly these smaller parts have even smaller parts underneath themProgrammers know how to problem solve at various levels For example a web dev can solve a problem thinking specifically how it would be written in html CSS Js the importance of syntax or they can solve a problem at a higher level which allows it to be applied to virtually any applicable technology arguably more valuable than understanding any syntax Programmers can modularize code making code snippets usable in multiple instances without having to code up a new version of something ie an image lightbox over and over againMath is helpful but isn t necessarily needed for some roles ie a website UI doesn t usually require much math and rarely needs complex math Example Navbar HoverMake a navbar with several links listed horizontally on the screen One of the links has a sub list of links that show up vertically when the mouse hovers over it Matt s BreakdownThe first thing that comes to mind is that each link is an element and I need to have them horizontally aligned so I ll need a wrapper around them so that I can flexbox themEach of the links will have two classes one for styling and the other for active styling when you re on the page that that link navigates to even though this isn t apart of the problem it s so commonly used I may as well set it upI ll also setup an ID for the one link that needs to have the hover affect applied to itSimilarly with the horizontal links I need another wrapper that wraps up all the sub links that appear on hover so I can flexbox them and I may even want an additional wrapper on the link that has the hover affect so that I can keep the vertical links within that wrapper and position them relative to that link wrapper divMikes BreakdownId create a visual representation with a design using figma HTML structure would be using a lt nav gt using flexbox row and a div container for each link In the link there would be a lt a gt tag for the link as well as a potential lt ul gt which would be hidden by defaultI d be using tailwind for this to prototype quicklyUsing a hover class I d switch the nested lt ul gt from display none to display flex to activate the dropdown sub list menu on hover Thank you If you re enjoying the podcast consider giving us a review on Apple Podcasts or checking out our Patreon to get a shoutout on the podcast Support us on PatreonYou can find us on all the podcast platforms out there as well asInstagram htmlallthethings Twitter htmleverything TikTok |
2022-06-12 03:54:19 |
ニュース |
@日本経済新聞 電子版 |
「変えたい。経営陣は本気の本気です」とみずほフィナンシャルグループの木原正裕社長は語りかけた――。システム障害で経営体制を刷新したメガバンクが改革へもがく姿を追います。
【ルポ迫真・みずほリセット100日①】
https://t.co/NOCn0kD4F6 |
https://twitter.com/nikkei/statuses/1535826742815899648
|
「変えたい。 |
2022-06-12 03:30:04 |
ニュース |
@日本経済新聞 電子版 |
中国国防相「台湾統一必ず実現」 米国をけん制
https://t.co/7Bhe2O43LJ |
https://twitter.com/nikkei/statuses/1535824634566025217
|
統一 |
2022-06-12 03:21:41 |
ニュース |
@日本経済新聞 電子版 |
きょう6月12日昼の日経電子版トップ(https://t.co/3i9Iowmp90)3本です。
▶転勤制度いつまで? 共働き時代に合わず
https://t.co/Cix5X3hM2I
▶福島・葛尾村の避難指示を一部解除… https://t.co/8e6sjGsefm |
https://twitter.com/nikkei/statuses/1535822979413811205
|
きょう月日昼の日経電子版トップ本です。 |
2022-06-12 03:15:07 |
ニュース |
@日本経済新聞 電子版 |
福島・葛尾村の避難指示解除 村長「きょうがスタート」
https://t.co/hfjumOwIK4 |
https://twitter.com/nikkei/statuses/1535821598510710784
|
避難指示 |
2022-06-12 03:09:37 |
海外ニュース |
Japan Times latest articles |
Lightning clip Rangers to advance to Stanley Cup Final |
https://www.japantimes.co.jp/sports/2022/06/12/more-sports/ice-hockey/lightning-rangers-game-6/
|
Lightning clip Rangers to advance to Stanley Cup FinalThe Lightning who have won seven consecutive home games are the first team to reach the Cup Final in three consecutive seasons since the Edmonton |
2022-06-12 12:23:08 |
海外ニュース |
Japan Times latest articles |
Charl Schwartzel wins LIV opener to pocket $4 million jackpot |
https://www.japantimes.co.jp/sports/2022/06/12/more-sports/golf/liv-schwartzel-win/
|
Charl Schwartzel wins LIV opener to pocket million jackpotThe year old s victory ended a tumultuous launch week for the breakaway circuit which is backed to the tune of million by Saudi Arabia s Public |
2022-06-12 12:10:39 |
北海道 |
北海道新聞 |
<アングル>札幌市役所、移転足踏み 旧NHK跡地「候補」から5年 巨額建設費ネックに |
https://www.hokkaido-np.co.jp/article/692457/
|
札幌市役所 |
2022-06-12 12:20:35 |
北海道 |
北海道新聞 |
<筋トレで体いきいき>座って脚のすねの前側の筋肉を強くする |
https://www.hokkaido-np.co.jp/article/692540/
|
弁慶の泣き所 |
2022-06-12 12:17:00 |
北海道 |
北海道新聞 |
黒田日銀総裁は引き際 立民幹部「格差に鈍感」 |
https://www.hokkaido-np.co.jp/article/692549/
|
小川淳也 |
2022-06-12 12:10:00 |
コメント
コメントを投稿