投稿時間:2022-10-31 02:13:52 RSSフィード2022-10-31 02:00 分まとめ(13件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
海外TECH DEV Community You don’t need the git CLI https://dev.to/noriller/you-dont-need-the-git-cli-i0e You don t need the git CLIPlease wait a little before you start…bashing me The CLIYou should totally learn the CLI and it s still important to know what to do when for some reason the GUI you re using have some problem Also that was clearly clickbait…right Living outside the CLII use VSCode with Git Lens to the point I have no idea how much of what I ll be saying here is just the VSCode alone and what is done through Git Lens But if you re using VSCode then you only have to gain to install Git Lens if you haven t yet Another extension worth mentioning is the Conventional Commits which lets you compose beautiful commit messages and make you remember each part of the commit according to the Conventional Commits specification The tool you ll useIf you ve skipped if I say something and you don t find it in your VSCode then maybe it s the lack of having Git Lens installed You have a whole tab dedicated to Git It shows tracked and untracked files it shows all repositories if you have multiple in your workspace and it also shows branches repositories stashes…basically everything you need and more For using branchesSome people end up missing this but on the bottom corner You can easily sync changes it already shows you if there s something incoming or outgoing If you don t have any changes it also makes clear you have changes to push or to pull So no more excuses for “I forgot to push And by clicking the button with the branch name you can easily change branches or create new ones For committingIf you ve never checked out you would probably see something like this when you have some changes The first thing I recommend is to switch to tree view it s the bunch of lines icon above the message input You should be seeing something like this The files with M mean “modified files The files with U mean “untracked files new files The files with D mean “deleted files You can also check the colors of those letters They show you new green modified blue and deleted red files And if you have any kind of lint and other extensions that find it they also show you if they have warnings orange or errors red Working with the changesWhen clicking or while hovering you ll see You can jump to the file discard and stage the changes When clicking or hovering the “Changes or “Staged Changes line You can stage unstage all of the files discard all or even stash them Also when you click it it opens the changes You can use inline changes if you prefer it in the “… three dots button The one feature that makes it worth itSo far it shows all in a neat way but all of that you can easily do in the CLI and some do prefer it that way but this is the thing that will make you think twice and I dare to say this actually changes the way to code Let s say you have this Lot s errors but you have one line working that will work by itself…do you commit the whole file with all the breaking errors or…what do you do Well…you can as easily as two clicks…stage only one line Right click the line Then left click on “stage selected ranges that could be multiple lines selected Now commit only the line that s working by itself without even having to touch any of the work you don t want to touch right now Yes I know it s possible to do that with CLI but nowhere near as easy as that Want more This could be a bug that is actually a feature…but you don t even need to have the changes you re staging saved Yes You can stage unsaved changes As you stage changes the left panel shows what s staged When you discard your changes it picks that difference I ve discovered that because I usually force filters of tests “fdescribe fit and I had committed those “f s while still using them So I just changed the line and staged and only then I saw I hadn t even saved it So if you need to make little changes to make sure that you can open a commit and it works you can do them without even saving Change stage undo Managing stuff and other thingsThere are a lot of other things you can do especially regarding syncing changing deleting and renaming branches and stashes Don t forget to check the command pallet to see other cool stuff you can do My preferred one is to cherry pick use the GitLens one for this one You can also on each file navigate the changes commit by commit I probably forgot to mention a lot here…so ask away And leave yours too Cover Photo by Praveen Thirumurugan on UnsplashFor anyone interested Theme Dracula Dracula Official Icons vscode iconsFont VSCode default 2022-10-30 16:32:18
海外TECH DEV Community How to create a WhatsApp Web UI Clone using Tailwind CSS https://dev.to/devrohit0/how-to-create-a-whatsapp-web-ui-clone-using-tailwind-css-3ojf How to create a WhatsApp Web UI Clone using Tailwind CSSHi In this article I ll explain how you can create a WhatsApp web UI clone using Tailwind CSS Read the complete article and follow all the steps All the code and asset files of the project are here To understand the UI we have divided the it in small parts The red rectangle I ll call it left part and blue one is right HTML lt DOCTYPE html gt lt html lang en gt lt head gt lt meta charset UTF gt lt meta http equiv X UA Compatible content IE edge gt lt meta name viewport content width device width initial scale gt lt title gt WhatsApp lt title gt lt link rel stylesheet href style css gt lt link rel icon href images favicon png gt lt link rel stylesheet href integrity sha xhO CkQoPOWDdYTDqeRdPCVdSpvCAXXcUnZSFmJNpcoAFzvtCNBmamE aHKyyUHUSCcJHgXloTyTA crossorigin anonymous referrerpolicy no referrer gt lt head gt lt body gt lt body gt lt html gt The background image is provided in the asset files We have to make the background fixed So on scroll the background don t move lt body class bg url images bg image png min h screen grid place items center bg fixed gt lt body gt Now create a div and its child elements are the left part and right part lt div class w vw h vh bg red flex flex row gt lt div gt Left part has height and width lt div class left bg ffffff h full w gt lt div gt If you observe the WhatsApp web UI you ll find that the search bar and status section both have position sticky as it remains at the top always So we create a new div which is sticky and contains the both elements lt div class sticky flex flex col gt lt div class upper nav gt lt div gt lt div class lower nav gt lt div gt lt div gt Now create the upper nav lt div class upper nav bg FFF flex justify between items center px py rem border r border slate gt lt div class dp flex justify center items center w px h px gt lt img class rounded full src images dp jpg alt profile gt lt div gt lt div class tools flex justify center items center space x gt lt div class status w px h px grid place items center gt lt svg version id dfd fef b beb fdbdeba x y viewBox width height class gt lt path fill F d M a zM a zm a v a l z gt lt path gt lt path fill d M a z gt lt path gt lt svg gt lt div gt lt div class new chat w px h px grid place items center gt lt svg viewBox width height class gt lt path fill F d M HC Vl hc Vc zm HVhvzm HVhvz gt lt path gt lt svg gt lt div gt lt div class menu w px h px grid place items center gt lt svg viewBox width height class gt lt path fill F d M a A zm a A zm a A z gt lt path gt lt svg gt lt div gt lt div gt lt div gt Now create the lower nav lt div class lower nav px py flex items center gt lt div class flex justify between items center w full gt lt svg viewBox width height class absolute left gt lt path fill F d M h l a l v l zm a z gt lt path gt lt svg gt lt input class outline none bg FFF rounded md pl py w vw mr placeholder Search or start new chat type text id search gt lt div class w px h px lg flex justify center items center hidden gt lt svg viewBox width height preserveAspectRatio xMidYMid meet class relative gt lt path fill F d M hv h vzm vhv Hzm hv Hvz gt lt path gt lt svg gt lt div gt lt div gt lt div gt Now we have to create the chat box lt hr class h px bg slate gt lt div class h vh overflow y scroll gt lt div class chatbox hover bg gray cursor pointer gt lt hr class w float right gt lt div class flex items center w full gt lt div class p gt lt img src images Aditya jpg alt class rounded full w px h px gt lt div gt lt div class flex justify between w gt lt div class chat name flex flex col gt lt h class text md text gray font sans font normal gt Aditya Bamniya lt h gt lt p class text md text gray font sans font normal flex items center gt lt svg viewBox width height class gt lt path fill BCCEE d m a l a l a l a l a l a zm a l a l a l a l a l a z gt lt path gt lt svg gt lt span class inline block gt Aaja Chai peene Chale lt span gt lt p gt lt div gt lt div class last chat gt lt p class text rem font sans text gray font light gt yesterday lt p gt lt div gt lt div gt lt div gt lt hr class w float right gt lt div gt lt div gt You can add more chatbox Just copy paste same the code Now start creating the right part which contains two div Upper part which has details of user with whom you re chatting and Lower part has lt input gt where the user type the messages lt div class right bg FEBE h full w gt lt div gt Now we have to code the upper part lt div class right upper bg FFF flex justify between items center px py rem gt lt div class flex justify between items center w full cursor pointer gt lt div class flex justify between items center space x gt lt img src images Ravindra jpg class w px h px rounded full alt gt lt div class flex flex col gt lt p class text slate font sans font medium text base gt Ravindra lt p gt lt p class text slate font sans font medium text rem gt Online lt p gt lt div gt lt div gt lt div class flex justify between items center gt lt div class w px h px flex justify center items center gt lt svg viewBox width height class gt lt path fill F d M Hl c S s c l v l zm c s z gt lt path gt lt svg gt lt div gt lt div class w px h px flex justify center items center gt lt svg viewBox width height class gt lt path fill F d M a A zm a A zm a A z gt lt path gt lt svg gt lt div gt lt div gt lt div gt lt div gt Now it s time to code the right lower part lt div class right bottom w full top full sticky flex justify between items center px py space x bg FFF gt lt div class flex justify between items center gt lt div class w px h px flex justify center items center cursor pointer gt lt svg viewBox width height class ekdrvow dhquo gt lt path fill currentColor d M c s zm c zm s c zM C s S c zM c s c zm c s z gt lt path gt lt svg gt lt div gt lt div class flex justify center items center w px h px cursor pointer gt lt svg viewBox width height class gt lt path fill currentColor d M v c s a l c l c l c l c l c l c l a c l c L a l a z gt lt path gt lt svg gt lt div gt lt div gt lt input type text placeholder Type a message class bg white rounded lg px py outline none w full id gt lt div class flex justify center items center w px h px cursor pointer gt lt svg viewBox width height class gt lt path fill currentColor d M c Vc S vc zm c s Hc vhv c h z gt lt path gt lt svg gt lt div gt lt div gt I tried my best to explain and hope you like it Github Repo if you like then give it a 2022-10-30 16:23:11
Apple AppleInsider - Frontpage News Apple's iOS 16.2 release expected in December, iOS 16.3 possibly in February https://appleinsider.com/articles/22/10/30/apples-ios-162-release-expected-in-december-ios-163-possibly-in-february?utm_medium=rss Apple x s iOS release expected in December iOS possibly in FebruaryApple s next major updates for its operating systems will reportedly land in the middle of December while updates including iOS will apparently ship in February or March iPhone ProApple released a swathe of operating system updates on October bringing out iOS iPadOS macOS Ventura and others However users may have a long time to wait for the next big update release from the iPhone maker Read more 2022-10-30 16:20:36
海外科学 NYT > Science Expedition Finds Cameras Left by Yukon Mountaineers in 1937 https://www.nytimes.com/2022/10/30/world/canada/yukon-mountains-cameras.html Expedition Finds Cameras Left by Yukon Mountaineers in Some of the cameras from a climbing expedition years ago still had film in them Conservators are looking to see if any images can be recovered 2022-10-30 16:56:13
ニュース BBC News - Home India bridge collapse: Hundreds plunged into river and dozens killed in Gujarat https://www.bbc.co.uk/news/world-asia-india-63445154?at_medium=RSS&at_campaign=KARANGA gujarat 2022-10-30 16:56:16
ニュース BBC News - Home Incendiary devices thrown at Dover migrant centre https://www.bbc.co.uk/news/uk-england-kent-63446683?at_medium=RSS&at_campaign=KARANGA reuters 2022-10-30 16:53:00
ニュース BBC News - Home Royal Mail staff call off planned strike action https://www.bbc.co.uk/news/business-63446176?at_medium=RSS&at_campaign=KARANGA november 2022-10-30 16:02:05
ニュース BBC News - Home Arsenal 5-0 Nottingham Forest: Gunners thrash struggling Forest to go top https://www.bbc.co.uk/sport/football/63362269?at_medium=RSS&at_campaign=KARANGA Arsenal Nottingham Forest Gunners thrash struggling Forest to go topArsenal bounce back from Thursday s Europa League loss to PSV Eindhoven by returning to the top of the Premier League table with an emphatic win over Nottingham Forest 2022-10-30 16:22:26
ニュース BBC News - Home T20 World Cup: Miller and Markram smash South Africa to victory https://www.bbc.co.uk/sport/av/cricket/63448262?at_medium=RSS&at_campaign=KARANGA world 2022-10-30 16:39:11
ビジネス 不景気.com 荒川化学工業の23年3月期は35億円の最終赤字へ、独子会社減損 - 不景気com https://www.fukeiki.com/2022/10/arakawa-chemical-2023-loss.html 荒川化学工業 2022-10-30 16:41:43
ビジネス 不景気.com シャルレの23年3月期は7億円の最終赤字へ、売上減で - 不景気com https://www.fukeiki.com/2022/10/charle-2023-loss.html 最終赤字 2022-10-30 16:26:08
ビジネス 不景気.com 22年9月の失業率は2.6%に悪化、求人倍率は1.34倍に改善 - 不景気com https://www.fukeiki.com/2022/10/unemployment-rate-22-09.html 労働力調査 2022-10-30 16:12:00
北海道 北海道新聞 インド西部で橋崩落、40人死亡 補修終えたばかり、けが人多数 https://www.hokkaido-np.co.jp/article/753229/ 西部 2022-10-31 01:00:55

コメント

このブログの人気の投稿

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