TECH |
Engadget Japanese |
1996年11月23日、携帯デジタルペットの「たまごっち」が発売されました:今日は何の日? |
https://japanese.engadget.com/today-203049313.html
|
発売 |
2021-11-22 20:30:49 |
AWS |
AWS Database Blog |
Set up a cross-region disaster recovery site for Amazon RDS for SQL Server |
https://aws.amazon.com/blogs/database/set-up-a-cross-region-disaster-recovery-site-for-amazon-rds-for-sql-server/
|
Set up a cross region disaster recovery site for Amazon RDS for SQL ServerA common use case for Enterprise workloads is to have a reliable and effective disaster recovery DR strategy that keeps your database applications in operation with little or no disruption even if an entire Region is unavailable Amazon Relational Database Service Amazon RDS for SQL Server is a fully managed database that makes it easy … |
2021-11-22 20:18:57 |
AWS |
AWS Security Blog |
AWS Security Profiles: J.D. Bean, Sr. Security Solutions Architect |
https://aws.amazon.com/blogs/security/aws-security-profiles-j-d-bean-sr-security-solutions-architect/
|
AWS Security Profiles J D Bean Sr Security Solutions ArchitectIn the week leading up to AWS re Invent we ll share conversations we ve had with people at AWS who will be presenting and get a sneak peek at their work How long have you been at AWS and what do you do in your current role I m coming up on my three year anniversary at AWS … |
2021-11-22 20:12:41 |
AWS |
AWS Security Blog |
AWS Security Profiles: J.D. Bean, Sr. Security Solutions Architect |
https://aws.amazon.com/blogs/security/aws-security-profiles-j-d-bean-sr-security-solutions-architect/
|
AWS Security Profiles J D Bean Sr Security Solutions ArchitectIn the week leading up to AWS re Invent we ll share conversations we ve had with people at AWS who will be presenting and get a sneak peek at their work How long have you been at AWS and what do you do in your current role I m coming up on my three year anniversary at AWS … |
2021-11-22 20:12:41 |
Ruby |
Rubyタグが付けられた新着投稿 - Qiita |
【オリジナルアプリ】公務員からの転職を考える人のための交流サイト【公務員NEXT】 |
https://qiita.com/subun33/items/886331cd679ef65051e8
|
時間をかけ過ぎたなというのが、正直なところですが、諦めずにやりきったことは、今後も出くわすであろうエラーとの闘いに向けての価値ある経験となりました。 |
2021-11-23 05:57:43 |
海外TECH |
Ars Technica |
HP Chromebook x2 review: Filling an 11-inch niche |
https://arstechnica.com/?p=1806432
|
factor |
2021-11-22 20:48:33 |
海外TECH |
MakeUseOf |
Is 3D Printing Eco-Friendly? |
https://www.makeuseof.com/is-3d-printing-eco-friendly/
|
great |
2021-11-22 20:02:39 |
海外TECH |
DEV Community |
HackerRank #40 | Java Dequeue | 🇧🇷 |
https://dev.to/beatrizmaciel/hackerrank-40-java-dequeue--497h
|
HackerRank Java Dequeue Esse exercício recebe dois inputs iniciais um integer N relativo àquantidade de números em um array e um integer M relativo a um subarray deslocável que faráa varredura dentro do array principal N quantidade de números do arrayM tamanho do subarray que varreráo array principalDessa forma os arrays estruturados com M serão Como todos os subarrays precisam ter M números nesse caso esses serão os subarrays possíveis Depois disso precisamos que o programa contabilize qual éo máximo de números únicos existentes em um subarray de tamanho M números únicos números únicos números únicos números únicosSendo assim o máximo de números únicos em um subarray será Esse precisa ser o output Vamos para a solução dividida em partes Primeiro declaramos um Array de Integers de nome deque Declaramos também um Hashset de Integers de nome hashset Lembrando que um Hashset não repete números e isso vai ser útil para que possamos contabilizar números únicos Depois escaneamos os ints N M e maxUniqueIntegers nossa resposta final Dentro de uma iteração pegaremos através de um input os números do array Lembrando a quantidade de números do array édelimitada por N mas seráinserida pelo usuário Vamos adicionar todos os números do input no Array deque e no Hashset hashset através do addFaremos uma condicional que diz que nosso Array deque tendo o mesmo tamanho de M farácom que o hashset receba o maxUniqueIntegers para ir contabilizando as entradas de números únicos Como o hashset sópermite números únicos o maxUniqueIntegers também sóreceberáa quantidade de números únicos Depois declararemos uma variável firstQueueNumber que faráa remoção do primeiro número do nosso array deque A propriedade remove sempre remove o primeiro elemento ou o elemento que tem a menor posição i leia mais sobre isso nas referências Por fim imprimimos o maxUniqueNumbers com a quantidade de números únicos O código final fica assim public static void main String args Scanner in new Scanner System in Deque lt Integer gt deque new ArrayDeque lt gt HashSet lt Integer gt hashset new HashSet lt gt int n in nextInt int m in nextInt int maxUniqueIntegers for int i i lt n i int num in nextInt deque add num hashset add num if deque size m if hashset size gt maxUniqueIntegers maxUniqueIntegers hashset size int firstQueueNumber deque remove if deque contains firstQueueNumber hashset remove firstQueueNumber System out println maxUniqueIntegers Referências ArrayList Oracle Essa publicação faz parte de uma série de exercícios resolvidos em Java no HackerRank Acesse a série completa HackerRank Scanner e End of fileHackerRank Int to String String to IntHackerRank Date and TimeHackerRank Static Initializer BlockHackerRank Currency FormatterHackerRank DataTypesHackerRank Strings IntroductionHackerRank Substring ComparisonsHackerRank Abstract ClassHackerRank BigIntegerHackerRank Loops IIHackerRank String ReverseHackerRank Instanceof keywordHackerRank GenericsHackerRank D ArrayHackerRank AnagramsHackerRank ArraylistHackerRank Exception Handling Try CatchHackerRank Exception HandlingHackerRank ListHackerRank SubArrayHackerRank HashSetHackerRank Java Dequeue |
2021-11-22 20:35:53 |
海外TECH |
DEV Community |
Prometheus and Grafana, Part 2 |
https://dev.to/muckitymuck/prometheus-and-grafana-part-2-47bg
|
Prometheus and Grafana Part The Prometheus yml my global configglobal scrape interval s Set the scrape interval to every seconds Default is every minute evaluation interval s Evaluate rules every seconds The default is every minute scrape configs The job name is added as a label job lt job name gt to any timeseries scraped from this config job name prometheus metrics path defaults to metrics scheme defaults to http static configs targets localhost job name node exporter Override the global default and scrape targets from this job every seconds scrape interval s metrics path metrics static configs targets lt PUBLIC IP gt This is a good starting place for a monitoring system for Linux boxesRunning the services in docker is also advised as it simplifies the rollout Docker node exporter sudo docker run restart always d net host pid host v host ro rslave prom node exporter latest path rootfs hostDocker prometheus sudo docker service create replicas name dockerprometheus mount type bind source home ubuntu prometheus prometheus yml destination etc prometheus prometheus yml publish published target protocol tcp prom prometheusWhen you get around to making panels in Grafana these queries are very useful node filesystem avail bytes mountpoint fstype rootfs node filesystem size bytes mountpoint fstype rootfs node filesystem avail bytesOR you could just setup a template for Node Exporter To import a new dashboard for Node Exporter go to Dashboards gt ManageEnter for the Grafana ID Pick up the name and choose a Data Source for the dashboard To make an alert start a NEW dashboard and NEW panel Template dashboards like above will not work Enter the query for the item you want to track and press the Alert tab That should do it for a basic monitoring service |
2021-11-22 20:13:46 |
海外TECH |
DEV Community |
Learn How To Lazy Load Image Using Javascript In PHP |
https://dev.to/adeleyeayodeji/learn-how-to-lazy-load-image-using-javascript-in-php-1f1n
|
Learn How To Lazy Load Image Using Javascript In PHP Do you want to increase your website speed Then you need this tutorial to lazy load your assets Download Source Code Have an issue Comment below |
2021-11-22 20:09:30 |
海外TECH |
DEV Community |
BetterViewer — A chrome extension for better image viewing experience |
https://dev.to/ademking/betterviewer-a-chrome-extension-for-better-image-viewing-experience-3k3m
|
BetterViewer ーA chrome extension for better image viewing experienceHi everyone After many cups of coffee and many more hours of hard work I launched my free Open source Chrome extension BetterViewerBetterViewer makes image viewing faster easier and more fun BetterViewer was designed as a replacement for the image viewing mode built into Chrome based web browsers With BetterViewer you can use various keyboard shortcuts to quickly pan zoom images edit and a lot more Features Zoom in Zoom Out Reset Fullscreen Rotate Left Rotate Right Flip Horizontal Flip Vertical Crop Image Paint Download Image Upload Image to imgur com Color picker Image Details Change background color Dark Light Blurred Print Image Extract Text from Image Edit in PhotopeaProduct Hunt Chrome Web Store Ademking BetterViewer a replacement for the image viewing mode built into Chrome based web browsers Fast Simple Easy image viewerBetterViewer makes image viewing faster easier and more fun BetterViewer was designed as a replacement for the image viewing mode built into Chrome based web browsers With BetterViewer you can use various keyboard shortcuts to quickly pan zoom images edit and a lot more Chrome Web Store Click Here Screenshots FeaturesZoom in Zoom Out ResetFullscreenRotate Left Rotate RightFlip Horizontal Flip VerticalCrop ImagePaintDownload ImageUpload Image to imgBBColor pickerImage DetailsChange background color Dark Light Blurred Print ImageExtract Text from ImageEdit in Photopea Thanks to bbbenji Changelog Fix Crop problemFix random shutdownReplace Imgur with ImgBB Many users requested this Add Edit with Photopea Add Contributors in About popup First versionContributors Thanks goes to these wonderful people emoji key … View on GitHub |
2021-11-22 20:04:17 |
Apple |
AppleInsider - Frontpage News |
Black Friday: Buy two books get one free from Amazon |
https://appleinsider.com/articles/21/11/22/black-friday-buy-two-books-get-one-free-from-amazon?utm_medium=rss
|
Black Friday Buy two books get one free from AmazonAmazon is now offering a special deal where customers can buy two books from nearly every genre off a select list and get a third for free Amazon has a new book dealIt s not specifically branded as a Black Friday deal but Amazon s new for offer is only for a limited time That period hasn t been confirmed yet so it s likely to continue as long as there is demand and sufficient books Read more |
2021-11-22 20:13:30 |
Apple |
AppleInsider - Frontpage News |
iPhone 13 lead times shorten suggesting supply ramp-up, analyst says |
https://appleinsider.com/articles/21/11/22/iphone-13-lead-times-shorten-suggest-supply-ramp-up-analyst-says?utm_medium=rss
|
iPhone lead times shorten suggesting supply ramp up analyst saysAlthough still elevated compared to the iPhone estimated delivery dates appear to be contracting for the iPhone lineup according to JP Morgan Credit Andrew O Hara AppleInsiderIn a note to investors seen by AppleInsider JP Morgan analyst Samik Chatterjee writes that lead times for all iPhone and iPhone Pro models moderated for the second week in a row marking only the third time this has happened for the stable of Apple handsets Read more |
2021-11-22 20:10:23 |
海外科学 |
NYT > Science |
Why Was This Ancient Tusk 150 Miles From Land, 3,000 Feet Deep? |
https://www.nytimes.com/2021/11/22/science/mammoth-tusk-ocean.html
|
moment |
2021-11-22 20:43:50 |
海外科学 |
NYT > Science |
Looking for a Stolen Idol? Visit the Museum of the Manhattan D.A. |
https://www.nytimes.com/2021/11/17/arts/design/antiquities-manhattan-da.html
|
Looking for a Stolen Idol Visit the Museum of the Manhattan D A Investigators have seized so many looted artifacts ーmore than ーthat storing and caring for them until they can be returned is now a full time job |
2021-11-22 20:48:29 |
ニュース |
BBC News - Home |
Social care: Boris Johnson defends plan ahead of Commons vote |
https://www.bbc.co.uk/news/uk-politics-59365729?at_medium=RSS&at_campaign=KARANGA
|
people |
2021-11-22 20:22:30 |
ニュース |
BBC News - Home |
Wisconsin: Police name victims after car ploughs into Waukesha Christmas parade |
https://www.bbc.co.uk/news/world-us-canada-59378571?at_medium=RSS&at_campaign=KARANGA
|
christmas |
2021-11-22 20:26:55 |
ニュース |
BBC News - Home |
Short-term fix for long-term gain? The inside track on Man Utd's manager search |
https://www.bbc.co.uk/sport/football/59373051?at_medium=RSS&at_campaign=KARANGA
|
Short term fix for long term gain The inside track on Man Utd x s manager searchAs Manchester United begin their search to fill the gap left by Ole Gunnar Solskjaer BBC Sport examines their options |
2021-11-22 20:21:26 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
武田薬品が「PBR1倍割れ」の屈辱、6兆円買収のブーメラン直撃で大手製薬独り負けの末路 - 決算書100本ノック! 2021冬 |
https://diamond.jp/articles/-/288012
|
企業価値 |
2021-11-23 05:25:00 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
セブン&アイ、四半期増収率49.7%!ずば抜けて高い数字となった2つの要因 - ダイヤモンド 決算報 |
https://diamond.jp/articles/-/288403
|
|
2021-11-23 05:20:00 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
イオンのEC売上高「5年で14倍の1兆円」は大風呂敷?ウォルマートとのIT投資格差は歴然 - 決算書100本ノック! 2021冬 |
https://diamond.jp/articles/-/288011
|
|
2021-11-23 05:15:00 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
ビックカメラ、エディオン…9月の3〜7%減収の評価が「二重に複雑」な事情 - コロナで明暗!【月次版】業界天気図 |
https://diamond.jp/articles/-/288378
|
前年同期 |
2021-11-23 05:10:00 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
1771人が選ぶ「ベスト」ゴルフ場ランキング【九州・沖縄】2位芥屋ゴルフ倶楽部、1位は? - DIAMONDランキング&データ |
https://diamond.jp/articles/-/287813
|
|
2021-11-23 05:05:00 |
ビジネス |
東洋経済オンライン |
日本人の旅に今まさに起きている「5つの大変化」 今だからこそできる旅の形を探してみないか | 新型コロナ、「新しい日常」への前進 | 東洋経済オンライン |
https://toyokeizai.net/articles/-/470892?utm_source=rss&utm_medium=http&utm_campaign=link_back
|
不要不急 |
2021-11-23 05:30:00 |
コメント
コメントを投稿