IT |
気になる、記になる… |
Meta、「Meta Quest Pro」と「Meta Quest 2 (256GB)」を値下げ |
https://taisy0.com/2023/03/04/169220.html
|
metaquest |
2023-03-04 00:41:21 |
IT |
気になる、記になる… |
「iPhone 15 Pro」は感圧タッチ式のミュートボタンを搭載へ |
https://taisy0.com/2023/03/04/169218.html
|
iphonepro |
2023-03-04 00:20:31 |
IT |
気になる、記になる… |
Apple、早ければ来週にも「iPhone 14/14 Plus」に新色のイエローを追加か |
https://taisy0.com/2023/03/04/169215.html
|
apple |
2023-03-04 00:04:47 |
IT |
ITmedia 総合記事一覧 |
[ITmedia ビジネスオンライン] 「初任給アップ」が止まらない 優秀な人材を確保できるのか |
https://www.itmedia.co.jp/business/articles/2303/04/news049.html
|
大手企業 |
2023-03-04 09:13:00 |
python |
Pythonタグが付けられた新着投稿 - Qiita |
RaspberryPi with Python環境のアップデートコマンドまとめ |
https://qiita.com/prgpom/items/4f83e5df0d1327a0486d
|
sudoaptupdatesu |
2023-03-04 09:16:41 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
&&演算子と||演算子の挙動 |
https://qiita.com/yuta-10112022/items/7c5c7580032f1ab7f842
|
ampamp |
2023-03-04 09:04:54 |
AWS |
AWSタグが付けられた新着投稿 - Qiita |
【CloudFront + S3】署名付きURLでのコンテンツアクセス |
https://qiita.com/homma_rk/items/85369dddc7bc45395fc0
|
cloudfront |
2023-03-04 09:44:44 |
技術ブログ |
Developers.IO |
[アップデート] カスタム AMI でブートモードに UEFI 優先モードを指定出来るようになりました |
https://dev.classmethod.jp/articles/ami-register-uefi-preferred/
|
whatsnewataws |
2023-03-04 00:32:11 |
海外TECH |
DEV Community |
민주당 내홍 속…'434억' 재판 앞둔 이재명, 3일부터 격주 출석 / 친명·비명 간 파열음 해결책은? [이슈 톺아보기] MBN뉴스 23.03.02 |
https://dev.to/mesinzer/minjudang-naehong-sog434eog-jaepan-apdun-ijaemyeong-3ilbuteo-gyeogju-culseog-cinmyeongbimyeong-gan-payeoleum-haegyeolcaegeun-isyu-topabogi-mbnnyuseu-230302-n1c
|
친명 |
2023-03-04 00:41:07 |
海外TECH |
DEV Community |
Why Oh My ZSH is so cool? |
https://dev.to/equiman/why-oh-my-zsh-is-so-cool-31gd
|
Why Oh My ZSH is so cool There is a before and after listening to these letters together ZSH You may wonder Why did not I hear about this before D oh ZSH Z Shell it s a real evolution modernize terminal things with simple solutions But the thing getting better when you discover Oh My ZSH a framework for ZSH that boost your productivity and improve your workflow So why No more cd change directory command Just use CommandResultfolder write the folder name with at the end go back one folder parent dir go back two folders parent from parent dir go back five folders go to rootgo to home jump to previous pathtake the in command who create a directory and automatically change the path to itCommandResulttake lt file gt Download gzip file gz bz xz and uncompresstake lt git repo gt Clone git repo from url httl ssh take lt folder gt Create a new folderJump between last and current path with like a TV remote control zsh stats will give you a list of the top commands and how many times they ve been runTab completion is another great feature For example typing ls and pressing TAB will list all of the command s options along with a helpful description of what they doAlias commands List all with alias or filter it with grep for example alias grep gitWith globbing a Zsh feature you can list files with a particular extension For example ls html will list all HTML files in the current directory To include subdirectories change to ls htmlRecursive path expansion u lo b expands to user local binSpelling correction and approximate completion automatic correct when having minor mistake typing a directory nameHistory substring search writing a command and pressing the up arrow cycles through previous usagesAutocomplete jump between options with tab and press return for selection Works with directories files and commandsRun history command with followed by the number in history like Entering will bring up the last command This is handy if a command fails because it needs admin rights In this case you can type sudo PluginsThere are a lot of plugins to use It s recommended to explore the options and use what is good for your needs My recommendations are sudo to easily prefix your current or previous commands with sudo by pressing esc twicecommand not found to provide suggested packages to be installed if a command cannot be foundgit provides many aliases and a few useful functionshistory substring search a clean room implementation of the Fish shell s history search feature where you can type in any part of any command from history and then press chosen keys such as the UP and DOWN arrows to cycle through matchesweb search adds aliases for searching with Google Wiki Bing YouTube and other popular servicesz command that tracks your most visited directories and allows you to access them with very few keystrokesI ve another extra from plugins from external repositories to add more functionalities autosuggestions suggests commands as you type based on history and completions syntax highlighting ThemesThere are also a lot of themes but my favorite is Powerlevelk because is easy to set up and use GitIncredible and complete aliases for Git ZSH cheatsheet for git plugin Camilo Martinez・Apr ・ min read productivity zsh git terminal Git Status Prompt can contain the following bits segmentmeaningmastercurrent branch vHEAD is tagged with v not shown when on a branch fcfcacurrent commit not shown when on a branch or tag⇣local branch is behind the remote by commit⇡local branch is ahead of the remote by commits⇠local branch is behind the push remote by commits⇢local branch is ahead of the push remote by commits there are stashesmergemerge is in progress could be some other action there are merge conflicts there are staged changes there are unstaged changes there are untracked files Shortcuts Edit long commandctrl x e open the command on an editor to easy edit once save and close the editor it will be updated on the terminalYou can set your favorite editor for example run export EDITOR code w to use VSCode Park a commandctrl q parks the command you re currently typing and takes you back to the prompt letting you start over and type another command Once you run that other command the original command is un parked and refills the command line so you can continue This is good for if you say forgot to do a command before a command Reveal aliasctrl x a will transform the alias to the real command Path historyZSH keeps the history of directories you visited so you can quickly switch to any of them To see the list type dirs v Switch to any directory in this list by typing where is the number of the directory in the list HooksYou can personalize actions before and after a command with ZSH Hooks Reveal the command behind an alias with ZSH Camilo Martinez・Feb ・ min read productivity bash tutorial terminal Sources Zsh Commands Plugins Aliases and ToolsZSH Globbing as an Alternative to Find CommandThat s All Folks Happy Coding |
2023-03-04 00:37:11 |
ニュース |
BBC News - Home |
Senior doctors want up to £262 an hour to cover strike |
https://www.bbc.co.uk/news/health-64827246?at_medium=RSS&at_campaign=KARANGA
|
emergency |
2023-03-04 00:01:24 |
ニュース |
BBC News - Home |
Disgraced ex-lawyer Alex Murdaugh sentenced to life in prison |
https://www.bbc.co.uk/news/world-us-canada-64828608?at_medium=RSS&at_campaign=KARANGA
|
sentences |
2023-03-04 00:09:23 |
ニュース |
BBC News - Home |
Echoes of Hillsborough for Manchester Arena families |
https://www.bbc.co.uk/news/uk-64798847?at_medium=RSS&at_campaign=KARANGA
|
judith |
2023-03-04 00:01:12 |
ニュース |
BBC News - Home |
What's the least exercise we can get away with? |
https://www.bbc.co.uk/news/health-64001807?at_medium=RSS&at_campaign=KARANGA
|
Detail Nothing |
2023-03-04 00:07:45 |
ニュース |
BBC News - Home |
Week in pictures: 25 February - 3 March 2023 |
https://www.bbc.co.uk/news/in-pictures-64828983?at_medium=RSS&at_campaign=KARANGA
|
images |
2023-03-04 00:05:13 |
ニュース |
BBC News - Home |
'Massive toll' of living in a leasehold property |
https://www.bbc.co.uk/news/uk-politics-64836421?at_medium=RSS&at_campaign=KARANGA
|
owners |
2023-03-04 00:12:39 |
ニュース |
BBC News - Home |
Exodus from Cuba: The children left behind as wave of emigration swells |
https://www.bbc.co.uk/news/world-latin-america-64811310?at_medium=RSS&at_campaign=KARANGA
|
emigration |
2023-03-04 00:01:43 |
ニュース |
BBC News - Home |
Emmanuel Macron's mission to counter Russia in Africa |
https://www.bbc.co.uk/news/world-africa-64822485?at_medium=RSS&at_campaign=KARANGA
|
china |
2023-03-04 00:07:29 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
サウジとUAEの対立深まる イエメンや原油生産巡り - WSJ発 |
https://diamond.jp/articles/-/318906
|
生産 |
2023-03-04 09:06:00 |
ビジネス |
東洋経済オンライン |
まるでドラマ!韓流スターが涙する「あるもの」 さらに発展する、日本人が驚く韓国の必修文化 | 読書 | 東洋経済オンライン |
https://toyokeizai.net/articles/-/654301?utm_source=rss&utm_medium=http&utm_campaign=link_back
|
東洋経済オンライン |
2023-03-04 09:30:00 |
海外TECH |
reddit |
Evil Geniuses vs. FlyQuest / LCS 2023 Spring - Week 6 / Post-Match Discussion |
https://www.reddit.com/r/leagueoflegends/comments/11hkdyy/evil_geniuses_vs_flyquest_lcs_2023_spring_week_6/
|
Evil Geniuses vs FlyQuest LCS Spring Week Post Match DiscussionLCS SPRING Official page Leaguepedia Liquipedia Eventvods com New to LoL Evil Geniuses FlyQuest EG Leaguepedia Liquipedia Website Twitter Facebook YouTube FLY Leaguepedia Liquipedia Website Twitter Facebook YouTube Subreddit MATCH EG vs FLY Winner Evil Geniuses in m Game Breakdown Bans Bans G K T D B EG zeri vi lucian sylas gwen k H C B C B FLY caitlyn ashe annie lee sin jayce k HT H I B C EG vs FLY Ssumday garen TOP ksante Impact Inspired gragas JNG sejuani Spica jojopyun azir MID taliyah VicLa FBI varus BOT aphelios Prince Vulcan thresh SUP lulu Eyla This thread was created by the Post Match Team submitted by u Soul Sleepwhale to r leagueoflegends link comments |
2023-03-04 00:39:21 |
コメント
コメントを投稿