This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns rpg-kata-clj.core | |
(:require [clojure.set :refer [intersection]])) | |
(defrecord Entity [health level attack factions type]) | |
(defn new-character [] | |
(->Entity 1000 1 :melee #{} :character)) | |
(defn new-prop [health] | |
(->Entity health 1 :melee #{} :property)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns loco-playground.core | |
(:require [loco.core :refer :all] | |
[clojure.pprint :refer :all] | |
[loco.constraints :refer :all])) | |
;; http://bypacoman.blogspot.com.es/2013/08/desestructurando-el-puzzle-de-einstein.html | |
;; ---- Datos de referencia | |
(def domain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; depends on [loco "0.3.1"] | |
(ns loco-playground.core | |
(:require [loco.core :refer :all] | |
[loco.constraints :refer :all])) | |
(def queens-model | |
(conj | |
;; Variables [:x i] [:y i] para la posición de la reina i-ésima | |
(mapcat #(vector ($in [:x %] 0 7) ($in [:y %] 0 7)) (range 8)) | |
;; Todas las filas deben ser distintas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"browserify": "browserify lib/index.js -o dist/app.js -t [babelify --presets [es2015 react]]", | |
"dev": "nodemon --watch lib --exec npm run browserify" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Require instalar el paquete numl desde NuGet | |
using System; | |
using numl; | |
using numl.Model; | |
using numl.Supervised.DecisionTree; | |
namespace MachineLearning | |
{ | |
public enum HairColor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def double-partial (partial * 2)) | |
(defn double-fn [x] (* 2 x)) | |
(time | |
(dotimes [n 10000000] | |
(double-partial 5))) | |
;; => "Elapsed time: 3139.323652 msecs" | |
(time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public IEnumerable<ProductSalesEntry> GetProductSales(Maybe<User> user, DateTime fromDate, DateTime toDate) | |
{ | |
// El método puede recibir o no un usuario o un Maybe<User>.Empty. | |
// Si recibe un usuario, se pasa su Id a la consulta SQl, si no, | |
// se pasa 0 y la consulta SQL no filtrará por usuario; | |
// vamos, el típico where (user.Id = @userId or @userId = 0) | |
// Para hacer explícito que el usuario es un parámetro opcional del método, se | |
// define como un Maybe<User>. Se converte en un Maybe<int> para obtener el Id | |
// usando "select" (el bind de cualquier mónada, pero más C# friendly) y finalmente |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*global ko, Chart */ | |
(function(ko, Chart) { | |
ko.bindingHandlers.chartType = { | |
init: function(element, valueAccessor, allBindings, viewModel, bindingContext) { | |
if (!allBindings.has('chartData')) { | |
throw Error('chartType must be used in conjunction with chartData and (optionally) chartOptions'); | |
} | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; required deps [clj-http "0.9.2"] | |
(ns marvel-clj.core | |
(:require [clj-http.client :as http] | |
[clj-http.util :as util] | |
[clojure.string :as str]) | |
(:gen-class)) | |
(def public-key "YOUR_PUBLIC_KEY_HERE") | |
(def private-key "YOUR_PRIVATE_KEY_HERE") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using Model.Strategies; | |
using Model.Strategies.Minimax; | |
namespace Model | |
{ | |
public class PlayerFactory | |
{ | |
private ITwoPlayersGame TwoPlayersGame { get; set; } |
NewerOlder