ad ADATA SE800 Portable SSD 1 TB By www.pcstats.com Published On :: Tue, 10 Mar 2020 09:01:00 The ADATA SE800 is an NVMe based external SSD, which means it offers much better performance than earlier external storage. In our testing we saw speeds up to 1 GB/s, that, paired with 1 TB capacity on the SE800 make it an excellent choice if you want to move a lot of data around.... [PCSTATS] Full Article Hard Drives/SSD
ad Razer Kraken Ultimate Gaming Headset Review By www.pcstats.com Published On :: Wed, 11 Mar 2020 09:00:00 "About a year ago we took a look at Razer�s Kraken Tournament Edition headset, which we really did enjoy. It was however designed for professional gamers, hence the name �Tournament Edition�. For those looking for a more polished home solution Razer has the new Kraken Ultimate Edition. This sits as their flagship Kraken gaming headset and brings al... [PCSTATS] Full Article Audio / Sound
ad AMD Computing Roadmap 2020 by Mark Papermaster By www.pcstats.com Published On :: Wed, 11 Mar 2020 09:02:00 At AMD Financial Analyst Day 2020, Mark Papermaster unveiled the AMD computing roadmap for 2020 and beyond. Check it out!... [PCSTATS] Full Article Computer / SFF PCs
ad Creative SXFI AIR C Headphones Review By www.pcstats.com Published On :: Wed, 11 Mar 2020 18:40:45 " After re-creating our profile in the SXFI mobile application, we went on and watched several TV shows such as Star Trek: Picard, Better Call Saul and Altered Carbon. The EQ was left on neutral and we were quite surprised by the quality of the surround sound delivered by the product, same basically as the one found with the SXFI THEATER. SXFI AIR ... [PCSTATS] Full Article Audio / Sound
ad RIOTORO Aviator Classic Gaming Headset Review By www.pcstats.com Published On :: Wed, 11 Mar 2020 18:42:13 Riotoro just released their very first 7.1 virtual surround sound gaming headset called the Aviator Classic and today it�s up to us to put it to the test. ... [PCSTATS] Full Article Audio / Sound
ad Fnatic React Gaming Headset By www.pcstats.com Published On :: Wed, 11 Mar 2020 18:42:29 Fnatic React is the first gaming headset released by this world-famous esports brand. It's a simple analog headset with no extra features or gimmicks. It is laser-focused on what's important: sound and microphone quality, as well as wearing comfort.... [PCSTATS] Full Article Audio / Sound
ad Threadripper 3990X TRX40 VRM Torture Test By www.pcstats.com Published On :: Thu, 12 Mar 2020 09:00:00 Today we're going to perform some AMD TRX40 motherboard VRM thermal testing using the powerful 64-core Threadripper 3990X. To apply load we're using Blender with the system running at stock and overclocked to 3.8 GHz. The typical power draw for this system is around 450 watts, but once overclocked we are hitting as much as 850 watts. Toasty!... [PCSTATS] Full Article CPU / Processors
ad Should Feed Readers Count Unread Items? By www.rssboard.org Published On :: Wed, 02 Apr 2014 11:12:53 -0400 Brent Simmons, the developer of the NetNewsWire RSS reader, is questioning his decision to put an unread count next to each feed, reasoning that it encourages people to be too obsessive about reading every item:Instead of a dozen bookmarks, people had a hundred feeds. Or two hundred. Or two thousand.And there was a tyranny behind keeping track of unread items and showing an unread count. People reacted in different ways, but many people felt like they always had to go through everything.Including me. To this day.I did not know this was going to happen. That was not the idea: it was a side effect of reasonable (at the time) choices.I like seeing these counts on feeds where I need to read all items that are posted, but that's only a small percentage of the 100-120 feeds I follow. It would be nice to turn that off for others I read more casually.Feedly presents unread counts on each feed and folder of feeds. There's a Mark As Read button to clear a count, but when you click it, the confirmation dialog acts like it's an extremely consequential decision: "Are you sure you want to mark this entire source as read? This operation cannot be undone."I've posed a question on the RSS-Public mailing list: Do you think feed readers should count unread items? Full Article announcements
ad How to Read an RSS Feed with PHP Using SimplePie By www.rssboard.org Published On :: Mon, 26 Jun 2023 15:08:40 -0400 If you need to load an RSS feed with the PHP programming language, the open source library SimplePie greatly simplifies the process of pulling in items from a feed to present on a website, store in a database or do something else coooool with the data. There's a full installation guide for SimplePie but you can skip it with just three steps:Download SimplePie 1.5.Copy the file autoloader.php and the folder library to a folder that's accessible from your PHP code.Make note of this folder; you'll be using require_once() to load autoloader.php from that location.SimplePie has been designed to work the same regardless a feed's format. It supports RSS 2.0, RSS 1.0, Atom and the earlier versions of RSS. Additionally it can read feed elements from nine namespaces.Here's PHP code that loads feed items from the news site Techdirt and displays them in HTML:// load the SimplePie libraryrequire_once('/var/www/libraries/simplepie-1.5/autoloader.php');// load the feed$feed = new SimplePie();$feed->set_feed_url('https://www.techdirt.com/feed/');$feed->init();$feed->handle_content_type();// create the output$html_output = '';foreach ($feed->get_items() as $item) {ÃÂ ÃÂ $html_output .= '<p><a href="' . $item->get_link() . '">' . $item->get_title() . '</a></p>';ÃÂ ÃÂ $html_output .= $item->get_description();ÃÂ ÃÂ $html_output .= '<p>By ' . $item->get_author(0)->get_name() . ', ' . $item->get_date();}// display the outputECHO <<<END$html_outputEND;The API documentation for SimplePie_Item lists the functions that can extract data from each feed item. The versatility of the library is demonstrated by get_authors(), which can retrieve an item's authorship information whether it was in the RSS author element, Dublin Core creator, iTunes author, or Atom author.SimplePie supports caching so that a feed isn't downloaded every time code is executed. The addition of these lines turns on caching, specifies the location of a cache folder and sets the time to use a cached version to four hours (14,400 seconds):$feed->set_cache_location('/var/www/cache/');$feed->set_cache_duration(14400);$feed->enable_cache();SimplePie was created by RSS Advisory Board member Ryan Parman, Geoffrey Sneddon and Ryan McCue. The project is currently maintained on GitHub by Malcom Blaney. Full Article announcements
ad Has the RSS Advisory Board Followed the Roadmap? By www.rssboard.org Published On :: Wed, 05 Jul 2023 14:52:11 -0400 There has been recent discussion about the roadmap that was added to the RSS 2.0 specification in August 2002 announcing that there would be no new additions to RSS, freezing its set of elements and attributes forever and ever amen. The roadmap stated, "We anticipate possible 2.0.2 or 2.0.3 versions, etc. only for the purpose of clarifying the specification, not for adding new features to the format."The RSS Advisory Board was formed 20 years ago to publish the specification and "make minor changes to the spec per the roadmap," as stated in the launch announcement on July 18, 2003.If you're wondering whether the board has followed the roadmap, this timeline of RSS elements answers that question. There are 44 elements in RSS. This table shows when each element was introduced, the group that added it, and the version in which it first appeared.There were 33 elements added to RSS by Netscape in 1999 and 11 by UserLand from 2000 to 2002. No elements have been added by the RSS Advisory Board.ElementDate AddedPublisherVersionchannel03/1999NetscapeRSS 0.90channel-description03/1999NetscapeRSS 0.90channel-link03/1999NetscapeRSS 0.90channel-title03/1999NetscapeRSS 0.90channel-image03/1999NetscapeRSS 0.90channel-image-link03/1999NetscapeRSS 0.90channel-image-title03/1999NetscapeRSS 0.90channel-image-url03/1999NetscapeRSS 0.90channel-textInput03/1999NetscapeRSS 0.90channel-textInput-description03/1999NetscapeRSS 0.90channel-textInput-link03/1999NetscapeRSS 0.90channel-textInput-name03/1999NetscapeRSS 0.90channel-textInput-title03/1999NetscapeRSS 0.90channel-item03/1999NetscapeRSS 0.90channel-item-link03/1999NetscapeRSS 0.90channel-item-title03/1999NetscapeRSS 0.90rss07/1999NetscapeRSS 0.91channel-copyright07/1999NetscapeRSS 0.91channel-docs07/1999NetscapeRSS 0.91channel-image-description07/1999NetscapeRSS 0.91channel-image-height07/1999NetscapeRSS 0.91channel-image-width07/1999NetscapeRSS 0.91channel-language07/1999NetscapeRSS 0.91channel-lastBuildDate07/1999NetscapeRSS 0.91channel-managingEditor07/1999NetscapeRSS 0.91channel-pubDate07/1999NetscapeRSS 0.91channel-rating07/1999NetscapeRSS 0.91channel-skipDays07/1999NetscapeRSS 0.91channel-skipDays-day07/1999NetscapeRSS 0.91channel-skipHours07/1999NetscapeRSS 0.91channel-skipHours-hour07/1999NetscapeRSS 0.91channel-webMaster07/1999NetscapeRSS 0.91channel-item-description07/1999NetscapeRSS 0.91channel-cloud12/2000UserLandRSS 0.92channel-item-category12/2000UserLandRSS 0.92channel-item-enclosure12/2000UserLandRSS 0.92channel-item-source12/2000UserLandRSS 0.92channel-category08/2002UserLandRSS 2.0channel-generator08/2002UserLandRSS 2.0channel-ttl08/2002UserLandRSS 2.0channel-item-author08/2002UserLandRSS 2.0channel-item-comments08/2002UserLandRSS 2.0channel-item-guid08/2002UserLandRSS 2.0channel-item-pubdate08/2002UserLandRSS 2.0A few judgment calls had to be made compiling this list. The image and textInput elements were originally placed under the top-level element of the feed, but that is counted as their introduction even though they later moved inside channel. The rss element wasn't in the first version of RSS created by Netscape. Instead the top-level element was rdf:RDF until it was changed by Netscape to rss four months later. Full Article announcements
ad Downloading 50,000 Podcast Feeds to Analyze Their RSS By www.rssboard.org Published On :: Fri, 14 Jul 2023 10:38:42 -0400 The software developer Niko Abeler has crawled 51,165 podcast feeds to study what RSS elements they contain. His comprehensive Podcast Feed Standard report looks at the usage of core RSS elements and namespace elements from Apple iTunes, Atom, Content, Podcast 2.0 and Simple Chapters. He writes:In the world of podcasting, there is a great deal of freedom when it comes to the format and content of a podcast. Creators are free to choose their own audio format and feed content, giving them the flexibility to create something truly unique. However, when it comes to distributing a podcast, certain standards must be followed in order to be added to an aggregator such as Apple Podcasts. Additionally, the podcasting community has come to agree upon certain conventions that can be used to add additional features to a podcast, such as chapters, enhanced audio, and more. These conventions allow for a more immersive and engaging listening experience for the audience.This website is dedicated to providing guidance and information on the conventions and standards used in podcasting.There's a lot of interesting data in the RSS 2.0 report, which finds that these are the six least popular elements in an RSS feed's channel: Element Usage docs 8.3% cloud 0.0% rating 0.0% skipDays 0.0% skipHours 0.0% textInput 0.0% Over 99 percent of feeds contain the optional channel element language and the optional item elements enclosure, guid, pubDate and title. Only 0.2% of feeds contain a source element in an item.The iTunes namespace report shows a lot of variation in support. The required element itunes:explicit is only present in 18 percent of feeds and four optional elements have less than 20 percent: itunes:new-feed-url, itunes:block, itunes:complete and itunes:title. One namespace in the report, Podcast 2.0, has been proposed by Podcastindex "to provide a solution for problems which previously have been solved by multiple competing standards" and is still under development.The report also analyzes the audio files enclosed in the podcast feeds to determine their format, bitrate, channel and loudness. The report finds that 95.6 percent use MP3 and 4.4 percent AAC/M4A. People who like an alternative open source format will be oggravated that its sliver of the pie graph is so small it can't be seen.If Abeler isn't tired of crunching numbers, one thing that would be useful for the RSS Advisory Board to learn is how many of the feeds contain more than one enclosure element within a single item. Full Article announcements
ad The RSS Advisory Board Just Turned 20 By www.rssboard.org Published On :: Tue, 18 Jul 2023 15:50:24 -0400 "Tomorrow we will run faster, stretch out our arms farther."Today is the 20th birthday of the RSS Advisory Board, the group that publishes the RSS specification. It was formed on July 18, 2003, when the copyright of the specification was transferred to Harvard University, which immediately released it under a Creative Commons license and deferred all matters related to RSS to the new board.At the time of the board's launch, here's how the founding members described its purpose:Is the advisory board a standards body? No. It will not create new formats and protocols. It will encourage and help developers who wish to use RSS 2.0. Since the format is extensible, there are many ways to add to it, while remaining compatible with the RSS 2.0 specification. We will help people who wish to do so.What does the advisory board actually do? We answer questions, write tech notes, advocate for RSS, make minor changes to the spec per the roadmap, help people use the technology, maintain a directory of compatible applications, accept contributions from community members, and otherwise do what we can to help people and organizations be successful with RSS.This remains the purpose 140 dog years later. In addition to maintaining the current RSS specification, we are the official publisher of Netscape's RSS 0.90 and RSS 0.91 specifications and Yahoo's Media RSS specification.We also offer an RSS Validator and RSS Best Practices Profile containing our recommendations for how to implement the format.There's a resurgence of interest in RSS today as people discover the exhilarating freedom of the open web. Some of this is due to dissatisfaction with deleterious changes at big social sites like Twitter and Reddit. Some is due to satisfaction with Mastodon, a decentralized social network owned by nobody with more than one million active users. As long as there are social media gatekeepers using engagement algorithms to decide what you can and can't see, there will be a need to get around them. When someone offers an RSS or Atom feed and you subscribe to it in a reader, you get their latest updates without manipulation.Here's to another 20 years of feeding readers, unlocking gates, helping developers adopt RSS and repeatedly getting asked the question, "Can an RSS item contain more than one enclosure?" Full Article announcements
ad How to Read an RSS Feed with Java Using XOM By www.rssboard.org Published On :: Tue, 01 Aug 2023 23:25:57 -0400 There are a lot of libraries for processing XML data with Java that can be used to read RSS feeds. One of the best is the open source library XOM created by the computer book author Elliotte Rusty Harold.As he wrote one of his 20 books about Java and XML, Harold got so frustrated with the available Java libraries for XML that he created his own. XOM, which stands for XML Object Model, was designed to be easy to learn while still being strict about XML, requiring documents that are well-formed and utilize namespaces in complete adherence to the specification. (At the RSS Advisory Board, talk of following a spec is our love language.)XOM was introduced in 2002 and is currently up to version 1.3.9, though all versions have remained compatible since 1.0. To use XOM, download the class library in one of the packages available on the XOM homepage. You can avoid needing any further configuration by choosing one of the options that includes third-party JAR files in the download. This allows XOM to use an included SAX parser under the hood to process XML.Here's Java code that loads items from The Guardian's RSS 2.0 feed containing articles by Ben Hammersley, displaying them as HTML output:// create an XML builder and load the feed using a URLBuilder bob = new Builder();Document doc = bob.build("https://www.theguardian.com/profile/benhammersley/rss");// load the root element and channelElement rss = doc.getRootElement();Element channel = rss.getFirstChildElement("channel");// load all items in the channelElements items = channel.getChildElements("item");for (Element item : items) { // load elements of the item String title = item.getFirstChildElement("title").getValue(); String author = item.getFirstChildElement("creator", "http://purl.org/dc/elements/1.1/").getValue(); String description = item.getFirstChildElement("description").getValue(); // display the output System.out.println(">h2>" + title + ">/h2>"); System.out.println(">p>>b>By " + author + ">/b>>/p>"); System.out.println(">p>" + description + ">/p>");All of the classes used in this code are in the top-level package nu.xom, which has comprehensive JavaDoc describing their use. Like all Java code this is a little long-winded, but Harold's class names do a good job of explaining what they do. A Builder uses its build() method with a URL as the argument to load a feed into a Document over the web. There are also other build methods to load a feed from a file, reader, input stream, or string.Elements can be retrieved by their names such as "title", "link" or "description". An element with only one child of a specific type can be retrieved using the getFirstChildElement() method with the name as the argument:Element linkElement = item.getFirstChildElement("link");An element containing multiple children of the same type uses getChildElements() instead:Elements enclosures = item.getChildElements("enclosure");if (enclosures.size() > 1) {ÃÂ ÃÂ System.out.println("I'm pretty sure an item should only include one enclosure");}If an element is in a namespace, there must be a second argument providing the namespace URI. Like many RSS feeds, the ones from The Guardian use a dc:creator element from Dublin Core to credit the item's author. That namespace has the URI "http://purl.org/dc/elements/1.1/".If the element specified in getFirstChildElement() or getChild Elements() is not present, those methods return null. You may need to check for this when adapting the code to load other RSS feeds.If the name Ben Hammersley sounds familiar, he coined the term "podcasting" in his February 2004 article for The Guardian about the new phenomenon of delivering audio files in RSS feeds. Full Article announcements
ad Education for Nomadic Families in Nigeria By www.yesmagazine.org Published On :: Fri, 29 Mar 2024 19:02:25 +0000 Displaced by climate change, Fulani children are getting access to education no one in their communities has had before. Full Article Environment Health & Happiness Social Justice Education Nigeria Nomadic Peoples Fulani
ad Radically Reimagining Our Future Through Climate Fiction By www.yesmagazine.org Published On :: Mon, 01 Apr 2024 13:00:00 +0000 When it comes to telling the story of climate change, we need both journalism and fiction to imagine a better world. Full Article Environment Climate climate solutions Climate Fiction cli fi
ad Mothering As a Radical Climate Solution By www.yesmagazine.org Published On :: Thu, 09 May 2024 21:12:08 +0000 Emily Raboteau’s latest book is a meditation on how we can more clearly see and care for all we hold dear. Full Article Women Environment Racial Justice Water Climate Crisis Parenting climate justice Motherhood care Emily Raboteau
ad A Cross-State Movement to Hold Railroads Accountable By www.yesmagazine.org Published On :: Mon, 08 Jul 2024 21:21:50 +0000 Facing the ongoing impacts of pollution and derailments, activists in East Palestine, Ohio, and Baltimore are teaming up to pursue justice for their communities. Full Article Environment Climate East Palestine derailment Norfolk Southern corporate accountability Maryland Railroad Pollution Progress 2025: Climate and Environment Progress 2025 Ohio
ad Does a Forest Have Rights? In Ecuador, It Does. By www.yesmagazine.org Published On :: Fri, 13 Sep 2024 14:00:00 +0000 Journalist Peter Yeung explains how Los Cedros has remained protected for years thanks to Ecuador’s constitution extending rights to nature. Full Article Environment Climate Progress 2025: Climate and Environment Progress 2025 Rights of Nature YES! Presents: Rising Up with Sonali Los Cedros
ad Inside Trump’s Madison Square Garden Rally By www.yesmagazine.org Published On :: Wed, 30 Oct 2024 21:56:31 +0000 Investigative journalist Arun Gupta offers an eyewitness account of the hate—and sense of belonging—on display at Donald Trump’s New York City rally. Full Article Democracy Madison Square Garden MAGA Donald Trump New York City 2024 Election YES! Presents: Rising Up with Sonali
ad What’s Next for Bangladesh’s Student-Led Revolution? By www.yesmagazine.org Published On :: Wed, 21 Aug 2024 21:25:27 +0000 A Bangladesh-born labor explores the South Asian nation’s prospects to transition to a stable democracy now that the dust has settled from Prime Minister Sheikh Hasina’s ouster. Full Article Democracy Social Justice Activism YES! Presents: Rising Up with Sonali Student Activism Bangladesh
ad The Rights of Nature Prevail Again in Ecuador By www.yesmagazine.org Published On :: Wed, 11 Sep 2024 14:00:00 +0000 The beguiling, mist-covered forest of Los Cedros provides a vision of a future where the rights of the natural world are actively and effectively protected. Full Article Environment Native rights Indigenous lands Pacha Mama Mother Nature Cloud Forest Progress 2025: Climate and Environment Rights of Nature Indigenous rights Ecuador Los Cedros Sixth Mass Extinction
ad Newly Naturalized and Ready to Vote By www.yesmagazine.org Published On :: Wed, 30 Oct 2024 14:00:00 +0000 New citizens—whose votes may prove pivotal in swing states—are considering myriad issues as they cast their first ballots in a presidential election. Full Article Democracy Social Justice Immigration Progress 2025: Voting Rights Progress 2025 Citizenship 2024 Election
ad Lessons in Climate Adaptation From Florida’s Hurricane Recovery By www.yesmagazine.org Published On :: Fri, 27 Oct 2023 15:00:00 +0000 When Hurricane Ian hit Florida in late September 2022, it took more than 100 lives, becoming the deadliest storm to hit the United States since Katrina in 2005. Hurricane Ian Full Article Environment Affordable housing Economy Capitalism Housing Florida YES! Presents: Rising Up with Sonali Disaster Capitalism Hurricane Ian
ad Meet the Mercaditas Fighting for Fairness in Mexico By www.yesmagazine.org Published On :: Mon, 15 Jul 2024 20:14:17 +0000 Street selling is a risky activity in Mexico City. But the mercaditas movement aims to empower women and nonbinary sellers to protect themselves from economic exploitation. Full Article Economy Cooperatives Women Mexico mercaditas
ad Cultivating Dragon Fruit’s Political Power in Ecuador By www.yesmagazine.org Published On :: Tue, 16 Jul 2024 21:01:50 +0000 Amid ongoing colonization, the Indigenous Shuar people are taking back control of their economic and political futures. Full Article Native rights Local economies Local power Sustainable food and farming Indigenous lands Democracy Economy Social Justice Shuar Indigenous representation dragon fruit pitahaya Progress 2025: Colonialism and Sovereignty Indigenous rights Ecuador sovereignty
ad Instead of Ending Taxes on Tips, Pay a Living Wage By www.yesmagazine.org Published On :: Thu, 15 Aug 2024 14:00:00 +0000 Taxes on tipped wages have now become a campaign issue. But economic equality advocates say ending sub-minumum wages would help workers more. Full Article Wealth and inequality Jobs Economy Tipped Wages Donald Trump Kamala Harris living wage YES! Presents: Rising Up with Sonali Wage Theft Election 2024 Wages Tipping
ad Druze Women Balance Sexual Health, Pleasure, and Tradition By www.yesmagazine.org Published On :: Fri, 12 Jul 2024 14:00:00 +0000 Sex education is often taboo in close-knit Druze communities, but a new generation is creating its own care networks. Full Article Health & Happiness Reproductive rights Education Gender justice Health care Women Body Politics LGBTQ+ Health sex education Druze
ad adrienne maree brown’s “Loving Corrections” to Build Collective Power By www.yesmagazine.org Published On :: Thu, 22 Aug 2024 14:00:00 +0000 Best-selling author adrienne maree brown’s new book offers tools to navigate the difficult conversations and dynamics of organizing and belonging. Full Article Books Health & Happiness Mental health Empathy Murmurations Culture Loving Corrections adrienne maree brown YES! Presents: Rising Up with Sonali
ad Raw Milk Institute | The voice of responsible leadership for the growing raw milk market. By rawmilkinstitute.net Published On :: 2011-12-12T21:23:03-08:00 I've contributed... won't you? Full Article
ad QUIZ: How fast is Mbappé? Quicker than Nitro from Gladiators? By www.bbc.co.uk Published On :: Thu, 07 Mar 2024 15:21:39 GMT In a Champions League match between his team, Paris Saint Germain, and Real Sociedad, the French forward managed to run 100m in 10.9 seconds. Full Article
ad What do YOU enjoy reading in your free time? By www.bbc.com Published On :: Tue, 05 Nov 2024 06:21:16 GMT Research by the National Literacy Trust (NLT) charity suggests that the number of children reading has gone down to around one in three. We want to know about your reading habits. Full Article
ad 'Today's class visitor is a.... GLADIATOR' By www.bbc.com Published On :: Tue, 12 Nov 2024 17:03:12 GMT For Children In Need, one Gladiator is making surprise visits to primary schools around the country. Full Article
ad So bad. I don't have any students to tutor now. By www.usingenglish.com Published On :: Tue, 01 Oct 2024 19:26:31 +0000 Full Article Editing & Writing Topics
ad Diary - I'm currently reading the book Fairy Tale By www.usingenglish.com Published On :: Wed, 02 Oct 2024 11:08:54 +0000 Full Article Editing & Writing Topics
ad Read the runes By www.usingenglish.com Published On :: Wed, 17 Nov 2021 14:30:25 +0000 If you read the runes, you understand what is likely to happen because of the current circumstances. Full Article
ad Wrap your head around By www.usingenglish.com Published On :: Mon, 15 Apr 2024 23:59:59 +0000 If you are trying to 'wrap your head around' something, you are trying to understand something that is very foreign to you. Examples: "I can't wrap my head around quantum physics—it's so complex!" "She finally wrapped her head around the new software update." "They couldn't wrap their heads around the sudden policy changes." "Once you wrap your head around it, chess becomes very enjoyable." "He's struggling to wrap his head around the idea of moving abroad." Full Article
ad The essentials of automation applied to distribution systems via PLCs, SCADA, IEDs, and RTUs By electrical-engineering-portal.com Published On :: Mon, 15 Mar 2021 06:37:31 +0000 Nowadays, it seems that everything we do tends to be somehow automated. The very same is happening in electrical distribution systems. The distribution system at the medium voltage (MV) or low voltage (LV) levels is designed using different structures such... Read more The post The essentials of automation applied to distribution systems via PLCs, SCADA, IEDs, and RTUs appeared first on EEP - Electrical Engineering Portal. Full Article Low Voltage Medium Voltage SCADA actuators communication networks data acquisition distribution systems ieds intelligent electronic devices master terminal unit modulation multiplexing plc remote terminal unit rtu scada telemetry
ad Three most common SCADA applications in MV/LV distribution systems you SHOULD know By electrical-engineering-portal.com Published On :: Mon, 08 May 2023 06:30:56 +0000 Electrical distribution systems comprise a large number of remote applications and locations, and it has traditionally been challenging to monitor and regulate these remote applications and sites. Utility companies have been installing remote terminal/telemetry units, often known as RTUs, at... Read more The post Three most common SCADA applications in MV/LV distribution systems you SHOULD know appeared first on EEP - Electrical Engineering Portal. Full Article Power Substation Premium Content SCADA Substation Automation commercial office current transformer distribution substation control distribution systems ethernet bus ieds loads plc power factor correction rtu scada scada applications shopping buildings shunt capacitors sub-switchboard substation unmanned substations voltage transformers
ad Parameters of generators, transformers, lines and cables for vars, voltage and loads control By electrical-engineering-portal.com Published On :: Mon, 31 Jan 2022 08:18:08 +0000 For a power system to operate efficiently and securely, the importance of the correct and coordinated provision and control of reactive power cannot be overemphasised. It is necessary to examine reactive power requirements under both steady-state and dynamic conditions. Although... Read more The post Parameters of generators, transformers, lines and cables for vars, voltage and loads control appeared first on EEP - Electrical Engineering Portal. Full Article Cables Transformers Transmission and Distribution cables capacitive charging current generators lagging power factor lines power factor power flow power system reactive compensation short-circuit ratio transformers transient reactance transmission lines transmission system var control voltage control
ad Minnesota regulators approve Xcel Energy’s new additions, retirements By www.power-eng.com Published On :: Wed, 09 Feb 2022 21:30:26 +0000 The Minnesota Public Utilities Commission approved Xcel Energy’s 2019 Integrated Resources Plan (IRP), which guides the utility’s direction over the next 15 years. Full Article Coal Energy Storage Gas Hydrogen News Nuclear Policy & Regulation Renewables Xcel Energy
ad How Duke Energy addresses attemperator issues By www.power-eng.com Published On :: Fri, 11 Feb 2022 12:00:00 +0000 When combined cycle plants are run at low loads, problems often arise with overspray from attemperators using traditional mechanical atomization. To address this issue, plants can upgrade to steam atomization attemperators. Full Article Gas Gas Turbines News O&M Plant Optimization Retrofits & Upgrades Duke
ad Some of the Best Educational iPad and Android Apps for Teachers By careertechtesting.blogspot.com Published On :: Thu, 25 Aug 2016 14:14:00 +0000 Educational Technology and Mobile Learning provides a list of some of the best iPad apps curated for learning and instructional purposes. The list is divided into 19 sections with each containing a list of apps for a specific need. The sections include apps that facilitates: presentation screencasting video creation file storage whiteboard PDF annotation audio recording note-taking blogging book creation comic apps digital storytelling apps apps for grading mindmapping apps portfolio apps apps for creating posters apps for creating timelines apps for creating word clouds speech-to-text apps Educational Technology and Mobile Learning also provides a list of 10 indispensable Android apps for teachers. The list is curated from the top trending apps in the education section of Google Play store. The listed apps are as follows: Book Creator Handouts Remind Google Keep ClassDojo Nearpod Socrative Teacher Edmodo Google Classroom Explain Everything Full Article Apps Education Instruction Mobile Learning Technology Technology Apps Training and Resources Web 2.0
ad IELTS Reading homework instructions and reflection By www.usingenglish.com Published On :: Sat, 08 Jun 2024 08:22:50 +0000 New Lesson Plans Entry: 'IELTS Reading homework instructions and reflection' has just been added to the Lesson Plans area of UsingEnglish.com. Full Article
ad Reading in English problems and solutions By www.usingenglish.com Published On :: Wed, 12 Jun 2024 13:25:24 +0000 New Articles Entry: 'Reading in English problems and solutions' has just been added to the Articles area of UsingEnglish.com. Full Article
ad Adverbs of frequency mastermind By www.usingenglish.com Published On :: Sun, 07 Jul 2024 04:43:30 +0000 New Lesson Plans Entry: 'Adverbs of frequency mastermind' has just been added to the Lesson Plans area of UsingEnglish.com. Full Article
ad Verbs and adverbs of frequency bluff By www.usingenglish.com Published On :: Tue, 13 Aug 2024 23:48:18 +0000 New Lesson Plans Entry: 'Verbs and adverbs of frequency bluff' has just been added to the Lesson Plans area of UsingEnglish.com. Full Article
ad Reading English with your child: problems and solutions By www.usingenglish.com Published On :: Wed, 04 Sep 2024 03:49:29 +0000 New Articles Entry: 'Reading English with your child: problems and solutions' has just been added to the Articles area of UsingEnglish.com. Full Article
ad Things to avoid in IELTS Academic Writing Task 1 giving reasons practice By www.usingenglish.com Published On :: Sat, 21 Sep 2024 22:42:41 +0000 New Lesson Plans Entry: 'Things to avoid in IELTS Academic Writing Task 1 giving reasons practice' has just been added to the Lesson Plans area of UsingEnglish.com. Full Article
ad A roadmap for engineers seeking mastery in the language of electrical schematics By electrical-engineering-portal.com Published On :: Wed, 03 Jan 2024 11:16:11 +0000 In the intricate landscape of electrical engineering, the ability to decipher and interpret schematic drawings is a skill that separates the adept from the novice. This technical article delves into the art of understanding schematics, unraveling the complexities through a... Read more The post A roadmap for engineers seeking mastery in the language of electrical schematics appeared first on EEP - Electrical Engineering Portal. Full Article High Voltage Power Substation Premium Content Protection auxiliary contacts auxiliary relays circuit breaker coil saving contacts early break and late break contact early make contact electrical schematics interlock circuits late make auxiliary contact limit switches magnetic contactors multi position switch normally closed contact normally open contact power contacts tripping and closing coils voltage transformer circuit
ad The loop electrical distribution system used to supply bulk loads (industrial plants and buildings) By electrical-engineering-portal.com Published On :: Mon, 23 Oct 2023 06:36:54 +0000 First, let’s say a word or two about the essentials of power distribution systems for our young electrical engineers. An electric distribution system, or distribution plant as it is sometimes called, is all of that part of an electric power... Read more The post The loop electrical distribution system used to supply bulk loads (industrial plants and buildings) appeared first on EEP - Electrical Engineering Portal. Full Article Power Substation Protection Transformers Transmission and Distribution distribution substations distribution transformers electrical distribution system fuses loads loop distribution system loop electrical distribution system loop primary feeder pilot-wire relaying primary feeders secondary circuits secondary substation sectionalizing breaker sectionalizing switches sub-transmission circuits supply bulk loads