background preloader

Janjim

Facebook Twitter

Adhika Setya

Tes, tes, halo?

The Always Up-to-Date Power User's Guide to Chrome. Your Daily dashboard. 5 Ways To Get Your Hands On Academic Papers Without Losing Your Mind (And Money) Open Source Matters: 6 Source Code Search Engines You Can Use For Programming Projects. The Open source movement is playing a remarkable role in pushing technology and making it available to all. The success of Linux is also an example how open source can translate into a successful business model. Open source is pretty much mainstream now and in the coming years, it could have a major footprint across cutting edge educational technology and aerospace (think DIY drones). Open source projects need all the help they can get.

If not with funding, then with volunteers contributing to open source programming and free tools they can brandish. Search engines tuned with algorithms to find source code for programming projects are among the tools for the kit bag. While reusing code is a much debated topic in higher circles, they could be of help to beginner programmers and those trying to work their way through a coding logjam by cross-referencing their code. Here are six: Ohloh Krugle SearchCode NerdyData Symbol Hound Merobase. Formula for Human Genius and Creativity. High IQ in high demand Intelligence, creativity and genius are generally regarded as highly valuable assets of the human mind.

As a strong positive correlation exists between IQ and the median earned income, most people would gladly boost their IQ, improve creativity or accept being called a genius. Exceptions to this rule are few and most revolve around a claim that intelligence may be an obstacle on the way towards universal happiness. Here are a few exemplary arguments against human intelligence listed by the detractors of genius: high intelligence reveals existential truths and as such is highly depressive high intelligence prevents atavistic enjoyment of relationships high intelligence is a source of envy and other bad feelings in others high intelligence leads to inhuman behaviors and most sophisticated forms of evil In this article, I will tacitly ignore the above claims and assume that you would gladly become more intelligent, creative or innovative.

What is intelligence? AirDroid | Your Android, on the Web. The Web framework for perfectionists with deadlines | Django. 7 Python Libraries you should know about. In my years of programming in Python and roaming around GitHub's Explore section, I've come across a few libraries that stood out to me as being particularly enjoyable to use. This blog post is an effort to further spread that knowledge. I specifically excluded awesome libs like requests, SQLAlchemy, Flask, fabric etc. because I think they're already pretty "main-stream". If you know what you're trying to do, it's almost guaranteed that you'll stumble over the aforementioned. This is a list of libraries that in my opinion should be better known, but aren't. 1. pyquery (with lxml) pip install pyquery For parsing HTML in Python, Beautiful Soup is oft recommended and it does a great job. Just how slow?

What immediately stands out is how fast lxml is. So either slow and easy to use or fast and hard to use, right? Wrong! Enter PyQuery Oh PyQuery you beautiful seductress: from pyquery import PyQuerypage = PyQuery(some_html) last_red_anchor = page('#container > a.red:last') Easy as pie. 2. dateutil. THE BIG MODS: List them, stalk them and cuddle them! Post all major mods here. - Skyrim Mods.

Original thread this from the Previous OP:My friend Winterhold Guard told me to post a new thread where it will be constantly updated, but i m not sure what Solitude Guard will say. NONETHELESS, HERE WE GO! Ulfric better give me a pay rise for this, perhaps promote me to legate. Damn dragonborn took all the prizes while i still stand here and guard that windhelm gate. For easy browsing, stalking and exposure to the big Skyrim mods in development.

They need time, but they also need support and recognition! ~if you know of a big mod that is not listed here, let me know. Fully finished(or finished but adding more bugfixes and expansions) / some version released / almost at first release / hot in-progress / just starting / hiatus/dead/no news New lands+ big extensions to the vanilla world of skyrim(I think they all include quests and some include many more things) Babylon (dead) Beyond FalskaarRELEASED! I Am the King! “I Need Practice Programming”: 49 Ideas for Game Clones to Code. So you know a little bit about programming (perhaps you've read the free book, "Invent Your Own Computer Games with Python", a free programming book for beginners whose author shamelessly plugs at every chance) but you want to get better at coding. You can't seem to find any open source projects that are at your level or easy for new people to contribute to.

You've gone through a few of the practice problems at Project Euler but you want to create something more substantial, or at least a cool thing you can show your friends. (Not that finding the 31337th prime number isn't cool.) Here's a list of game clone ideas for you to implement. Orisinal Games: The Orisinal website has a great collection of Flash games with very simple mechanics that can be copied.

I especially recommend Winter Bells, A Daily Cup of Tea, Bugs, and Hold the Rope! The Wikipedia entry for video game clones also lists some ideas. 1. Download Source: dodger.zip 2. 3. 4. 5. 6. 7. 8. 9. Tic Tac Toe. An Introduction to Artificial Intelligence What is Tic Tac Toe? Tic Tac Toe is simply an awesome game. (Although I do have to say that I really think its original name - noughts and crosses - is a whole lot cooler). It is simple and easy to play wherever you are. The success of this simple but yet intriguing game is quite staggering and therefore even some mathematicians had a peek at it.

