Skip to content

Instantly share code, notes, and snippets.

View paweljw's full-sized avatar
🖖

Paweł J. Wal paweljw

🖖
View GitHub Profile
@paweljw
paweljw / KotlinExcercise.kt
Created June 12, 2020 15:36 — forked from mazabin/KotlinExcercise.kt
Task: Sequence C contains elements from A if they are present in B p times, and p is prime number
import kotlin.math.*
fun main() {
val a = arrayListOf(2, 3, 9, 2, 5, 1, 3, 7, 10)
val b = intArrayOf(2, 1, 3, 4, 3, 10, 6, 6, 1, 7, 10, 10, 10)
val c = ArrayList<Int>(a)
for(i in b){
if(isPrimeNumber(countNumber(i, b)))
//if we didn't care about original contents of A, at this point we could remove the values from A and we would get the expected C.
c.remove(i)

netsh interface portproxy add v4tov6 listenport=80 listenaddress=127.0.0.1 connectport=3000 connectaddress=[::1]

Keybase proof

I hereby claim:

  • I am paweljw on github.
  • I am paweljw (https://keybase.io/paweljw) on keybase.
  • I have a public key ASDW4Yoqu0WTv4CdBF6zdi1G8XSX3quwW2DlzPO_u3hrmAo

To claim this, I am signing this object:

@paweljw
paweljw / Procfile
Created February 25, 2018 17:14 — forked from czottmann/Procfile
Example of a Foreman/Capistrano/upstart setup
worker: QUEUE=* bundle exec rake environment resque:work
scheduler: bundle exec rake environment resque:scheduler
defmodule Roulette do
@min_bet 0.1
def minimum_bet, do: @min_bet
def print_score(game) do
IO.puts("R: #{game.rounds}\tL: #{game.last_number}\t$#{game.cash}\tB$#{game.bet}\tH: #{game.hits}\tM: #{game.misses}\tH/M: #{h_to_m(game)}")
end
def h_to_m(%{hits: hits, misses: misses} = game) do
class Color {
constructor (r, g, b) {
this.r = r
this.g = g
this.b = b
}
mix (otherColor) {
let red = Math.floor((this.r + otherColor.r) / 2)
let green = Math.floor((this.g + otherColor.g) / 2)
@paweljw
paweljw / IllyriadCalculations.user.js
Created February 14, 2016 13:37
Script for adding calculations to Illyriad game http://illyriad.co.uk/
// ==UserScript==
// @name Illyriad Calculations
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds useful calculations to Illyriad.
// @author You
// @match http://*.illyriad.co.uk/*
// @grant none
// ==/UserScript==
/* jshint -W097 */