-
Inside CFR Events (Video)
Add FeedA chance to go inside Council on Foreign Relations events. Watch world leaders and foreign policy experts discuss and debate the most pressing issues in international affairs.
-
English Teaching in Japan
Add FeedSharing ideas and experiences about English teaching in Japan. Live Learn Share
-
Reiki Free Meditations Ho'oponopono
Add FeedReiki is a gift from the Creator to humanity. Healing the body is only one of the many benefits that await all Reiki practitioners. This audio guided meditation deals with programs and memories causing low self-esteem and feelings of inadequacy. It will help you realise that everyone here on earth is equally worthy of love and respect. Simply listen to the audio and answer the questions the best you can. We will guide you through a powerful combined session of EFT and Ho'oponopono to help you erase the false memories and programs from your consciousness. This audio includes binaural technology. Please check with your health professional before listening. For best results use headphones.
-
A Crash Course in Miracles
Add FeedThe aim of A Course in Miracles is to remove what blocks our awareness of what we are in truth. In this lively, discussion-based pod, we describe the "Red Donut" method to simplify many Course concepts. It is a shortcut to seeing the blockage and help you understand Course practices for removing the barrier. It turns out, the barrier blocking us from happiness is stubborn but fragile as a cloud. It is a fun introduction for beginners and helpful for students with dusty copies of the book who choose to start again. Start with Episode 1 or any with Red donut in the title. Philip also posts "Quotes from A Course in Miracles," and live yoga classes on iTunes. He is a Master Baptiste Yoga Teacher and owns a studio in Rhode Island, Salt Pond Yoga. Projection makes perception...Perception is a mirror not a fact...Behold the great projection.If all is love, how could there be this world of non-love The Course calls "the Dream of Death?" If there is this world of non-love, how could there be an all-loving God? There is either no God or no world. Here we offer a bit more evidence from The Course (an idea known as non-dualism) that it could be the world that isn't real...
-
Hour of Power Video
Add FeedRobert Schuller’s Hour of Power is a one-hour international television program which emanates from the weekly worship services at the Crystal Cathedral in Garden Grove, California. During each program Drs. Robert H. Schuller share messages of positive theology and interview dynamic individuals whose life experiences exemplify 'possibility thinking.'
-
Options Education @ Your Fingertips
Add FeedISE, the world's largest equity options exchange, teaches you all about trading options. Learn everything from the basics to volatility to advanced strategies and more.
-
Inbound Marketing - HubSpot TV
Add FeedHubSpot TV is a weekly video podcast covering inbound marketing including social media, blogging, SEO, landing pages, lead generation and marketing analytics. Karen Rubin and Mike Volpe will share the lastest internet marketing news, tips and tricks. Watch live Friday at 4pm EST. www.HubSpot.tv
-
APCS Java
Add FeedOOP Java for the AP CompSci A Test Starting Code: import java.util.Scanner; /** * Simple Polyalphabetic Cryptography * * @Chris Thiel * @28 Feb 2009 */ public class VignereCipherStartingCode { private static final String alphabet="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; private static int nextChar(String k, int i){ i=i%k.length(); String letter=k.substring(i,i+1); return alphabet.indexOf(letter); } public static String encode (String m, String k){ String result=""; for (int i=0; i<m.length(); i++){ int offset=nextChar(k, i); String letter = m.substring(i,i+1); int newLetterIndex= alphabet.indexOf(letter)+offset; newLetterIndex=newLetterIndex % 26; result+=alphabet.substring( newLetterIndex, newLetterIndex+1); } return result; } public static String decode (String m, String k){ String result=""; return result; } public static void main(String[] args) { Scanner kb=new Scanner(System.in); System.out.print("Type a key: "); String key=kb.nextLine(); key=key.toUpperCase(); key=key.replace(" ","");//omit spaces System.out.print("Type a message: "); String message=kb.nextLine(); message=message.toUpperCase(); message=message.replace(" ",""); System.out.println("Using the key \""+key+"\" on \""+message+"\":"); String codedMessage=encode(message,key); System.out.println("Coded="+codedMessage); System.out.println("Decoded="+decode(codedMessage,key)); } } * 8 points: Complete the decode method so it can decipher the Vignere Cipher * 9 points: Adapt this so it can do a Progressive Polyalphabetic Cipher rather than a key * 10 points: Adapt the CarTalk Employee Applet's graphic user interface so that you can type a message in one text area, press a button and it shows the encoded text (using the Progressive Cipher), press another button and it shows the decoded text. * 11 points: Add a "key field" to the Applet, and use the Vignere Cipher, working in a similiar fashion as the 10 point version
-
Our Changing Planet
Add FeedOur Changing Planet is an informative public television series about climate and environmental change, and opportunities to preserve Earth's life-sustaining natural resources for future generations. See visible, life-altering changes taking place globally as Earth's climate warms, from animal extinctions, to vanishing glaciers, to melting polar ice sheets and permafrost, to rising seas that threaten coastal communities and low lying islands. Learn about environmental damage from the corrosive effects of acid rain; the hole in ozone layer that allows harmful ultraviolet radiation to reach Earth's surface; extreme weather events like hurricanes, heat waves, cold snaps, and droughts; the use of fossil fuels and the build-up of greenhouse gases in our atmosphere; alternative energy sources such as wind and solar power to reduce our dependence on coal and oil; and space-age technology that helps farmers grow crops in a more Earth-friendly way. What effect does a growing world population and expanding economy have on Earth's resources? What are the hidden environmental costs behind the everyday products we simply throw away? Will we exhaust Earth's freshwater resources? How do plant and animal species respond to human transformation of the land and rivers for housing, industry, transportation, farming, ranching, mining and forestry? All episodes are written and produced at UMAC, the Upper Midwest Aerospace Consortium at the University of North Dakota. Full episodes, complete with closed captioning and supporting links and information are available at www.umac.org/ocp. About one third of the 6,000 amphibian species known to exist on Earth are threatened with extinction. What is the message these sensitive creatures are dying to send about the health of our planet?