There is some debate on where this game originated; theories are ranging from ancient Egypt to the Roman Empire. The Stats One could assume that there are 9! 131,184 (1st player)77,904 (2nd player)46,080 (tie) This might seem like a lot but for a Computer this is a joke. There are 138 terminal positions after assuming symmetries. 91 (player 1)44 (player 2)3 (tie) A little bit of Game Theory Mathematics has a really interesting branch called Game Theory. So how is this important for Tic Tac Toe? Tic Tac Toe is something called a zero-sum game. Perfect Play The famous Tic Tac Toe xkcd. (#832) The Setup Minimax #! Writing a game in Python with Pygame. Part I. Introduction Games are one of the most applicative areas of programming. To write even the simplest games, you have to get into graphics, math, physics and even AI.

It’s a great and fun way to practice programming. If you’re a fan of Python (and even if you aren’t) and are interested in games, Pygame is a great library for game programming, and you should definitely check it out. It runs on all major platforms, and provides simple tools to manage complex graphical worlds with movement and sounds. There are quite a lot of Pygame tutorials on the web, but most of them are basic.

This tutorial explicitly encourages you to tinker with the code. Preliminaries For reasons I’ve mentioned above, this tutorial is not for complete beginners. Here, I assume that you have the following knowledge: Python (you don’t have to be an advanced user, but not a complete beginner either)Basics of math and physics (vectors, rectangles, laws of movement, probability, etc.). Let’s get started The code Pygame’s docs. Divisor function. Divisor function σ 0 ( n ) up to n = 250 Sigma function σ 1 ( n ) up to n = 250 Sum of the squares of divisors, σ 2 ( n ), up to n = 250 Sum of cubes of divisors, σ 3 ( n ) up to n = 250 In mathematics , and specifically in number theory , a divisor function is an arithmetic function related to the divisors of an integer .

When referred to as the divisor function, it counts the number of divisors of an integer . It appears in a number of remarkable identities, including relationships on the Riemann zeta function and the Eisenstein series of modular forms . Divisor functions were studied by Ramanujan , who gave a number of important congruences and identities . A related function is the divisor summatory function , which, as the name implies, is a sum over the divisor function.

Definition [ edit ] The sum of positive divisors function σ x ( n ), for a real or complex number x , is defined as the sum of the x th powers of the positive divisors of n . Where is shorthand for " d divides n ". Then. Two-Tiered A* Pathfinding. In my main article, A* Pathfinding for Beginners, I described A* in very general terms, and described how to create a single all-purpose pathfinding function. Creating only one pathfinding function, however, can be needlessly limiting. Consider the following RPG situation, and a swordsman who wants to pathfind around a nearby wall: Given this kind of map, you could place nodes in a variety of ways, and use a variety of densities. In this example, let's use a high-density node network, as is shown below. In this graphic, the white nodes are walkable. As you can see, using this tightly packed node network, we can pathfind not only around the nearby wall but also between the wall and the nearby barrel in the process.

Well, that is pretty cool in short-distance situations, but what do we do if we need to pathfind across the entire map? So let's look at an alternative. In this example, the nodes are in the center of the large isometric diamonds. Putting the Two Together Well, that's it. A* Pathfinding for Beginners. By Patrick Lester (Updated July 18, 2005) This article has been translated into Albanian, Chinese, Finnish, German, Greek, Korean, Polish, Portuguese, Romanian, Russian, Serbian, and Spanish. Other translations are welcome. See email address at the bottom of this article. The A* (pronounced A-star) algorithm can be complicated for beginners. While there are many articles on the web that explain A*, most are written for people who understand the basics already. This article is for the true beginner. This article does not try to be the definitive work on the subject.

Finally, this article is not program-specific. But we are getting ahead of ourselves. Introduction: The Search Area Let’s assume that we have someone who wants to get from point A to point B. [Figure 1] The first thing you should notice is that we have divided our search area into a square grid. These center points are called “nodes”. Starting the Search We begin the search by doing the following: [Figure 2] Path Scoring where 1. 2. Allegro - A game programming library - Science Of Persuasion. Multiplayer Game Programming for Teens with Python: Part 1. If you're new here, you may want to subscribe to my RSS feed or follow me on Twitter. Thanks for visiting! Learn how to make a multiplayer game with Python! This is a post by Tutorial Team Member Julian Meyer, a 13-year-old python developer. You can find him on Google+ and Twitter.

I’m sure that once in a while, you and your friends go online to play a multiplayer game. Have you ever wondered about the inside of that game and how everything works? In this tutorial, you will learn about multiplayer game programming by creating a sample game. For this tutorial, you will be using Python and the PyGame modules. Getting Started The first step is to make sure that you have PyGame installed. You can also download and install PyGame in these ways: With MacPorts using: sudo port install python2.7 py27-gameWith Fink using: sudo fink install python27 pygame-py27With Homebrew and pip using the command found here.

If you are running Windows, then you can find your installer here. The Rules of the Game Wow! The Portable Freeware Collection - Latest entries. Soal-soal dan Pembahasan tuk Persiapan SIMAK UI , UM UGM , dan SNMPTN. Silahkan bagi Kaskuser yang mau ikutan SIMAK UI, UM UGM, dan SNMPTN dll deh. atau yg punya kakak, adek, tetangga, pacar, yaaah apalah itu, pokoknya yg butuh :maho sedot barang-barang berharga berikut ini, paling lengkap dan menarik masuk sini Soal dan Pembahasan PPI, SIPENMARU, SKALU, UMPTN Soal dan Pembahasan SPMB Soal dan Pembahasan SNMPTN (IPA dan IPS) Software SNMPTN Passing Grade SNMPTN Profil Jurusan Dan Prospek Pekerjaannya Video Pembahasan Soal Ujian Nasional Spoiler for soal: Code: Soal STIS Soal USM STAN Spoiler for Passing Grade: Passing Grade ITB Passing Grade UI Passing Grade UGM Mau kuliah di Jurusan apa? Soal-soal Lengkap dan updatenya gan]

