Skip to content

Instantly share code, notes, and snippets.

View bonus85's full-sized avatar

bonus85

  • Stavanger, Norway
View GitHub Profile
#!/usr/bin/env python
import gym
import random
import numpy as np
class Evaluator:
def __init__(self, env_name='CartPole-v0', max_iterations=200, render=False):
self.env = gym.make(env_name)
self.render = render
@bonus85
bonus85 / webserver.py
Created October 14, 2016 07:49
Webserver from scratch
"""
Inspired by:
https://ruslanspivak.com/lsbaws-part1/
"""
import socket
import time
HOST = ''
@bonus85
bonus85 / problem_1.py
Last active October 14, 2016 08:16
Project euler problem one solution
#!/usr/bin/env python
def sum_of_multiples_of_3_or_5(N):
s = 0
for i in range(N):
if i % 3 == 0 or i % 5 == 0: # Check if the number can be devided by 3 or 5
s += i # Add the number to the total sum
print "The sum of all numbers that are multiples of 3 and 5 below %d is:" %N
print s
if __name__ == '__main__':
@bonus85
bonus85 / keybase.md
Created September 11, 2019 08:09
Keybase Claim

Keybase proof

I hereby claim:

  • I am bonus85 on github.
  • I am sindret (https://keybase.io/sindret) on keybase.
  • I have a public key ASBb0hPvENR06vzQnTFcEBKeLtN38lh0FpmCH41hQvD9ywo

To claim this, I am signing this object: