Skip to main content

Home/ Coders/ Group items matching "Python" 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
antino_lab

Why choose Python and Django for E-commerce website? - 0 views

  •  
    With practically everything moving online now and consumers making snap decisions about what to buy and what not- can you really afford to not have an e-commerce website for your business? Well, we don't think so! According to TechJury, 90% of online experiences begin with a search engine.
slyuser

Coding Dice Roller using Python with Tkinter or Streamlit written by SlyAutomation - 0 views

https://www.slyautomation.com/blog/dice-roller-with-python/

Development programming python

started by slyuser on 28 Mar 24 no follow-up yet
Fabien Cadet

book: Exercises in programming styles, by Chritina Videira Lopes - 10 views

  •  
    "In the 1940s, the French writer Raymond Queneau wrote a jewel of a book called Exercises in Style, featuring 99 renditions of the exact same story, each written in a different style. The story being fairly trivial and always the same, the book highlights form, rather than content; it illustrates how the decisions we make in telling a story affect the perception of that story. Inspired by Queneau, I decided to embark on the project of writing the exact same computational task in as many styles as I have come across over the years. Exercises in Programming Style (#EPSBook) features 33 renditions of a simple computational task -- counting the frequency of words in a given file. All renditions are written in Python. This book is a companion text for code that is publicly available in Github. Software developers with many years of experience may enjoy revisiting familiar programming styles in the broad context of this book and learning about styles that may not be part of their normal repertoire. This book can be used as a textbook for advanced programming courses in Computer Science and Software Engineering programs. Additional teaching materials, such as lecture slides and implementations of each style in other languages, are also available."
  •  
    indianescorts4 pakistaniescortsdubai escortsdubaiescorts dubaiescorts9 indianescorts90 nightescort uaegirls uaescorts69 uaegirls344 dubai-elite-model uaegirls69 escortsportfolio dubaiescorts50 indianescorts dubaiescorts pakistani escorts in dubai indianescorts dubai kissing escorts fleshandhide flatleather
Joel Bennett

The Julia Language - 8 views

  •  
    Julia is a high-level, high-performance dynamic programming language for technical computing. It supports distributed parallel execution, numerical accuracy, and an extensive mathematical function library. It uses an LLVM-based JIT compiler to achieve near C performance that far outstrips Python/Matlab/R ...
Christina Mulligan

The People's Programmable Robot - 0 views

  •  
    Open-source Poppy Project robot and Python framework is making robotic production cheap and accessible to all
Joel Bennett

ZeroC -- Home of Ice - 0 views

  •  
    The Internet Communications Engine (Ice) is a modern object-oriented data-contract middleware with support for C++, C#, Java, Python, Ruby, PHP, and Visual Basic ... it's kind of like WCF, except with a lot broader support.
Joel Bennett

Matplotlib / pylab - 1 views

  • functions in the pylab interface
    • Joel Bennett
       
      If you find this interesting, you really need to check out pylab!
  •  
    MATLAB-style plotting and graphing for Python. Also includes some of the "image" functions like imread and imshow, as well as support for the MATLAB figure, subplot, and charts like: bar, pie, plot, hist, polar, quiver, scatter, contour ... etc.
David Corking

The dumbing down of technology | Tony Lawrence | 2008 - 0 views

  •  
    I love this article. Lawrence is 60 and can perhaps afford to be sanguine, but I am glad he is warning the rest of us.
  •  
    Some quotable quotes here: "while we laugh at the guy who expected that his computer could be hooked up to his boom box to use the cd, he's actually just a bit ahead of us. Yes, ahead, not behind. In the future, he probably could get his computer to talk the boom box into transferring data from its cd." "When I was a teenager, I had a friend who made extra money testing and changing vacuum tubes in TV's and radios. Try earning money that way today- there is actually a very small market for that kind of thing, and there are still people who sell tubes and the like, but that market is pretty small. In the dumbed down computers of the future, there may still be a few antique machines kicking around here and there, but that isn't going to support very many of us." This is largely true and happening all the time. A programmer can use Python or Smalltalk without needing to know C (or Fortran or assembler.) A child can program in Morphic tiles (Etoys and Scratch)! We don't need to know the difference between a serial cable and a printer cable, or how to install a driver' it is all USB (or Bluetooth!) There are some gurus that program USB, but perhaps only a few hundred of them, and the rest of us just use it.