Life at KA. In our latest Khanversation, we catch up with KA Program Lead for Medical Partnerships, Dr. Rishi Desai. This pediatric infectious disease physician is also the man behind our partnership with the AAMC and leading the charge in working with experts and content creators to expand Khan Academy’s medical content both to help students prepare for the MCAT exam, and more broadly. He originally started as a content creator, and has made several hundred Khan Academy videos and interactive questions of his own, so he knows both sides of the content creation equation. His credentials, which include clinical instructor at Stanford, former CDC EIS (epidemic intelligence service) officer, and medical school at UCSF, vouch for his intelligence. But I have the honor of sitting next to Rishi at KA, and can vouch for his delightful sense of humor (aka biting sarcasm or extreme corniness), and constant positive outlook on everything.

So…first question: what’s up, doc? Where did you drive from? Yeah! 1. STEP:2.2.7. From S.T.E.P. Project Wiki STEP v2.2.7 ALL donations are appliedto hosting expenses. Changelog | Release Date: September 28th, 2013 - Visit the forums and provide feedback related to STEP Interim Release STEP 2.2.7 marks the beginning of our move to a new paradigm that will officially be unveiled as STEP 2.3.0. A Foreword Created by TheCompiler, STEP is a collaborative project with input from the modding community, technical volunteers, and project administrators.

The STEP team collects information from the modding community through extensive mod testing, detailed reviews, feedback, and suggestions exchanged on the STEP Community Forums. Minimum System for STEP:Core It is tentatively planned that STEP:Core (and Extended, by proxy) will continue to provide a performance-friendly version in tandem with a standard version. For this release, we recommend the following as a minimum hardware configuration for running STEP:Core (installing "Baseline" versions of "Core" mods only). 1.A. 1.B. 1.B.1. Skyrim GEMS. STEP:2.2.7. Profiling - How can you profile a Python script. Computer Science. Which Python memory profiler is recommended. What IDE to use for Python. Nerd Paradise : PyGame Basics Tutorial. Computer programming. Hidden features of Python. Pygame physics simulation (Tutorial) This series of tutorials demonstrates how to create a physical simulation using Python and Pygame.

The tutorials start with the very basics and build up to a final simulation of a classical physics problem: the trajectory of a cannonball. Something like this: If you're not interested in the mechanics of the program, you can skip ahead to tutorial 10 and download the PyParticles module and particle_tutorial_10.txt, which demonstrates how to use it from the bottom of the page. Requirements Python, which can be downloaded here.A basic knowledge of Python, if you are complete beginner you should probably read through some other tutorials first (this is a good one). It would also be advantageous if you had a grounding in basic mathematics, specifically trigonometry.

You won’t however, require any prior knowledge of Pygame; this tutorial will start from the very basics, demonstrating how to use Pygame to create a graphical display, update it, and make it to respond to user inputs. 10 Programming Languages You Should Learn Right Now. Most popular open-source projects hosted at GitHub. DuckDuckGo. University Consortium. Know Your Network: The Complete Guide. Materi Sekolah dll. Lifehacker Pack for Windows 2013: Our List of the Best Windows Apps. AmCharts | Interactive JavaScript / HTML5 charts. English Grammar Explanations - Comparative/superlative.

Contoh Format Kerangka Makalah. Classic Leadership Skills You Should Apply to Your Social Life. .:KIMIA. Band Match. The free encyclopedia. Hindu.

Kaskus - The Largest Indonesian Community

Programming. Linux. Download music, movies, games, software! The Pirate Bay - The galaxy's most resilient BitTorrent site. CompTIA A+ Certification Exam Guide, 8ed (220-801 & 220-802) The Pirate Bay - The galaxy's most resilient bittorrent site.