Skip to main content

Home/ Python Programming/ Group items matching "|" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Mario Antonio Herrero Machado

Acerca de Pybonacci « Pybonacci - 0 views

  •  
    Somos unos apasionados de Python que nos hemos decidido a rellenar el que pensamos que es un hueco importante en la blogosfera hispana: el uso de Python para aplicaciones científicas. Nuestra intención es escribir con regularidad sobre cómo podemos utilizar este lenguaje de programación fantástico que es Python para resolver problemas en ciencia e ingeniería, utilizando librerías como NumPy, SciPy, matplotlib, SymPy y muchas más. También traduciremos artículos escritos en otros idiomas que nos resulten interesantes, mostraremos pequeñas recetas y escribiremos reseñas sobre programas o bibliotecas que nos resulten interesantes.
Mario Antonio Herrero Machado

¡ Bienvenido a pilas ! - 0 views

  •  
    Pilas es un motor para hacer videojuegos de manera sencilla. Está dirigido a personas que comienzan a programar videojuegos y quieren lograr resultados interesantes y divertidos en poco tiempo.
Mario Antonio Herrero Machado

Pyzo - Python to the people - Pyzo - Python to the people - 0 views

  •  
    "Pyzo - Python to the people Pyzo is an interactive computing framework based on Python, an easy and powerful programming language. It's mission is to provide a computing environment aimed at doing science and building professional applications, that is easy to obtain, easy to use, and free."
luke jenning

Learn the basics of Python and start coding today! - 0 views

  •  
    The Python programming language is a high level programming language that is used in a wide spectrum of applications -- from web design and game programming to scientific research.
luke jenning

Code Garage is a project playground - 0 views

  •  
    Great resource for Python Programming newbies. Apply your programming skills to build fun things like a Bubble Sort, Numeral Converter, Happy Numbers, Bank Teller, Blackjack Game, 99 Bottles Of Beer and much more.!!
fanhaipeng

git 使用简易指南 - 0 views

  • 可以把 master 换成你想要推送的任何分支。
  • 如果你还没有克隆现有仓库,并欲将你的仓库连接到某个远程服务器
  • 以在你的工作目录中 获取(fetch) 并 合并(merge) 远端的改动。 要合并其他分支到你的当前分支(例如 master),执行:
    • fanhaipeng
       
      1.用远程的进度更新自己的项目 2.但是自己本地也更新了 3.如果双方改的地方不一样,自动合并 4,如果不幸,本地改的和远程改的地方一样 5.先git diff 看不同,vim手动打开文件,修改冲突,然后,git add
  • ...12 more annotations...
  • ,自动合并并非次次都能成功,并可能导致 冲突(conflicts)。 这时候就需要你修改这些文件来人肉合并这些 冲突(conflicts) 了。
  • 自动
  • 在合并改动之前,也可以使用如下命令查看:
  • 工作目录中的文件
  • 你也可以用该提交 ID 的少一些的前几位,只要它是唯一的。
  • git checkout -- <filename>
    • fanhaipeng
       
      和切换分支的命令,前段是一样的
  • HEAD 中的最新内容
  • 已添加到缓存区的改动,以及新文件,都不受影响。
  • 1.0.0 1b2e1d63ff
  • git fetch origin
    • fanhaipeng
       
      1.fetch:取。远程。
  • git reset --hard origin/master
    • fanhaipeng
       
      指向远程最新的?
  • gitk
liuyix

dottoxml - 0 views

  •  
    python code visualization
Jac Londe

JSON Developer's Guide for the Google Feed API - 0 views

  • Using Python The following code snippet shows how to make a request to the Google Feed API using Python. This sample assumes Python 2.4 or higher. You may need to download and install simplejson. import urllib2import simplejsonurl = ('https://ajax.googleapis.com/ajax/services/feed/find?' +       'v=1.0&q=Official%20Google%20Blog&userip=INSERT-USER-IP')request = urllib2.Request(url, None, {'Referer': /* Enter the URL of your site here */})response = urllib2.urlopen(request)# Process the JSON string.results = simplejson.load(response)# now have some fun with the results...
  •  
    JSON Developer's Guide for the Google Feed API - Google Feed API - Google Developers
Jac Londe

HTTP referer - Wikipedia - 0 views

  • is an HTTP header field that identifies the address of the webpage (i.e. the URI or IRI) that linked to the resource being requested. By checking the referer, the new webpage can see where the request originated.
  • In the most common situation this means that when a user clicks a hyperlink in a web browser, the browser sends a request to the server holding the destination webpage. The request includes the referer field, which indicates the last page the user was on (the one where they clicked the link). Referer logging is used to allow websites and web servers to identify where people are visiting them from, for promotional or statistical purposes.[1]
  • ^ Kyrnin, Jennifer (2012-04-10). "Referrer - What is a Referrer - How do HTTP Referrers Work?". About.com. Retrieved 2013-03-20.  Jump up ^ Hallam-Baker, Philip (2000-09-21). "Re: Is Al Gore The Father of the Internet?". alt.folklore.computers. Retrieved 2013-03-20.  Jump up ^ Fielding, Roy (1995-03-09). "Re: Referer: (sic)". ietf-http-wg-old. Retrieved 2013-03-20.  Jump up ^ "Hypertext Transfer Protocol -- HTTP/1.1 (RFC 2616 § 14.36)". IETF. June 1999. Retrieved 2013-03-20. "The Referer[sic] request-header field allows the client to specify […] the address (URI) of the resource from which the Request-URI was obtained […]"  ^ Jump up to: a b "Network.http.sendRefererHeader". MozillaZine. 2007-06-10. Retrieved 2013-03-20.  Jump up ^ "HTML DOM Document referrer Property". w3schools.com. Retrieved 2013-03-20.  Jump up ^ Gundersen, Bret (2011-10-19). "The Impact of Google Encrypted Search". Adobe Digital Marketing Blog. Retrieved 2013-03-20.  Jump up ^ "HTML Techniques for Web Content Accessibility Guidelines 1.0: The META element". W3C. 2000-11-06. Retrieved 2013-03-20.  Jump up ^ "Hypertext Transfer Protocol -- HTTP/1.1: Encoding Sensitive Information in URI's (RFC 2616 § 15.1.3)". IETF. June 1999. Retrieved 2013-03-20. "Clients SHOULD NOT include a Referer[sic] header field in a (non-secure) HTTP request if the referring page was transferred with a secure protocol"  Jump up ^ "4.12 Links — HTML Living Standard: 4.12.5.8 Link type "noreferrer"". WHATWG. 2013-03-20. Retrieved 2013-03-20.
Jac Londe

Pulover's Macro Creator - 0 views

  • Pulover’s Macro Creator is a Free Automation Tool and Script Generator. It is based on AutoHotkey language and provides users with multiple automation functions, as well as a built-in recorder. “Pulover’s Macro Creator is very handy as a means of automating various tasks without possessing  programming knowledge.” 
  • It’s more than a Macro Recorder! You can add not only keystrokes and mouse actions to your scripts but also manage windows, controls, files, strings, search images/pixels and even create If/Else Statements to control the flow of your macros! From simple repetitive tasks to complex automation projects, Pulover’s Macro Creator will save you hours of monotonous work. Everything with a friendly and intuitive interface.
1 - 20 of 482 Next › Last »
Showing 20 items per page