anonymous

PHP/Java Bridge - 1 views

  •  
    The PHP/Java Bridge is an implementation of a streaming, XML-based network protocol, which can be used to connect a native script engine, for example PHP, Scheme or Python, with a Java or ECMA 335 virtual machine. It is up to 50 times faster than local RPC via SOAP, requires less resources on the web-server side. It is faster and more reliable than direct communication via the Java Native Interface, and it requires no additional components to invoke Java procedures from PHP or PHP procedures from Java.
Joel Bennett

Apache Thrift - 2 views

  •  
    Thrift is a software framework for scalable cross-language services development. It combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml.
Joel Bennett

ClientExamples - Cassandra Wiki - 2 views

  •  
    Cassandra is a distributed object-oriented database (no ORM needed) originally created by Facebook and used by lots of high-traffic websites. They use Thrift and have code samples here in Java, C#, Python, and PHP ... hot stuff.
Fabien Cadet

Programming as if Performance Mattered, by James Hague [2004-04-04] - 3 views

  • I frequently see bare queries from programmers in discussion forums, especially from new programmers, who are worried about performance. These worries often stem from popular notions about what operations are "slow." Division. Square roots. Mispredicted branches. Cache unfriendly data structures.
  • Inevitably someone chimes in that making out-of-context assumptions, especially without profiling, is a bad idea. And they're right.
  • The golden rule of programming has always been that clarity and correctness matter much more than the utmost speed. Very few people will argue with that. And yet do we really believe it? If we did, then 99% of all programs would be written in something like Python. Or Erlang.
  • ...5 more annotations...
  • At the same time, such concerns and advice seem to remain constant despite rapid advances in hardware.
  • That tempting, enticing, puzzle-solving activity called "optimization," it hasn't gone away either.
  • Only now the process is on a different level. It isn't machine level twiddling and cycle counting, but it isn't simply mathematical analysis of algorithms either.
  • The big difference is that the code changes I made are substantially safer than running a program and having it silently hang the system. All array accesses are bounds-checked. There's no way to accidentally overwrite a data structure. There's no way to create a memory leak.
  • Really, this is what those cycle-counting programmers from 1985 dreamed of.
  •  
    « I frequently see bare queries from programmers in discussion forums, especially from new programmers, who are worried about performance. These worries often stem from popular notions about what operations are "slow." Division. Square roots. Mispredicted branches. Cache unfriendly data structures. »
yc c

gotAPI.com - Documentation search engine - 2 views

  •  
    gotAPI helps you find functions, classes, methods, properties, styles, tags, constants and more \n Search In\nActionScript 2.0, ActionScript 3.0, Adobe Flex 2, Adobe Flex 3.3, Apache Ant, Apache Commons, Apache RegExp, Apache Struts 1.1, Berkley DB XML, Bluetooth and OBEX, C++, CakePHP 1.2, Castor, CDC, CLDC, ColdFusion MX-7, ColdFusion MX-8, CSS, CSS, DbUnit 2.4.5, Dinkumware C/C++, DITA 1.1, DocBook, Dojo Toolkit 1.3, Drupal, Eclipse Platform 2.1, Erlang, Flickr API, FP, Google GWT, Google GWT+Gears, Groovy, Haskell, Hibernate, HTML, HTML, HttpUnit, J2EE 5.0, Java 1.5, Java 1.6, JavaScript, JavaScript, jQuery, JSON LIB, JSTL, JUnit, Log4J, MIDP, Mobile Media, MochiKit, MooTools, MySQL 4.1, OpenGL 2.1, Oracle 10g, Oracle 9i, Orb API 2.0, OSGi Platform 4.1, PBP, Perl 5.10, PHP, PostgreSQL 8.3, Prototype.js, Python 2.6.1, RMagick 1.15, RogueWave, Ruby Std Libraries, Ruby/Rails, Scala 2.7.3, Schema (XSD), Script.aculo.us 1.8, Selenium 0.8.2, Sicstus Prolog, Simple DirectMedia Layer, Spring Framework 2.0, Symphony 1.2, Twitter API, Web Services, XML DOM, XPath 2.0, XSL 2.0, Yahoo! UI\n
‹ Previous 21 - 40 of 79 Next › Last »
Showing 20 items per page