AWS |
AWS Japan Blog |
【開催報告】アップデート紹介とちょっぴりDiveDeepするAWSの時間 第七回 (6/24) |
https://aws.amazon.com/jp/blogs/news/update-divedeep-series-7/
|
divedeep |
2021-07-18 16:54:06 |
Program |
[全てのタグ]の新着質問一覧|teratail(テラテイル) |
smfony バージョン3 ログ出力方法 |
https://teratail.com/questions/350175?rss=all
|
smfony |
2021-07-19 01:36:30 |
Ruby |
Rubyタグが付けられた新着投稿 - Qiita |
【Rails】投稿した写真の検索機能(フリーワード/カテゴリー/タグ)を実装したい |
https://qiita.com/nakachan-ing/items/b28eda568ad73324761a
|
②ビューファイル内にフリーワードカテゴリータグそれぞれの検索時にコントローラーへ送るパラメーターとして、値valueと検索方法howを指定する記述をする。 |
2021-07-19 01:43:17 |
Docker |
dockerタグが付けられた新着投稿 - Qiita |
WSL2の理解度を深める、Ubuntu と Docker Desktop とコンテナ の知見(その4/4) |
https://qiita.com/ssugimoto/items/a14262fa0bc8f60efee8
|
WSLの理解度を深める、UbuntuとDockerDesktopとコンテナの知見そのそのそのそのそのこの記事DockerDesktopforWindowsとwslの関係や設定wsl側wslとして、dockerのバックエンド側をdockerdesktopを使うようにしている場合wslUbuntuをインストールしていない、またはwslとしてdockerdektopを使うようにしている場合やマイクロソフトストアからwslUbuntuはインストールせずに、wslをインストールした後にDockerDesktopforWindowsのみインストールした場合はwsllvの結果でUbuntuの行はなく、dockerdesktopがデフォルトです。 |
2021-07-19 01:22:14 |
Docker |
dockerタグが付けられた新着投稿 - Qiita |
WSL2の理解度を深める、Ubuntu と Docker Desktop とコンテナ の知見(その3/4) |
https://qiita.com/ssugimoto/items/3b4a26711604bb6d56d2
|
Ubuntu内へのコンテナ用のファイルの配布は、Windwosのエクスプローラーから実施しても良いし、UbuntuからGitコマンド等を使ってファイルをダウンロードしてもどちらでも良いですリモートコンテナのファイルをwslUbuntu内に置くWindows側のVSCodeを開き、、左下のgtltをクリックして、ReopenFolderinWSLで開いた後に、Reopenincontainerで開くすると、コンテナのビルドがされていない場合は、ビルドされコンテナが起動する。 |
2021-07-19 01:21:51 |
Docker |
dockerタグが付けられた新着投稿 - Qiita |
WSL2の理解度を深める、Ubuntu と Docker Desktop とコンテナ の知見(その2/4) |
https://qiita.com/ssugimoto/items/1b19083f5045e190e4ae
|
Ubuntuのdcokerを入れる例、Ubuntu内でWindows側のディレクトリを参照して、grepやsed等のLinux系のコマンド使うPowerShellで代替できそうだけど、・・・Ubuntu好きで、Ubuntuをメインに作業するとか、Ubuntuの操作はWindowsTerminal入れて使いますWSLubuntuGUI化して使う方法のように、Windows内でUbuntuにリモート接続してUbuntuの画面操作するアプリでLinuxGUIアプリを実行Linux用WindowsサブシステムプレビューWindowsアプリからLinuxアプリを起動スタートメニューLinuxアプリをWindowsタスクバーにピン留めするAltタブを使用してLinuxアプリとWindowsアプリを切り替えるWindowsアプリとLinuxアプリ間で切り取り貼り付けwslUbuntu不要なケースWindowsでDockerコンテナ使いたいならば、wslかwslのみでwslUbuntuはなくても良い前述の通り、DockerDesktopforWindowsがよしなにやってくれる。 |
2021-07-19 01:21:14 |
Docker |
dockerタグが付けられた新着投稿 - Qiita |
WSL2の理解度を深める、Ubuntu と Docker Desktop とコンテナ の知見(その1/4) |
https://qiita.com/ssugimoto/items/668d33e4b151933b2e19
|
そのため、Windowsアプリケーションを使用してLinuxファイルにアクセスする場合、現時点ではWSLを使用する方がより高速なパフォーマンスを得られます。 |
2021-07-19 01:20:55 |
Ruby |
Railsタグが付けられた新着投稿 - Qiita |
【Rails】投稿した写真の検索機能(フリーワード/カテゴリー/タグ)を実装したい |
https://qiita.com/nakachan-ing/items/b28eda568ad73324761a
|
②ビューファイル内にフリーワードカテゴリータグそれぞれの検索時にコントローラーへ送るパラメーターとして、値valueと検索方法howを指定する記述をする。 |
2021-07-19 01:43:17 |
海外TECH |
DEV Community |
Developer tips you need to know |
https://dev.to/dhanushxeno/developer-tips-you-need-to-know-3j74
|
Developer tips you need to knowBefore building a website People usually say to learn HTML Css or Javascript or any web technologies Or backend like node js mongo firebase etc But there is something more important than that before getting started while buildingMake sure you have a proper folder structure before writing the codeYou cannot just fill code in your app just like thatMake sure the number of lines in a file doesn t exceed a specific limitAnd incase it exceeds make sure you split the code into different modules or filesThe character limit of the line of code also shouldn t exceed much You can check some of the eslint best practices for thisMake sure you add comments in the code Even if you are a pro in coding if someone else views your code they must be able to understandHave meaningful names let a let num When building also make sure you use constants and make sure similar code is not repeated There is something called TDD Test Driven DevelopmentMost don t use it make sure you write test cases both frontend and backend it is essential for building a perfect applicationAn app created with test cases will be more noticed than a normal app especially in interviews Even after developing an app and pushing your code in git make sure you specify the version Eg node or react version of the technology you have usedBecause somecases people may clone your repository amp if it doesn t work your work may get unnoticedAbove are some of the points which I look into working on other people s code especiallyOr when I develop applicationsIf you have any more input feel free to mention in the comments below If you find this post valuable share it with your friendsFor more tech information amp developer tips stay connected with me via Twitter |
2021-07-18 16:48:05 |
海外TECH |
DEV Community |
Dev.to Clone with Next.js & Firebase |
https://dev.to/hariharen9/dev-to-clone-with-next-js-firebase-c7a
|
Dev to Clone with Next js amp Firebase Welcome to FogWhere you can clear up your Foggy thoughts and WHIM s by blogging on it Made a blogging website highly inspired by Dev to Click here for live demo Foggy to Story time I was reading some articles in dev to I loved it So tried to create a blogging website similar to it And I think I got at least of my inspiration But it gets the job done This is FOG A fullstack web application for blogging Uses realtime database and completely SEO optimized Thanks to NEXT JS Here you can clear your fog and write all your thoughts or whim s on the go Do check it out softwaredevelopment blog javascript blogsNext JS Firebase IS the Tech Stack used here nextjs firebaseKindly go there Signup Write some blogs and publish them Thanks Source code is provided below SOURCE CODE Github FOGWith HARIHAREN Connect |
2021-07-18 16:42:10 |
海外TECH |
Engadget |
More leaks suggest the next iPhone might have an always-on display |
https://www.engadget.com/iphone-12s-always-on-display-leak-164539339.html?src=rss
|
More leaks suggest the next iPhone might have an always on displayAdd another major voice to the chorus of those claiming the next iPhone could have an always on display As toMacnotes Bloomberg s Mark Gurman used his weekly quot Power On quot newsletter to say the iPhone will potentially have an quot Apple Watch like quot always on display with better battery life in addition to a Hz refresh rate a smaller screen notch an A chip and video recording upgrades Gurman didn t outline the always on screen functionality However a past leak from Max Weinbach suggested Apple would use an LTPO low temperature polycrystalline oxide panel that like on the Apple Watch and a few Android phones could drop to extremely low refresh rates to offer persistent information without a large hit to battery life You might see some notifications battery life and the clock without having to wake up your phone The writer also used his newsletter to narrow the time frame for a long rumored MacBook Pro redesign He now expects Apple to start mass production of the mini LED equipped laptops in the third quarter of aka this summer with a launch between September and November That s still somewhat vague but it does suggest you won t have to wait until next year or watch for a surprise early announcement The new MacBook Pros are rumored to have a flat design like the new iMac minus the colors while using a more powerful take on Apple s M chip that could support up to GB of RAM and more ports Mini LEDs could deliver a screen that offers high contrast ratios and brightness while keeping battery life in check |
2021-07-18 16:45:39 |
海外科学 |
NYT > Science |
Where Does Weed Come From? A New Study Suggests East Asia. |
https://www.nytimes.com/2021/07/18/science/weed-asia-marijuana-cannabis.html
|
Where Does Weed Come From A New Study Suggests East Asia A group of biologists and other scientists said humans began growing cannabis about years ago not just for food but also for hemp and yes probably to get high |
2021-07-18 16:34:11 |
ニュース |
BBC News - Home |
Covid-19: PM and chancellor to self-isolate in U-turn |
https://www.bbc.co.uk/news/uk-57879730
|
positive |
2021-07-18 16:27:01 |
ニュース |
BBC News - Home |
British Grand Prix: Lewis Hamilton overcomes time penalty to claim famous win |
https://www.bbc.co.uk/sport/formula1/57880871
|
British Grand Prix Lewis Hamilton overcomes time penalty to claim famous winLewis Hamilton fights back from a second penalty for a crash with title rival Max Verstappen to pass Ferrari s Charles Leclerc for a dramatic victory in the British Grand Prix |
2021-07-18 16:16:32 |
ニュース |
BBC News - Home |
Verstappen taken to hospital after opening-lap crash at Silverstone |
https://www.bbc.co.uk/sport/formula1/57881919
|
Verstappen taken to hospital after opening lap crash at SilverstoneMax Verstappen taken to hospital for precautionary tests after first lap accident at the British Grand Prix as winner Hamilton accused of dirty driving |
2021-07-18 16:02:50 |
ニュース |
BBC News - Home |
The Open 2021: Morikawa hits three birdies and takes the lead |
https://www.bbc.co.uk/sport/av/golf/57882359
|
george |
2021-07-18 16:46:04 |
ニュース |
BBC News - Home |
Covid-19 in the UK: How many coronavirus cases are there in my area? |
https://www.bbc.co.uk/news/uk-51768274
|
cases |
2021-07-18 16:02:06 |
北海道 |
北海道新聞 |
当別町長に後藤氏初当選 新人対決制す 投票率53・13% |
https://www.hokkaido-np.co.jp/article/568552/
|
即日開票 |
2021-07-19 01:14:07 |
北海道 |
北海道新聞 |
タイ、反体制デモで衝突 新型コロナで失策と抗議 |
https://www.hokkaido-np.co.jp/article/568593/
|
新型コロナウイルス |
2021-07-19 01:01:00 |
コメント
コメントを投稿