Display Shows:

My Language:

  • Promethean Planet

    Promethean Planet Activtips feature best practices for Activclassroom users looking to integrate Promethean technology into everyday classroom activities. The podcasts are specifically designed to demonstrate effective teaching strategies in various curriculum areas through the use of Promethean's award winning software and teaching tools.

  • The Kitchen Sink

    Everything we've done, all in one place.

  • Inbound Marketing - HubSpot TV

    HubSpot 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

    OOP 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

  • Options Education @ Your Fingertips

    ISE, 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.

  • Hour of Power Video

    Robert 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.'

  • Arrest

    Daily, the electronic media tells us what to think, and what to think about, and how to think about it. The very semantics of being are dictated by talking heads, the editorial POV of the publication, the filter of politicians and their lobbying bedfellow

  • A Crash Course in Miracles

    The 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...

  • English Teaching in Japan

    Sharing ideas and experiences about English teaching in Japan. Live Learn Share

  • Inside CFR Events (Video)

    A 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.

Loading...