投稿時間:2022-03-12 07:17:14 RSSフィード2022-03-12 07:00 分まとめ(18件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese モンスターの軍勢をなぎ倒せ!爽快感みなぎる『マスター 無双系3DアクションRPG』:発掘!スマホゲーム https://japanese.engadget.com/master-action-211052709.html 軍勢 2022-03-11 21:10:52
Google カグア!Google Analytics 活用塾:事例や使い方 iPhoneにPodTrak P4 とVT-4を接続してボイチェン録音する方法 https://www.kagua.biz/marke/podcast/20220312a1.html iphone 2022-03-11 21:00:30
AWS AWS How do I attach or replace an instance profile on an Amazon EC2 instance? https://www.youtube.com/watch?v=7hSvFa9R9D0 How do I attach or replace an instance profile on an Amazon EC instance Skip directly to the demo For more details see the Knowledge Center article with this video Mayank shows you how to attach or replace an instance profile on an Amazon EC instance Introduction Using the AWS Management Console Using the AWS CLI ClosingSubscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2022-03-11 21:11:38
海外TECH MakeUseOf The 5 Best Sites to Find Abandoned Places and Old Ghost Towns https://www.makeuseof.com/tag/web-apps-find-abandoned-places-old-ghost-towns/ everywhere 2022-03-11 21:30:14
海外TECH MakeUseOf What Is the Microsoft Edge Bar and How Do You Use It? https://www.makeuseof.com/what-is-microsoft-edge-bar/ What Is the Microsoft Edge Bar and How Do You Use It If you re a Microsoft Edge user and love handy tools the Edge bar is just what you need Here s what it is and how you can use it when you browse 2022-03-11 21:30:13
海外TECH MakeUseOf How to Apologize and Say Sorry in an Email: The Professional Way https://www.makeuseof.com/tag/the-art-of-the-apology-how-to-say-sorry-with-an-email-and-mean-it/ How to Apologize and Say Sorry in an Email The Professional WayApologizing properly isn t easy Here s how to apologize professionally in an email so you can right your mistakes by saying you re sorry 2022-03-11 21:15:14
海外TECH DEV Community Testando o Generics do Go https://dev.to/trybe/testando-o-generics-do-go-3nnd Testando o Generics do GoFinalmente está quase entre nós Depois de anos ouvindo aquela piadinha e o Generics esta aguardada funcionalidade vai estar disponível na versão da linguagem prevista para lançamento em Março de Neste post eu vou fazer um exemplo usando Generics e um pequeno benchmark para conferir se existem diferenças de performance entre uma função normal e outra usando esta nova funcionalidade Para isso eu me inspirei na biblioteca lo uma das primeiras que usa Generics e que ganhou destaque recentemente por implementar várias funcionalidades úiteis para slices e maps O primeiro passo foi instalar o Go que no momento da escrita deste post encontra se na versão Release Canditate Para isso eu segui essa documentação e executei os comandos go install golang org dl gorc latestgorc downloadCom isso foi criado o diretório sdk na home do meu usuário no Mac Vamos usar esse diretório para configurar a IDE para que ela reconheça a nova versão da linguagem Eu estou usando o Goland da Jetbrains então minha configuração ficou desta forma Além de criar o diretório sdk os comandos acima criaram o binário gorc no diretório go bin da home do meu usuário no Mac Éesse binário que vamos usar para rodar os testes eminetto MacBook Pro da Trybe D post generics gt gorc versiongo version gorc darwin armO próximo passo foi criar um diretório e um main go mkdir post genericscd post genericsgorc mod init github com eminetto post genericstouch main goNo main go eu escrevi o seguinte código package mainimport fmt func main s string Samuel Marc Samuel names Uniq s fmt Println names names UniqGenerics s fmt Println names i int ids UniqGenerics i fmt Println ids from func UniqGenerics T comparable collection T T result make T len collection seen make map T struct len collection for item range collection if ok seen item ok continue seen item struct result append result item return result func Uniq collection string string result make string len collection seen make map string struct len collection for item range collection if ok seen item ok continue seen item struct result append result item return result Na função main épossível ver a principal vantagem de Generics pois usamos a mesma função para remover as entradas duplicadas em slices de strings e de inteiros sem a necessidade de alteração de código Ao executar o código podemos ver o resultado eminetto MacBook Pro da Trybe D post generics gt gorc run main go Samuel Marc Samuel Marc Mas e quanto a performance Estamos perdendo algo ao adicionar essa nova funcionalidade Para tentar responder isso eu fiz um pequeno benchmark O primeiro passo foi instalar o pacote faker para gerar mais dados para o benchmark gorc get u github com bxcodec faker vE o código do main test go ficou desta forma package mainimport github com bxcodec faker v testing var names stringfunc BenchmarkMain m testing B for i i lt i names append names faker FirstName func BenchmarkUniq b testing B Uniq names func BenchmarkGenericsUniq b testing B UniqGenerics names Executando o benchmark foi possível ver o resultado eminetto MacBook Pro da Trybe D post generics gt gorc test bench benchtime xgoos darwingoarch armpkg github com eminetto post genericsBenchmarkMain ns opBenchmarkUniq ns opBenchmarkGenericsUniq ns opPASSok github com eminetto post generics sEu executei várias vezes o benchmark e na maioria a versão feita com Generics foi mais performática apesar da diferença não ter sido tão grande ObservaçõesEste post não éum estudo avançado com benchmarks cientificamente comprovados éapenas um teste básico Então mais fontes devem ser consultadas antes de tomarmos uma decisão final mas a primeira impressão éque estamos ganhando uma feature importante sem perda perceptível de performance Eu acredito que vou esperar a versão final desta funcionalidade estar mais madura provavelmente depois da x para colocá la em produção mas vejo uma grande evolução nas aplicações Go nos próximos meses A empolgação estácomeçando a aumentar 2022-03-11 21:13:17
海外TECH DEV Community Introdução ao Node.js https://dev.to/gabrielhsilvestre/introducao-ao-nodejs-14l1 Introdução ao Node js Node O que é Éum interpretador JavaScript baseado na engine V do Google Chrome Diferente da engine do Chrome o Node não vem com métodos para manipulação do DOM e ao invés disso possui métodos que permitem acessar o sistema e a rede mais diretamente afinal ele roda em ambiente de Back end O que faz Permite a utilização de JS em ambientes de Back end o que éum grande avanço afinal durante um bom tempo o JS rodava somente nos navegadores Módulos O que são São pacotes de códigos que podem ser organizados em um ou mais arquivos e que possuem escopo próprio O que fazem Os módulos permitem o compartilhamento de código dentro da aplicação esse código em questão pode ser nativo do Node criado por nós ou atémesmo de terceiros TiposExistem três tipos de módulos no Node internos locais e de terceiros InternosMódulos internos são aqueles nativos do Node ou seja assim que o baixamos temos esses módulos disponíveis Alguns deles são fs url querystring util e os LocaisMódulos locais são criados por nós durante o desenvolvimento de um projeto dessa forma podemos reutilizar o código em diversos arquivos diferentes bem como reutilizar em outro projeto TerceirosMódulos de terceiros são pacotes criados e publicados pela comunidade e por via de regra são disponibilizados no site oficial de pacotes do Node o NPM Usando Módulos ExportandoComo dito em sua definição módulos são pacotes de código com escopo próprio logo para podermos utilizar a lógica desenvolvida dentro desses pacotes precisamos exportá los SintaxePara exportarmos um pacote utilizamos uma sintaxe muito simples chamamos o método global module exports e atribuímos a ele o valor a ser exportado Frisando que caso desejemos exportar mais de um valor precisamos utilizar alguma estrutura de dados como Objetos ou Arrays module exports module exports brl usdToBrl usdValue gt usdValue ImportandoAgora que exportamos valores de seus arquivos precisamos importá los para que possamos utilizá los Lembrando que podemos importar não somente módulos criados e exportados por nós como também módulos nativos e de terceiros SintaxeA sintaxe de importação étão simples quanto a de exportação precisamos somente chamar a função global require passando o path relativo atéo módulo que desejamos isso caso esse módulo tenha sido criado e exportado por nós Agora se o módulo for nativo ou de terceiros tudo que precisamos fazer épassar o nome do módulo no lugar do path const myModule require myModule js const fs require fs NPM O que é Éa sigla para Node Package Manager o repositório oficial para a publicação de pacotes Node Além disso também existe a ferramenta CLI do npm com ela podemos gerenciar os pacotes de nossa aplicação e suas dependências O que faz O NPM éo repositório oficial para a publicação de pacotes Node logo ele funciona como um grande armazém para os pacotes os disponibilizando para outras pessoas desenvolvedoras Jáa ferramenta CLI do NPM auxilia no gerenciamento dos pacotes sejam eles próprios ou de terceiros dessa forma realizar a instalação e desinstalação por exemplo fica muito simples ComandosUtilizamos a CLI do NPM através de comandos existem diversos comandos que podemos utilizar porém os principais são npm initInicia um pacote Node na pasta onde o comando foi executado gerando um arquivo package json com as informações do pacote npm runExecuta um script previamente definido no arquivo package json npm startExecuta o script específico de start normalmente vinculado a inicialização do projeto npm installInstala as dependências especificadas previamente no arquivo package json ou alguma dependência definida por nós através da linha de comando 2022-03-11 21:09:40
Apple AppleInsider - Frontpage News Everything and everybody from the Apple TV+ shows featured in the Apple Event https://appleinsider.com/articles/22/03/11/everything-and-everybody-from-the-apple-tv-shows-featured-in-the-apple-event?utm_medium=rss Everything and everybody from the Apple TV shows featured in the Apple EventA slew of new Apple Original shows films and sports broadcasts have been teased at the March Peek Performance event Here are all the details At the Apple Event on March Apple CEO Tim Cook took the stage and discussed upcoming shows and previewed a trailer that showcased the lineup of famous actors that are slated to appear in shows available on Apple TV We tracked down all the mentioned shows and actors so you can know what to expect Swan Song Read more 2022-03-11 21:02:41
海外TECH Engadget Russian TikTok creators have reportedly been paid to share propaganda https://www.engadget.com/russia-tiktok-stars-paid-propaganda-215002104.html?src=rss Russian TikTok creators have reportedly been paid to share propagandaThe White House isn t the only one trying to steer discussion of Ukraine on TikTok Vice News has discovered that Russian TikTok influencers are reportedly being paid to share videos promoting the Putin government s narrative surrounding the invasion An anonymous operator in a Telegram channel has been telling creators what and when to post what goals they must meet and otherwise dictating their content At least some of the followers have over a million followers It s unclear who is behind the campaign but the operator claims to be a journalist and has looked for posters for additional pro government content such as supporting Russian athletes in the Olympics and private companies However TikTok s ban on new videos from Russia apparently isn t an obstacle The channel administrator tells influencers how to dodge the ban and at least some producers have posted videos after the ban took effect The channel suddenly shut down on March th as Vice conducted its investigation Most of the videos have since been removed but the campaign team reportedly asked them to do this Others remain and it s not certain how many similar initiatives might be underway It s also unclear if the propaganda was effective TikTok hasn t commented on the pro Kremlin campaign and told Vice about its general efforts to spot quot emerging threats quot and quot harmful misinformation quot surrounding Russia s war against Ukraine Whether or not the Russian government was involved with this TikTok effort there s little doubt the country has tried to control the online narrative on Ukraine It has blocked social networks like Instagram posted misinformation through its embassies accounts circumvented bans on its state news outlets and criminalized media reports that contradict the official stance on the war TikTok s large user base may be a tempting target if Russia hopes to sway more of the internet to its side 2022-03-11 21:50:02
海外TECH Engadget Spotify subscriptions can now be bundled with Soundtrap's audio creation tool https://www.engadget.com/a-spotify-and-soundtrap-bundle-caters-to-creators-of-all-stripes-213130332.html?src=rss Spotify subscriptions can now be bundled with Soundtrap x s audio creation toolIf you re a podcaster or a musician it s likely you ve heard of Soundtrap an online tool that lets you record edit and collaborate on the fly Spotifyーwhich acquired Soundtrap back in ーis now offering a bundle with Spotify Premium and Soundtrap for a month The bundle includes Soundtrap for Music Makers Supreme the highest tier service for musicians and Soundtrap for Storytellers which is geared towards podcasters Given that Spotify Premium is a month and both Soundtrap plans cost per month each this is a solid deal for those who subscribe to both The bundle will give creators access to unlimited projects more than loops sound effects live transcripts and autotune Podcasters also have the ability to publish their podcasts from Soundtrap directly to Spotify instead of using a podcast hosting service like Buzzsprout or Podbean The live transcript can serve as a guide for editing which is likely to be a timesaver nbsp But there s a big drawback to Soundtrap if you re planning on also publishing on Apple Podcasts Stitcher or another podcasting service Soundtrap won t generate an RSS feed for each episode which you will need to publish your podcast outside of Spotify If you want to do that you ll need to download each podcast episode as an audio file and then re upload them onto a third party podcast hosting service All told Soundtrap s suite of podcasting and music editing tools is ideal for creators who need an easy simplified option for making music and podcasts If you re looking for more advanced editing options or the ability to distribute to multiple podcast services you may find better options elsewhere But if Spotify is your audio streaming service of choice as well as your primary source of distribution this bundle could be worth checking out nbsp 2022-03-11 21:31:30
海外科学 NYT > Science The New Captain of the Endurance Shipwreck Is an Anemone https://www.nytimes.com/2022/03/11/science/shackleton-endurance-wreck.html weddell 2022-03-11 21:41:06
海外科学 NYT > Science Theory About U.S.-Funded Bioweapons Labs in Ukraine Is Unfounded https://www.nytimes.com/2022/03/11/us/politics/us-bioweapons-ukraine-misinformation.html Theory About U S Funded Bioweapons Labs in Ukraine Is UnfoundedProminent conservative voices have mischaracterized remarks from American officials to amplify baseless claims promoted by Russian state media 2022-03-11 21:39:28
ニュース BBC News - Home England in West Indies: Zak Crawley hits hundred as tourists dominate day four in Antigua https://www.bbc.co.uk/sport/cricket/60711815?at_medium=RSS&at_campaign=KARANGA England in West Indies Zak Crawley hits hundred as tourists dominate day four in AntiguaZak Crawley hits his second Test hundred as England dominate West Indies on day four of the first Test to set up an outside chance of victory 2022-03-11 21:52:30
ニュース BBC News - Home Ukraine: What happened on day 16 of Russia's invasion https://www.bbc.co.uk/news/world-europe-60712179?at_medium=RSS&at_campaign=KARANGA russia 2022-03-11 21:12:56
ニュース BBC News - Home Which companies are pulling out of Russia? https://www.bbc.co.uk/news/business-60571133?at_medium=RSS&at_campaign=KARANGA difficulties 2022-03-11 21:44:54
ニュース BBC News - Home British Pie Awards: Gluten-free pie crowned winner https://www.bbc.co.uk/news/uk-england-leicestershire-60715831?at_medium=RSS&at_campaign=KARANGA awards 2022-03-11 21:23:05
ビジネス 東洋経済オンライン 「日経平均2万円割れの懸念」が無謀ではない理由 株価下落の理由は「ウクライナ」だけではない | 新競馬好きエコノミストの市場深読み劇場 | 東洋経済オンライン https://toyokeizai.net/articles/-/538416?utm_source=rss&utm_medium=http&utm_campaign=link_back 個人的見解 2022-03-12 06:30:00

コメント

このブログの人気の投稿

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