投稿時間:2023-03-18 03:22:57 RSSフィード2023-03-18 03:00 分まとめ(34件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita PyQt5&folium勉強④ https://qiita.com/kiryu-3/items/d1388a6a584c3f26d914 folium 2023-03-18 02:28:10
Git Gitタグが付けられた新着投稿 - Qiita GitHub で複数のアカウントを使いわける https://qiita.com/okm-uv/items/ea1a8e80e94e8e28f072 github 2023-03-18 02:03:37
海外TECH Ars Technica YouTube TV jumps in price again—it’s now $72.99 per month https://arstechnica.com/?p=1924908 monththe 2023-03-17 17:17:25
海外TECH Ars Technica Genetic data links SARS-CoV-2 to raccoon dogs in China market, scientists say https://arstechnica.com/?p=1924934 market 2023-03-17 17:07:49
海外TECH MakeUseOf 10 Ethical AI Tools for Artists and Creators https://www.makeuseof.com/ethical-ai-tools-for-artists-creators/ artists 2023-03-17 17:30:17
海外TECH MakeUseOf 4 Best Alternatives to Cortana on Windows 10 https://www.makeuseof.com/best-alternatives-cortana-windows-10/ windows 2023-03-17 17:15:16
海外TECH DEV Community 🌳tree command https://dev.to/ayon_ssp/tree-command-3c5k tree command What is the tree command The tree command is a utility tool in Linux that displays the directory structure in a tree like format It displays all the subdirectories and files in a hierarchical manner making it easier to understand the organization of your files and directories Installing the tree commandsudo apt get install tree How to use the tree command tree options directory Here options refers to the various options you can use with the command directory refers to the path of the directory whose structure you want to display For example to display the directory structure of the current directory you can simply type tree Some useful optionsHere are some useful options you can use with the tree command a This option will display hidden files and directories as well L level This option allows you to specify the depth to which the directory structure should be displayed For example tree L will display the structure of the current directory and its immediate subdirectories only d This option will display only directories and not files I pattern This option allows you to specify a pattern to exclude files and directories from the tree structure For example tree I txt will exclude all files with the extension txt Examples Example Displaying the directory structure of a specific directorytree home user DocumentsThis will display the directory structure of the Documents directory in aExample Displaying the directory structure of a specific Level tree L 2023-03-17 17:51:40
海外TECH DEV Community What have you learned through #WeCoded? https://dev.to/devteam/what-have-you-learned-through-wecoded-16lg What have you learned through WeCoded As our WeCoded celebration comes to a close I wanted to take some time to reflect on the stories experiences and learnings that our community has shared over the past week Here s mine even though I don t read or speak Brazilian Portuguese PT BR with the help of Google Translate I enjoyed reading this article from vanessatelles Neopets Meu inicio não tão convencional na área da tecnologia Vanessa Telles・Mar ・ min read wecoded shecoded braziliandevs html It made me think about my own career trajectory and opportunities which I shared in Google Translated PT BR Erin Bensinger • Mar Adorei ler esta história Eu também costumava brincar com HTML e CSS no Neopets quando criança lembro de me divertir muito com fundos de azulejos e cursores brilhantes haha Eu definitivamente tive um perfil temático da Avril Lavigne em algum momento Isso me faz sentir agridoce embora Quando menina meu interesse por programação não era apoiado pelos adultos e acabei seguindo um caminho diferente Às vezes penso em como minha vida seria diferente se eu tivesse continuado estudando e construindo com HTML e CSS PS sou falante de inglês e espanhol jaja e usei o Google Tradutor para traduzir para PT BR então peço desculpas por qualquer bobagem gramatical Ok your turn What s something you learned through WeCoded on DEV 2023-03-17 17:29:27
海外TECH DEV Community The newest must-have developer tool is ChatGPT https://dev.to/pluralsight/the-newest-must-have-developer-tool-is-chatgpt-3gng The newest must have developer tool is ChatGPT Rather watch this as a video Click here to viewYou might be thinking another article about ChatGPT Really There s been no shortage of press dedicated to this tool but let s get specific Let s talk about how you can use it as a software developer I ve been using this tool since its release The output has been outstanding It has made me better at software development That s right this tool has improved my work tremendously Is it because now I generate all my code with ChatGPT and work x faster No But it has made me more productive So I will share some tips with you that will help you learn more and leverage this tool for your software work What is ChatGPT Generative Pre trained Transformer or GPT is a language processing model developed by OpenAI ChatGPT is a GPT model trained on conversational data It s designed to be a hyper intelligent chat bot It uses articles research papers books documentation and more to predict answers to questions We ll get into that a bit more You can try out ChatGPT here for free If you re wondering what all the hype is about you can sign up and immediately use it through an easy to use chat interface No I didn t use ChatGPT to write this article It s written by a human being this time However I did have ChatGPT write an application for me the other day I m impressed If you want to learn more about ChatGPT and how it works check out this awesome course on ChatGPT by Amber Israelsen It covers what you need to know to understand and use it better What it isYou ve probably heard about people using ChatGPT to generate content rewrite their bios or come up with catchy names for a company It s great at that Many folks have been using it as a supercharged search engine ChatGPT thinks like a person and speaks like a machine It learns from words and predicts the next word or set of words This is an important distinction because many think it is a giant database or Google on steroids It s not It s a much different tool for another purpose predicting text Put simply ChatGPT doesn t do an internet search for answers It predicts Answers based on its training data Amber IsraelsenThat s great news for you as a developer If you re searching for the meaning of an error message Google and Stack Overflow are still your best bet However if you want to know what s a better way to write this ChatGPT is the tool to use Let s explore that deeper How to use it as a developerYou can extract valuable information from ChatGPT using prompt engineering Asking the tool what you want from it can be tricky but changing the questions will improve your answer Let s look at some prompts we can use to improve our code Prompt What s a better way to do this This is one of my favorite prompts so I m listing it first After a few years you re dusting off your C skills and are writing an application You create a vehicle class with a few properties public class Vehicle private int numberOfWheels private string typeOfCar private string color public int NumberOfWheels get return numberOfWheels set numberOfWheels value public string TypeOfCar get return typeOfCar set typeOfCar value public string Color get return color set color value Is this valid code Sure It uses getters and setters and you can implement data protection on your properties It will compile and work just fine However this isn t how we implement properties in C anymore But you have no way of knowing that especially if you haven t written C since version So out of curiousity you go into ChatGPT and paste in the following What s a better way to write this class lt insert code here gt ChatGPT takes this prompt and spits out the following Not only does it tell you about auto implemented properties but it tells you why you should use this suggestion Now you know that you can perform the same thing that lines of code used to do in just six lines of code It tells you why that s important You just learned something Let s look at another example You have an array of data in Python that you d like to iterate through You write the following code to do it my array for i in range len my array print The value at index i is my array i Does it work Yes It makes sense and it is pretty concise But is there a better way What s a better way to write this lt insert code here gt ChatGPT returns this While less drastic than the first example you just learned a new way to do something and why it matters Prompt How do I do something This is yet another way to use ChatGPT However there is a caveat attached You can always ask it how to do something how do I connect to postgresql with php And for many common things it will usually spit out an answer that s correct You can have it generate a variety of great boilerplate code for various tasks Not only will it write the code for you but it will explain the reasoning behind it This can be incredible if it s a concept you are unfamiliar with ChatGPT can generate things like this much faster than a Google query As I said earlier I pretended to know nothing about Go JavaScript and HTML and created an entire web application with ChatGPT Even if I knew little about these technologies I could assemble an application using ChatGPT as the primary resource But what s the caveat I mentioned earlier You must understand the code you are generating I can t stress this enough Don t blindly say how do I do this and dump the code into your application Generate the code study it and understand it You can also use ChatGPT for this as we ll see with the next prompt Prompt How does this work in the code you just generated You can dig deeper into what ChatGPT generates with this prompt ChatGPT keeps a conversational context by bundling your queries in a single conversation That means you can keep iterating on the results just like in a real conversation with a human This gives you a deeper explanation of how things work before you use them This is one example of how ChatGPT has made me a better developer I have gone down some rabbit holes for sure and gained a deeper understanding of the things I m working on I suggest doing this Especially if you are generating code you don t fully understand Prompt Rewrite this code with syntactic sugarThis is another one of my favorites If you don t know Syntactic sugar is programming language syntax that is concise and sometimes easier to read and express It s not for everyone but I like it especially when it de clutters my code Let s take this example in C int nullableValue null int value if nullableValue HasValue value nullableValue Value else value In this code we re looking for values that may be null and if they are we ll assign them a value of If they have a value stored we ll pass that value Pretty straightforward right But one look at this code tells you there s a shorter way to do this So we ll ask ChatGPT And we get this which is much better int value nullableValue This is yet another way ChatGPT can teach you and help you be a better programmer Keep in mind this isn t bulletproof I have seen some code generated using this that didn t work as expected But it s pretty cool when it does SummaryChatGPT is cool and a lot of fun to play with However it can also be a useful tool to improve productivity as we ve shown It can teach you new ways to write code We didn t cover some of the other ways it helps such as generating documentation providing answers to support questions and more I ll share a follow up article to this so keep checking back It might sound like a dumb fad but it isn t From here forward developers need to learn this tool This is a significant turning point for software development and I can only see it improving Check out this great course if you d like to learn more about ChatGPT Questions comments Let me know 2023-03-17 17:10:32
海外TECH DEV Community We coded, together ✨ https://dev.to/devteam/we-coded-together-25bo We coded together About MeHey everyone My name is Brian I m a Developer Marketing Associate here at DEV Community and I m a nonbinary person More specifically I would call myself agender but nonbinary is the quickest way to get my point across I don t really care about engaging in acts of femininity or masculinity Retrospectively I ve only ever conformed to the masculine gender roles expected of me to garner praise from others not because I actually felt connected to those roles It took a while to realize that building my life around what others expect of me was just leading to anxiety and unhappiness I use they them pronouns because I want any conversation I have to start with others understanding that I don t identify with either binary gender This isn t to say that there isn t a healthy way to be masculine or be feminine I think there definitely is and it s something each person has to carve out for themselves I m secure in my agender identity knowing that I have no interest in taking pride in my masculinity or carving out that space for myself Using he him pronouns doesn t bother me or give me dysphoria rather I keep them available to use so people don t feel like they were wrong if they didn t use the right pronoun I want others to take me as I come and judge me on the basis of my character and my actions We re all people first and that s how I want others to interact with me not as a man or a woman but as a person Not everyone is going to be willing to share their reasons with you and they don t have to I m here to share my reasoning so that others who relate can feel empowered to step up and share their experiences I m grateful to have colleagues now and in the past who have supported me and who have wanted to get to know me and were willing to drop their baggage or expectations that came with their perceived view of my gender I m valued not only for the material or financial value I provide to the people around me but also for who I am I can only hope that everyone eventually gets the same opportunity While my main role on DEV Community and at Forem is not as a developer I m still on my freecodecamp org grind I interact with developers on a daily basis and I want to do everything I can to advocate for them It s important to make sure everyone s voices get heard not just for the sake of productivity or innovation but because everyone inherently deserves the same level of basic respect We all need to get involved if we want things to get better Collective activism is how we make change so let s work together to make room for everyone What is it going to take to make tech a more inclusive space for all Posts That Inspired MeI ve had a role in the last three SheCoded events and played a significant role in making WeCoded up to be what it is this year There s a lot I want to talk about I could probably write a book or two on all the topics there are to cover in this field Instead I want to highlight some folks on DEV that have already covered some of the things I wanted to say I hope these posts as well as my own inspire you to share your story or demonstrate your allyship this International Women s Day Things to Keep in Mind for IWD Nevertheless WE code things to do in IWD and everyday Silvia España Gil・Mar ・ min read shecoded theycoded Sometimes it s important to go over the fundamentals I didn t want to repeat advice in this post that folks have probably heard a hundred times by now but Silvia does a great job at hitting all of the essentials in order to be a good ally Being nonbinary in tech is kind of a weird place Ami Struggled but Nevertheless They Coded Ami Scott they them ・Mar ・ min read theycoded nonbinary mentalhealth autism This was a huge read for me so big thanks to memitaru for sharing I particularly relate with the feeling of not being one of the guys but not fitting in with the girls either My entire life I ve had this alien feeling of not belonging anywhere and it s something I m still working on to this day I ve found that community typically ends up being the panacea to this kind of feeling Having a large group of people beyond your close friends and family that you contribute to have the same goals as and celebrate wins with is so important to your overall mental health and sense of self Learning to be human through coding and tech I feel like an impostor in tech I m still here Ong Chin Hwee・Mar ・ min read shecoded theycoded One of my biggest pulls from this post is the sentiment of I still feel very much like an impostor in tech because I don t see enough of people like me in tech events and conferences This post highlights how important representation is to the motivation and inspiration of marginalized groups A lot of people are waiting for someone else to speak up or make a mistake so they feel comfortable doing so as well It takes a lot of courage to be the one to say it s okay to be imperfect and vulnerable Trans non binary inclusive design Navigating the internet as a non binary designer Sarah・Jul ・ min read theycoded design inclusion This is sort of an honorable mention for me but fossheim shares so many great resources that it would be a shame not to highlight it here Not only does the article share tons of resources on what being nonbinary is it also talks about workplace etiquette and how to be inclusive when designing websites for trans nonbinary and gender non conforming people A must read for any web designer Further ReadingFor those who are curious but don t know where to go next I have some resources for you that can set you on the right path If you d like to learn more specifically about women s legal issues you can visit the website for the National Women s Law Center which has resources on abortion child care the wage gap health care discrepancies and more Reproductive rights are at risk in the United States Access to safe and legal abortion and birth control methods are no longer guaranteed nationwide These resources are important now more than ever If you have the passion and or the additional funds look into how you can help the Center for Reproductive Rights One of my favorite libraries for LGBTQ topics is the Resources page for the Human Rights Campaign The HRC covers topics like being an ally coming out health equity parenting sexual health and more Not only does it cover advice for LGBTQ people it also provides a basic understanding of gender theory for those who are unacquainted If you want to know more about what being gender non conforming or two spirit means or what the difference between sex and gender is this is a great resource Those links above are the hors d oeuvres If you really want to tackle the heavy reading I salute you I highly recommend reading the Sixty seventh session of the Commission on the Status of Women CSW The primary theme “Innovation and technological change and education in the digital age for achieving gender equality and the empowerment of all women and girls should be directly relevant and somewhat actionable to those who are developers or support developers as a career If you d like a more general overview of the scale of global gender inequity we re dealing with and the consequences it has on people worldwide check out the United Nations Gender Snapshot report If you ve made it to the bottom of this post thank you If you clicked on any of the links on this post you re the best Please take some time to reflect on your experiences and how you can make a difference to the people around you Let me know what you come up with The DEV Team and I will be in the comments below to moderate any discussion If you have a question about any of the above that you d like to ask privately I m open to direct messages on Discord quoss 2023-03-17 17:06:22
Apple AppleInsider - Frontpage News Get Apple's Mac Studio for just $1,845, plus $30 off AppleCare https://appleinsider.com/articles/23/03/17/get-apples-mac-studio-for-just-1845-plus-30-off-applecare?utm_medium=rss Get Apple x s Mac Studio for just plus off AppleCareApple s robust Mac Studio is now off with exclusive promo code savings Plus add AppleCare for just Save on the Mac Studio Shoppers looking for a top Mac Studio deal can pick up the standard model for with promo code APINSIDER at Apple Authorized Reseller Adorama To enter the coupon simply head over to Adorama add the system to your cart and enter code APINSIDER during Step of checkout detailed activation instructions can be found on this help page Read more 2023-03-17 17:56:26
Apple AppleInsider - Frontpage News BougeRV Yuma 200W CIGS solar panel review: lightweight, rollable, durable https://appleinsider.com/articles/23/03/17/bougerv-yuma-200w-cigs-solar-panel-review-lightweight-rollable-durable?utm_medium=rss BougeRV Yuma W CIGS solar panel review lightweight rollable durableThe BougeRV Yuma W CIGS solar panel name might be a mouthful but it is quite a versatile solar panel that can be used across a variety of use cases A flexible rollable solar panelWe re used to seeing solar panels come in rigid square mounts that are big and heavy Instead they tend to fold into small suitcase sized carrying cases or are much larger and intended for permanent mounting Read more 2023-03-17 17:45:18
Apple AppleInsider - Frontpage News Don't miss the hazmat bunnies' St. Patrick's Day adventure on Apple TV+ https://appleinsider.com/articles/23/03/17/dont-miss-the-hazmat-bunnies-st-patricks-day-adventure-on-apple-tv?utm_medium=rss Don x t miss the hazmat bunnies x St Patrick x s Day adventure on Apple TV The hazmat bunnies from Luck appear in a new short film that Apple has produced in honor of St Patrick s Day Bad Luck Spot From Skydance Animation Luck is an Apple TV film starring Eva Noblezada Simon Pegg Whoopi Goldberg and Jane Fonda It s about an unlucky girl named Sam who goes on a quest that could change her luck forever Read more 2023-03-17 17:17:24
海外TECH Engadget ‘Layers of Fear’ gameplay footage takes you on a tour of a gorgeous, creepy lighthouse https://www.engadget.com/layers-of-fear-gameplay-footage-takes-you-on-a-tour-of-a-gorgeous-creepy-lighthouse-172058956.html?src=rss Layers of Fear gameplay footage takes you on a tour of a gorgeous creepy lighthouseBloober Team has provided an in depth look at its reimagined Layers of Fear collection It comprises the original Layers of Fear Layers of Fear all the expansions for both and a fresh chapter that promises to give fans quot a new perspective quot on the first game s story All the series events will be connected with the help of a new character called The Writer who is the focus of the minute gameplay video The footage shows The Writer exploring a gloomy lighthouse It doesn t take too long before spooky things start to happen Your lantern is an important defensive tool against things that go bump in the night You ll also need it to solve puzzles and reveal secrets Bloober Team has reworked the Layers of Fear games in Unreal Engine Based on this evidence it seems the game has atmospheric visuals that are as pretty as they are eerie The studio used tools such as the Lumen system ray tracing HDR and volumetric lighting in an attempt to make the game look as lifelike as possible You ll be able to explore Layers of Fear and take in all its creepy visuals when it hits PC PlayStation and Xbox Series X S in June Meanwhile Bloober Team is also working on a Silent Hill remake This article originally appeared on Engadget at 2023-03-17 17:20:58
海外TECH Engadget Eventide Misha review: A playful sequencer that says to hell with tradition https://www.engadget.com/eventide-misha-review-a-playful-sequencer-that-says-to-hell-with-tradition-170058588.html?src=rss Eventide Misha review A playful sequencer that says to hell with traditionStandalone sequencers are something of a luxury in the modern music making landscape These days even the cheapest synths and samplers have at least rudimentary sequencing capabilities And while many MIDI controllers have on board sequencers they re usually meant to back up live performance rather than replace it Of course there are a few exceptions to this rule Arturia s BeatStep Pro remains incredibly popular even eight years after it was introduced but you have to start looking into the complex and often intimidating world of Eurorack and modular synths to regularly come across devices whose sole purpose is playing back strings of notes for you Eventide best known for its high end effects units like the H and TimeFactor is not an obvious candidate to delve into the world of Eurorack But that s exactly what it decided to do with Misha its first sequencer Now nobody would have blamed the company for playing it safe with its first foray into the space Instead it decided to chuck the usual conventions out the window and make something unique that is equal parts fun and confounding especially if you re deeply entrenched in traditional music theory and keyboard based composition I am not an adept pianist Nor do I have a particularly deep knowledge of Western music theory And even still I initially struggled to wrap my head around Misha That s because the buttons on its face don t play specific notes Instead they play intervals related to the last note played within a scale Terrence O Brien EngadgetThe easiest way to explain this is through an example Let s say we ve set the Misha to play a C Major scale Below the screen which shows you the key and scale are nine colored buttons labeled through If you press you get a C right off the bat because that is the root note and it is zero intervals away from the start of the scale If you press the instead of getting a C you ll get a D the next note in the scale So far so good right But if you press the again you won t get a second D and instead you ll get an E one interval higher in the scale To get a second D note you d have to press And if you wanted to go back to C you d have to press It s not complicated necessarily but it breaks a basic expectation that any musician would understandably have that if you do the same thing you should get the same note If I play the fifth fret on the low E of a guitar I expect to get an A every time If the notes continued to climb by five steps without moving my hands I would have a much harder time playing anything But this is the core concept of the Misha It s not built around absolute pitch and instead forces you to compose based purely on the relationships between notes in a scale If that idea sends you running for the hills then this probably isn t the sequencer for you If however you re like me and intrigued by Misha s unique approach hang around and let s dig a little deeper HardwareTerrence O Brien EngadgetBefore we go too far down the rabbit hole of scales modes and sequencing let s take a step back and look at the hardware While my unit came with a dedicated pod for housing the Misha it s ostensibly designed to live in a Eurorack setup At hp wide it s a relatively large module but it s quite shallow at just mm deep meaning it should fit in even the most portable skiffs That width is kind of necessary though The buttons two knobs microUSB port microSD slot and and ¼ jacks for MIDI audio and control voltage would feel impossibly cramped on anything smaller The layout feels just spacious enough to be viable as a performance tool without completely dominating a smaller Eurorack setup The nine interval buttons are well spaced the screen is large enough to deliver all the necessary information and the knobs are sturdy My only issue hardware wise is that the shift buttons have a hollow spring to them that feels a bit cheap and they make an audible popping sound The CV control voltage jacks are split across three tracks with three pairs of gate and CV outputs as well as two inputs each This gives you a decent amount of options for controlling multiple synth voices or modulating the Misha s sequencer There s also MIDI in and out jacks as well as stereo out and a clock in The microUSB port can also be connected to a computer keyboard for use with custom keymappings You re not gonna be wanting for connectivity options here Terrence O Brien EngadgetThe screen in the dead center gives you all the info you need about navigating Misha s interface though it can take a bit to figure out how it all works I highly recommend reading the manual It s not long and can save you lots of time and frustration Once you come to grips with how the Misha works it s almost deceptively simple In fact I frequently felt like I had to be missing something That for sure this module with all its buttons and knobs and inch screen was hiding features from me Definitely take time to customize those four user buttons though While the default functions of up and down one octave button one and two and up and down one chromatic step three and four are useful enough they can offer a lot of performance power when mapped to meet your specific needs Personally I like swapping in “move pitch for the chromatic steps and setting it to a fifth That adds a bit more spice than a simple octave but generally still works well musically with whatever else is going on One last thing worth noting is that Misha has a built in oscillator that you can turn on in the settings But beyond providing a simple sound source for auditioning melodies and generally getting a feel for the sequencer it s practically useless In fact it s not even mentioned in the manual ComposingTerrence O Brien EngadgetMisha ships with preloaded scales ranging from basic Melodic Minor to exotic Enigmatic to microtonal insanity note equal tempered And if somehow that s not enough for you there are user slots for loading your own scala files Between the various scales modes and keys the musical options baked into Misha are seemingly endless The most immediate way to start exploring them is to select a scale and then start pressing the interval buttons This is actually a pretty satisfying way of playing an instrument too I don t have a big rig to stick this in but I paired it with CreAudio s East Beast and West Pest as well as the Moog Subharmonicon and Elektron Digitone all to wonderful effect This is not the sort of process you go to when you want to translate a melody you hear in your head to the real world Perhaps someone could train themselves to think in intervals to use Misha that way but it would take a lot of work Instead this can create happy accidents You just have to pay especially close attention to what you play to make sure you can recreate anything that catches your ear Now yes there are ways to lock a controller to a specific scale similar to the Misha basically making it impossible to play out of tune But there s something about playing intervals instead of notes that feels both intuitive and surprising in a way a keyboard never could Crafting melodies becomes a rewarding exploration where I m basically forced to cede control rather than a frustrating attempt to use my limited theory knowledge to turn ideas into reality Terrence O Brien EngadgetOne of the few things I have to decide beforehand is how many octaves I want to play around in Setting the note range to two octaves for instance means once I climb beyond that cap the intervals will swing back around to two octaves below my root note It s probably best to try and avoid going all the way around though Jumping down two octaves can sound a tad harsh The octave limits also apply when using Misha as a sequencer so you can play a melody line spread out over four octaves worth of a scale before starting over The sequencer though is where things get a little dicey It s built around the idea of a “tone row a device used in serial composition where all twelve notes in the chromatic scale are played without repetition to create a motif The innovation here is that this concept of a tone row can be applied to any scale not just a twelve note Western chromatic one This method of composition definitely falls on the experimental end of the spectrum and with certain scales it can come off a little awkward This also means that the number of steps in a sequence is dependent on which scale you re using A single octave sequence in a minor pentatonic scale will only have five steps while two octaves of the quarter tone scale will have steps While I appreciate the novel approach part of me really wishes that the tone row was a mode you could turn on and off I d love to see Eventide add a more traditional sequencer through a firmware update where notes can be repeated There is also a chord mode that allows you to send three notes out over MIDI or divided between the three CV outs If you have a Eurorack setup with multiple synth voices this is a great way to create some complexity and variation especially if you have other utilities that can further modulate what the Misha puts out For example you can send the root note through a simple arpeggiator for the bass while using the other notes to play leads or pads Unfortunately there is no onboard way to sequence chord voicings You can manually change it while performing but it s kind of a pain Alternatively you could use another sequencer to send MIDI CCs to Misha and change chord voicings which seems like overkill Terrence O Brien EngadgetEasily the best way to use the Misha is as a performance tool paired with an external MIDI controller Here the white keys give you an even broader range of interval jumps nine in either direct as well as quick access to the root note while the black keys can repeat a note play a random scale note or move chromatically up and down one step at a time And of course you can still hit the four user programmable buttons on the front of the module or even map other notes on the keyboard to put more variables at your fingertips Wrap upTerrence O Brien EngadgetAt Misha is not cheap And that jumps to if you need a Eurorack pod and power adapter But it s also truly unique If the allure of interval based performance or tone row sequencing is what you re after well this is the only game in town at least that I m aware of I m sure that there are ways of getting a similar effect using software but when it comes to hardware this is it I do wish that Eventide made a few more concessions to traditional composition though I want to be able to repeat notes or program passages that are an arbitrary length rather than be limited to the number of notes in a scale Maybe those will be added in a future firmware update at which point it might be harder to come up with reasons not to buy one For now Misha is a pricey niche tool that s also undeniably playful and creative This article originally appeared on Engadget at 2023-03-17 17:00:58
海外科学 NYT > Science Why Do Japan’s Animal Cafes Have So Many Endangered Creatures? https://www.nytimes.com/2023/03/17/science/animal-cafes-japan-endangered.html Why Do Japan s Animal Cafes Have So Many Endangered Creatures Critically endangered species and ones banned from international trade are among the hundreds of types birds reptiles and mammals that researchers identified at animal cafes 2023-03-17 17:18:43
ニュース @日本経済新聞 電子版 強まる外国人の定住志向 3年以上が4割、留学→就職拡大 https://t.co/EErXbJl9he https://twitter.com/nikkei/statuses/1636785694843748353 留学 2023-03-17 17:44:54
ニュース @日本経済新聞 電子版 宴会、今春はリベンジ ワタミの23年シーズン予約4倍 https://t.co/AsmiJlwZLu https://twitter.com/nikkei/statuses/1636785692335542274 宴会 2023-03-17 17:44:53
ニュース BBC News - Home PC who hit ex-footballer Dalian Atkinson guilty of gross misconduct https://www.bbc.co.uk/news/uk-england-shropshire-64989418?at_medium=RSS&at_campaign=KARANGA excessive 2023-03-17 17:43:23
ニュース BBC News - Home Miley Cyrus achieves UK chart double https://www.bbc.co.uk/news/entertainment-arts-64993564?at_medium=RSS&at_campaign=KARANGA muller 2023-03-17 17:48:35
ニュース BBC News - Home Cheltenham Gold Cup 2023: Galopin Des Champs wins from Bravemansgame https://www.bbc.co.uk/sport/horse-racing/64992162?at_medium=RSS&at_campaign=KARANGA townend 2023-03-17 17:52:20
ニュース BBC News - Home Patrick Vieira: Crystal Palace sack manager after 12-game winless run https://www.bbc.co.uk/sport/football/64972447?at_medium=RSS&at_campaign=KARANGA Patrick Vieira Crystal Palace sack manager after game winless runCrystal Palace sack manager Patrick Vieira after a match winless run which has left the Eagles three points above the relegation zone 2023-03-17 17:34:05
ビジネス ダイヤモンド・オンライン - 新着記事 【制限時間10秒】「8、6、10、4、□、2、14」の□に入る数とは? - 小学生がたった1日で19×19までかんぺきに暗算できる本 https://diamond.jp/articles/-/319385 暗算 2023-03-18 02:53:00
ビジネス ダイヤモンド・オンライン - 新着記事 【運がいい人は知っている】「願いが叶わない」には理由がある。願いを叶える意外なコツと「一番大事なこと」 - 神さま仏さまがこっそり教えてくれたこと https://diamond.jp/articles/-/319362 神さま仏さま 2023-03-18 02:51:00
ビジネス ダイヤモンド・オンライン - 新着記事 なぜ頭のいい人の会議は短いのか? - ひとこと化 https://diamond.jp/articles/-/319660 記念 2023-03-18 02:49:00
ビジネス ダイヤモンド・オンライン - 新着記事 ロシアはなぜあんなに大きいのか? 大国ロシアの領土拡大の起源 - 東大生が教える戦争超全史 https://diamond.jp/articles/-/319505 領土 2023-03-18 02:47:00
ビジネス ダイヤモンド・オンライン - 新着記事 【出会い運】がほしい人のインテリア風水 - どんな運も、思いのまま! 李家幽竹の風水大全 https://diamond.jp/articles/-/319576 【出会い運】がほしい人のインテリア風水どんな運も、思いのまま李家幽竹の風水大全「どんな人でも運がよくなれる」、それが風水の持つ力です。 2023-03-18 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 健康で長生きする人のたった1つの共通点とは? - 長寿脳──120歳まで健康に生きる方法 https://diamond.jp/articles/-/319711 健康で長生きする人のたったつの共通点とは長寿脳ー歳まで健康に生きる方法【最新の認知症治療を実践する脳のカリスマが年超の長寿研究から導いた幸せな生き方】年代には大ベストセラー『歳までボケないの方法脳とこころのアンチエイジング』で歳ブームを巻き起こした医学博士・白澤卓二医師渾身の自信作『長寿脳ー歳まで健康に生きる方法』が完成。 2023-03-18 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 【朗読会】僕は勉強をしたかったのです - 勉強が面白くなる瞬間 https://diamond.jp/articles/-/319502 【朗読会】僕は勉強をしたかったのです勉強が面白くなる瞬間韓国で万部の超ロングセラーが発売から年、いよいよ日本に上陸。 2023-03-18 02:33:00
ビジネス ダイヤモンド・オンライン - 新着記事 【科学雑誌「ネイチャー」編集者が教える】大量の論文を「素早く読む」ために必要な1つのコツとは? - 超圧縮 地球生物全史 https://diamond.jp/articles/-/319700 「地球の誕生」から「サピエンスの絶滅、生命の絶滅」まで全歴史を一冊に凝縮した『超圧縮地球生物全史』は、その奇跡の物語を描き出す。 2023-03-18 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 「バンカラ大学」は消滅した? 親世代と子世代で違う最新大学事情とは? - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/319651 2023-03-18 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 【一粒万倍日】より超開運! 運がいい人、お金持ちの人が春彼岸にしている3つのこと - 旬のカレンダー https://diamond.jp/articles/-/319467 【一粒万倍日】より超開運運がいい人、お金持ちの人が春彼岸にしているつのこと旬のカレンダー「今日、何する」「どこ行く」「何食べる」と思ったとき、開くと必ず答えが見つかる書籍、『旬のカレンダー』。 2023-03-18 02:23:00
ビジネス ダイヤモンド・オンライン - 新着記事 老けこんだ顔も若返る? 整体プロが教える「たるみ解消法」 - すごい自力整体 https://diamond.jp/articles/-/319709 『すごい自力整体』の著者・矢上真理恵さんは、「不調のほとんどは自力整体で解消できる」と語る。 2023-03-18 02:20:00
GCP Cloud Blog What’s new with Google Cloud https://cloud.google.com/blog/topics/inside-google-cloud/whats-new-google-cloud/ What s new with Google CloudWant to know the latest from Google Cloud Find it here in one handy location Check back regularly for our newest updates announcements resources events learning opportunities and more  Tip  Not sure where to find what you re looking for on the Google Cloud blog Start here  Google Cloud blog Full list of topics links and resources Week of March A new era for AI and Google Workspace  Google Workspace is using AI to become even more helpful starting with new capabilities in Docs and Gmail to write and refine content Learn more Building the most open and innovative AI ecosystem  In addition to the news this week on AI products Google Cloud has also announced new partnerships programs and resources This includes bringing bringing the best of Google s infrastructure AI products and foundation models to partners at every layer of the AI stack chipmakers companies building foundation models and AI platforms technology partners enabling companies to develop and deploy machine learning ML models app builders solving customer use cases with generative AI and global services and consulting firms that help enterprise customers implement all of this technology at scale Learn more From Microbrows to Microservices  Ulta Beauty is building their digital store of the future but to maintain control over their new modernized application they turned to Anthos and GKE Google Cloud s managed container services to provide an eCommerce experience as beautiful as their guests Read our blog to see how a newly minted Cloud Architect learnt Kubernetes and Google Cloud to provide the best possible architecture for his developers Learn more Now generally available understand and trust your data with Dataplex data lineage a fully managed Dataplex capability that helps you understand how data is sourced and transformed within the organization Dataplex data lineage automatically tracks data movement across BigQuery BigLake Cloud Data Fusion Preview and Cloud Composer Preview eliminating operational hassles around manual curation of lineage metadata Learn more here Rapidly expand the reach of Spanner databases with read only replicas and zero downtime moves Configurable read only replicas let you add read only replicas to any Spanner instance to deliver low latency reads to clients in any geography Alongside Spanner s zero downtime instance move service you have the freedom to move your production Spanner instances from any configuration to another on the fly with zero downtime whether it s regional multi regional or a custom configuration with configurable read only replicas Learn more here Week of March Automatically blocking project SSH keys in Dataflow is now GA This service option allows Dataflow users to prevent their Dataflow worker VMs from accepting SSH keys that are stored in project metadata and results in improved security Getting started is easy enable the block project ssh keys service option while submitting your Dataflow job Celebrate International Women s Day Learn about the leaders driving impact at Google Cloud and creating pathways for other women in their industries Read more Google Cloud Deploy now supports Parallel Deployment to GKE and Cloud Run workloads This feature is in Preview  Read more Sumitovant doubles medical research output in one year using LookerSumitovant is a leading biopharma research company that has doubled their research output in one year alone By leveraging modern cloud data technologies Sumitovant supports their globally distributed workforce of scientists to develop next generation therapies using Google Cloud s Looker for trusted self service data research To learn more about Looker check out Week of Feb Mar Add geospatial intelligence to your Retail use cases by leveraging the CARTO platform on top of your data in BigQueryLocation data will add a new dimension to your Retail use cases like site selection geomarketing and logistics and supply chain optimization Read more about the solution and various customer implementations in the CARTO for Retail Reference Guide and see a demonstration in this blog Google Cloud Deploy support for deployment verification is now GA  Read more or Try the DemoWeek of Feb Feb Logs for Network Load Balancing and logs for Internal TCP UDP Load Balancingare now GA Logs are aggregated per connection and exported in near real time providing useful information such as tuples of the connection received bytes and sent bytes for troubleshooting and monitoring the pass through Google Cloud Load Balancers Further customers can include additional optional fields such as annotations for client side and server side GCE and GKE resources to obtain richer telemetry The newly published Anthos hybrid cloud architecture reference design guideprovides opinionated guidance to deploy Anthos in a hybrid environment to address some common challenges that you might encounter Check out the architecture reference design guidehere to accelerate your journey to hybrid cloud and containerization Week of Feb Feb Deploy PyTorch models on Vertex AI in a few clicks with prebuilt PyTorch serving containers which means less code no need to write Dockerfiles and faster time to production Confidential GKE Nodes on Compute Optimized CD VMs are now GA  Confidential GKE Nodes help to increase the security of your GKE clusters by leveraging hardware to ensure your data is encrypted in memory helping to defend against accidental data leakage malicious administrators and “curious neighbors  Getting started is easy as your existing GKE workloads can run confidentially with no code changes required Announcing Google s Data Cloud amp AI Summit March th Can your data work smarter How can you use AI to unlock new opportunities Register for Google Data Cloud amp AI Summit a digital event for data and IT leaders data professionals developers and more to explore the latest breakthroughs  Join us on Wednesday March to gain expert insights new solutions and strategies to reveal opportunities hiding in your company s data Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event Running SAP workloads on Google Cloud Upgrade to our newly released Agent for SAP to gain increased visibility into your infrastructure and application performance The new agent consolidates several of our existing agents for SAP workloads which means less time spent on installation and updates and more time for making data driven decisions In addition there is new optional functionality that powers exciting products like Workload Manager a way to automatically scan your SAP workloads against best practices Learn how to install or upgrade the agent here Leverege uses BigQuery as a key component of its data and analytics pipeline to deliver innovative IoT solutions at scale As part of the Built with BigQuery program this blog post goes into detail about Leverege IoT Stack that runs on Google Cloud to power business critical enterprise IoT solutions at scale  Download white paper Three Actions Enterprise IT Leaders Can Take to Improve Software Supply Chain Security to learn how and why high profile software supply chain attacks like SolarWinds and Logj happened the key lessons learned from these attacks as well as actions you can take today to prevent similar attacks from happening to your organization Week of Feb Feb Immersive Stream for XRleverages Google Cloud GPUs to host render and stream high quality photorealistic experiences to millions of mobile devices around the world and is now generally available Read more here Reliable and consistent data presents an invaluable opportunity for organizations to innovate make critical business decisions and create differentiated customer experiences But poor data quality can lead to inefficient processes and possible financial losses Today we announce new Dataplex features automatic data quality AutoDQ and data profiling available in public preview AutoDQ offers automated rule recommendations built in reporting and serveless execution to construct high quality data  Data profiling delivers richer insight into the data by identifying its common statistical characteristics Learn more Cloud Workstations now supports Customer Managed Encryption Keys CMEK which provides user encryption control over Cloud Workstation Persistent Disks Read more Google Cloud Deploy now supports Cloud Run targets in General Availability Read more Learn how to use NetApp Cloud Volumes Service as datastores for Google Cloud VMware Engine for expanding storage capacity Read moreWeek of Jan Feb Oden Technologies uses BigQuery to provide real time visibility efficiency recommendations and resiliency in the face of network disruptions in manufacturing systems As part of the Built with BigQuery program this blog post describes the use cases challenges solution and solution architecture in great detail Manage table and column level access permissions using attribute based policies in Dataplex Dataplex attribute store provides a unified place where you can create and organize a Data Class hierarchy to classify your distributed data and assign behaviors such as Table ACLs and Column ACLs to the classified data classes Dataplex will propagate IAM Roles to tables across multiple Google Cloud projects  according to the attribute s assigned to them and a single merged policy tag to columns according to the attribute s attached to them  Read more Lytics is a next generation composableCDP that enables companies to deploy a scalable CDP around their existing data warehouse lakes As part of the Built with BigQuery program for ISVs Lytics leverages Analytics Hub to launch secure data sharing and enrichment solution for media and advertisers This blog post goes over Lytics Conductor on Google Cloud and its architecture in great detail Now available in public preview Dataplex business glossary offers users a cloud native way to maintain and manage business terms and definitions for data governance establishing consistent business language improving trust in data and enabling self serve use of data Learn more here Security Command Center SCC Google Cloud s native security and risk management solution is now available via self service to protect individual projects from cyber attacks It s never been easier to secure your Google Cloud resources with SCC Read our blog to learn more To get started today go to Security Command Center in the Google Cloud console for your projects Global External HTTP S Load Balancer and Cloud CDN now support advanced traffic management using flexible pattern matching in public preview This allows you to use wildcards anywhere in your path matcher You can use this to customize origin routing for different types of traffic request and response behaviors and caching policies In addition you can now use results from your pattern matching to rewrite the path that is sent to the origin Run large pods on GKE Autopilot with the Balanced compute class When you need computing resources on the larger end of the spectrum we re excited that the Balanced compute class which supports Pod resource sizes up to vCPU and GiB is now GA Week of Jan Jan Starting with Anthos version Google supports each Anthos minor version for months after the initial release of the minor version or until the release of the third subsequent minor version whichever is longer We plan to have Anthos minor release three times a year around the months of April August and December in with a monthly patch release for example z in version x y z for supported minor versions For more information read here Anthos Policy Controller enables the enforcement of fully programmable policies for your clusters across the environments We are thrilled to announce the launch of our new built in Policy Controller Dashboard a powerful tool that makes it easy to manage and monitor the policy guardrails applied to your Fleet of clusters New policy bundles are available to help audit your cluster resources against kubernetes standards industry standards or Google recommended best practices  The easiest way to get started with Anthos Policy Controller is to just install Policy controller and try applying a policy bundle to audit your fleet of clusters against a standard such as CIS benchmark Dataproc is an important service in any data lake modernization effort Many customers begin their journey to the cloud by migrating their Hadoop workloads to Dataproc and continue to modernize their solutions by incorporating the full suite of Google Cloud s data offerings Check out this guide that demonstrates how you can optimize Dataproc job stability performance and cost effectiveness Eventarc adds support for new direct events from the following Google services in Preview API Gateway Apigee Registry BeyondCorp Certificate Manager Cloud Data Fusion Cloud Functions Cloud Memorystore for Memcached Database Migration Datastream Eventarc Workflows This brings the total pre integrated events offered in Eventarc to over events from Google services and third party SaaS vendors  mFit release adds support for JBoss and Apache workloads by including fit analysis and framework analytics for these workload types in the assessment report See the release notes for important bug fixes and enhancements Google Cloud Deploy Google Cloud Deploy now supports Skaffold version  Release notesCloud Workstations Labels can now be applied to Cloud Workstations resources  Release notes Cloud Build Cloud Build repositories nd gen lets you easily create and manage repository connections not only through Cloud Console but also through gcloud and the Cloud Build API Release notesWeek of Jan Jan Cloud CDN now supports private origin authentication for Amazon Simple Storage Service Amazon S buckets and compatible object stores in Preview This capability improves security by allowing only trusted connections to access the content on your private origins and preventing users from directly accessing it Week of Jan Jan Revionics partnered with Google Cloud to build a data driven pricing platform for speed scale and automation with BigQuery Looker and more As part of the Built with BigQuery program this blog post describes the use cases problems solved solution architecture and key outcomes of hosting Revionics product Platform Built for Change on Google Cloud Comprehensive guide for designing reliable infrastructure for your workloads in Google Cloud The guide combines industry leading reliability best practices with the knowledge and deep expertise of reliability engineers across Google Understand the platform level reliability capabilities of Google Cloud the building blocks of reliability in Google Cloud and how these building blocks affect the availability of your cloud resources Review guidelines for assessing the reliability requirements of your cloud workloads Compare architectural options for deploying distributed and redundant resources across Google Cloud locations and learn how to manage traffic and load for distributed deployments Read the full blog here GPU Pods on GKE Autopilot are now generally available Customers can now run ML training inference video encoding and all other workloads that need a GPU with the convenience of GKE Autopilot s fully managed Kubernetes environment Kubernetes v is now generally available on GKE GKE customers can now take advantage of the many new features in this exciting release This release continues Google Cloud s goal of making Kubernetes releases available to Google customers within days of the Kubernetes OSS release Event driven transfer for Cloud Storage Customers have told us they need asynchronous scalable service to replicate data between Cloud Storage buckets for a variety of use cases including aggregating data in a single bucket for data processing and analysis keeping buckets across projects regions continents in sync etc Google Cloud now offers Preview support for event driven transfer serverless real time replication capability to move data from AWS S to Cloud Storage and copy data between multiple Cloud Storage buckets Read the full blog here Pub Sub Lite now offers export subscriptions to Pub Sub This new subscription type writes Lite messages directly to Pub Sub no code development or Dataflow jobs needed Great for connecting disparate data pipelines and migration from Lite to Pub Sub See here for documentation 2023-03-17 19:00: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件)