Skip to main content

Home/ Puerto Rico Python Interest Group/ Group items tagged new

Rss Feed Group items tagged

Kevin Shockey

Mozilla, The New York Times and The Washington Post launch new media collaboration to c... - 0 views

  •  
    "MIAMI - June 19, 2014 - Mozilla, The New York Times and The Washington Post today announced that they are teaming up to build a new content and commenting platform that will allow audiences to more deeply engage with media coverage and help news organizations everywhere better manage user comments and contributions. The online community platform is supported by $3.89 million from the John S. and James L. Knight Foundation."
Kevin Shockey

Knight Foundation & INN Announce INNovation Fund | Investigative News Network - 0 views

  •  
    "The Investigative News Network"
Kevin Shockey

Turtle Graphics - 0 views

  •  
    "Turtle Graphics in Python Documentation on Turtle Graphics: This is the ultimate source for all information on this library. Comprehensive List of Colors List of Programs in Turtle Graphics # File: Hello.py # Description: This program writes out Hello World import turtle def main(): # put label on top of page turtle.title ('Hello World') # setup screen size turtle.setup (1000, 1000, 0, 0) # move turtle to origin turtle.penup() turtle.goto (0, 0) # set the color to navy turtle.color ('navy') # write the message turtle.write ('Hello World!', font = ('Times New Roman', 36, 'bold')) # hide the turtle turtle.hideturtle() # persist the drawing turtle.done() main() # File: Squares.py # Description: Draws squares of different sizes import turtle # draw a square of a given side # starting at uuper left corner (x, y) def drawSquare (ttl, x, y, side): ttl.penup() ttl.goto(x, y) ttl.setheading(0) # set the pen in the +ve x direction ttl.pendown() for iter in range (4): ttl.forward(side) ttl.right(90) ttl.penup() def main(): # put label on top of page turtle.title ('Squares') # setup screen size turtle.setup (800, 800, 0, 0) # create a turtle object ttl = turtle.Turtle() # assign a color to the turtle object ttl.color ('red') # draw multiple squares drawSquare (ttl, -50, -50, 50) drawSquare (ttl, 0, 0, 50) drawSquare (ttl, 50, 50, 50) drawSquare (ttl, -50, 50, 150) # fill a closed region ttl.fillcolor ('purple') ttl.begin_fill() drawSquare (ttl, 0, 0, 50) ttl.end_fill() # persist drawing turtle.done() main() # File: Figures.py # Description: Draws various types of geometric figures import turtle, math # draw a line from (x1, y1) to (x2, y2) def drawLine (ttl, x1, y1, x2, y2): ttl.penup() ttl.goto (x1, y1) ttl.pendown() ttl.goto (x2, y2) ttl.penup() def drawPolygon (ttl, x, y, num_side, radius): sideLen = 2 * radius * math.sin (math.pi / num_s
Kevin Shockey

DANGER!AWESOME: a high-tech, hands-on community makerspace by Nadeem Mazen - Kickstarter - 0 views

  •  
    "session and 60 minutes of laser cutting time to show off your new skills."
Kevin Shockey

PythonEventsCalendar - Python Wiki - 0 views

  •  
    "If you would like to get new events listed on these calendars, please write to events@python.org mentioning: the name of the event (including the user group name for user group events) type of event (conference, bar camp, sprint, user group meeting, etc.) focus on Python and approximate size (number of attendees) the location (venue address, including city and country) the dates/times (including the time zone) a URL with more details for the event"
Kevin Shockey

List of OSI Affiliates | Open Source Initiative - 0 views

  •  
    "Apereo Foundation 2013 Association Francophone des Utilisateurs de Logiciels Libres 2012 CENATIC 2012 Creative Commons 2012 Debian 2012 The Document Foundation 2012 Drupal Association 2012 Eclipse Foundation 2012 FreeBSD Foundation 2012 Friends of OpenDocument 2012 Joomla (Open Source Matters, Inc.) 2012 KDE eV 2012 Linux Foundation 2012 Linux Fund 2012 MariaDB Foundation 2013 Mozilla Foundation 2012 The New Zealand Open Source Society 2012 Open Source Software Institute 2012 Open Source Sweden 2012 Outercurve Foundation 2012 OW2 2012 Plone Foundation 2012 Python Software Foundation 2012 Sahana Software Foundation 2012 SOUJava 2012 Tiki Software Community Association 2012 Wikimedia Foundation 2012 Wikiotics 2012 "
Kevin Shockey

New US cybersecurity standards: Will they do enough? - CSMonitor.com - 0 views

  •  
    "cybersecurity "
1 - 20 of 87 Next › Last »
Showing 20 items per page