ANÁLISE DAS REDES BRASILEIRAS LIGADAS À CULTURA LIVRE Wiki com documentos adicionais // repasse, comente, doe // (Ctrl+Shift+R para videos atuais) O que é isso? Este trabalho consiste em apreender propriedades naturais de nossas estruturas sociais através de conhecimentos físicos e ferramentas computacionais. O propósito é científico puro e para usos socialmente engajados. Por exemplo, a compreensão de dinâmicas sociais e da propagação de informação pode usufruir de ferramentas e usos civis. Outra proposta de uso prático é a influência civil de políticas governamentais através de dados reais e observações quantitativas. Esta é uma coligação de partes interessadas, incluindo sociedade civil, governo e acadêmicos. O primeiro video mostra somente o uso de redes complexas. Esta empreitada compreende explorações tanto das topologias envolvidas nas dinâmicas sociais quanto dos conteúdos trocados e replicados. Metodologia Para preservar os participantes e as listas, os nomes não são revelados salvo respaldo explícito da lista. Objetivos Comentários
OpinionFinder 1.x | MPQA OpinionFinder 1.x Available versions OpinionFinder 1.x relies on many external software packages (e.g. SUNDANCE, SCOL, BoosTexter) which are neither built nor supported by our group. Since OpinionFinder was originally released in 2005, there are some compatibility issues with versions of various software and packages. Version 1.5 Version 1.4 OpinionFinder Sample Automatic Annotations Penn Treebank This research was supported in part by NSF Grants IIS-0208798 and IIS-0208985 References Yejin Choi, Claire Cardie, Ellen Riloff, and Siddharth Patwardhan (2005). Ellen Riloff and Janyce Wiebe (2003). Janyce Wiebe (2002). Janyce Wiebe and Ellen Riloff (2005). Janyce Wiebe, Theresa Wilson, and Claire Cardie (2005). Theresa Wilson, Janyce Wiebe and Paul Hoffmann (2005). Theresa Wilson, Paul Hoffmann, Swapna Somasundaran, Jason Kessler, JanyceWiebe, Yejin Choi, Claire Cardie, Ellen Riloff, Siddharth Patwardhan (2005).
Python Tools для Visual Studio, о новинках из первых рук / Блог компании Microsoft Эта статья написана Павлом Минаевым int19h — разработчиком из команды PTVS специально для публикации в нашем корпоративном блоге на Хабрахабре. Делитесь вашими впечатлениями в комментариях. Все отзывы будут переданы команде. Здравствуйте! Я – разработчик из команды Python Tools for Visual Studio. Что такое PTVS? Если вкратце, то Python Tools for Visual Studio (далее по тексту – PTVS), как, в общем-то, и следует из названия – бесплатное расширение для Visual Studio 2010 и выше, добавляющее в эту IDE полноценную поддержку Python. Наш проект, в некотором роде, уникален для Microsoft. И напоследок, поскольку с этим моментом чаще всего возникает путаница: PTVS – это не IronPython, и это не среда, ориентированная исключительно на IronPython. Далее я рассмотрю ряд наиболее интересных и уникальных возможностей PTVS более подробно. Работа с кодом Пожалуй, для любого разработчика, в первую очередь именно удобство работы с кодом является определяющем в выборе IDE. Отладка смешанного кода Et voilà!
OpenStack Open Source Cloud Computing Software LightBase Consultoria em Software Publico Getting started — tweepy v1.4 documentation Introduction If you are new to Tweepy, this is the place to begin. The goal of this tutorial is to get you set-up and rolling with Tweepy. Hello Tweepy import tweepy public_tweets = tweepy.api.public_timeline()for tweet in public_tweets: print tweet.text This example will download the public timeline tweets and print each one of their texts to the console. tweepy.api in the above code snippet is an unauthenticated instance of the tweepy API class. tweepy.api.update_status('will not work!') The Authentication Tutorial goes into more details about authentication. The API class provides access to the entire twitter RESTful API methods. Models When we invoke an API method most of the time returned back to us will be a Tweepy model class instance. # Get the User object for twitter...user = tweepy.api.get_user('twitter') Models container the data and some helper methods which we can then use: print user.screen_nameprint user.followers_countfor friend in user.friends(): print friend.screen_name
Python Cryptography Toolkit Version 2.3 The Python Cryptography Toolkit describes a package containing various cryptographic modules for the Python programming language. This documentation assumes you have some basic knowledge about the Python language, but not necessarily about cryptography. Design Goals The Python cryptography toolkit is intended to provide a reliable and stable base for writing Python programs that require cryptographic functions. A central goal has been to provide a simple, consistent interface for similar classes of algorithms. This is intended to make it easy to replace old algorithms with newer, more secure ones. Some modules are implemented in C for performance; others are written in Python for ease of modification. I have placed the code under no restrictions; you can redistribute the code freely or commercially, in its original form or with any modifications you make, subject to whatever local laws may apply in your jurisdiction. This document is very much a work in progress. Security Notes
Forth • Просмотр темы - Почему стек Автор: mOlegДата публикации: 2009.05.21 публикуется впервые Почему стек Введение Почему-то есть люди, считающие, что "обратная запись", используемая в Форте является причиной использования стеков, а не наоборот. Для того, чтобы разобраться почему удобно использовать стек, и какие преимущества от его использования (а так же недостатки) возникают необходимо немножечко разобраться с тем, как работают вычислительные машины, какие проблемы возникаюти при их реализации, какие другие варианты кроме стека существуют. Любой алгоритм можно выполнить, используя всего четыре регистра: 2 регистра данных: ra и rb , указатель на выполняемую команду ip, и флаговый регистр f. Регистры ra, rb, ip могут получать данные из памяти, а так же, скорее всего, пересылать данные между собой. О "четверках" Собственно, одна из методик преобразования кода основана на генерации, так называемых, «четверок»(tuples), которые, по сути, и отражают «базовую архитектуру» описанную выше. Проблемы базовой архитектуры