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
ant -p | |
Buildfile: /Users/mbennett/data/dev/lucid/LucidWorksEnterprise-dev/build.xml | |
/Users/mbennett/data/dev/lucid/LucidWorksEnterprise-dev/build.xml:2: The following error occurred while executing this line: | |
/Users/mbennett/data/dev/lucid/LucidWorksEnterprise-dev/common-build.xml:1145: /Users/mbennett/data/dev/lucid/LucidWorksEnterprise-dev/lib/drools does not exist. |
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
{ | |
"fields" : [ { | |
"name" : "url", | |
"value" : [ { | |
"name" : "url", | |
"value" : "https://lucidimagination.zendesk.com/api/v2/tickets/12.json" | |
} ] | |
}, { | |
"name" : "id", | |
"value" : [ { |
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
[ { | |
"id" : "12", | |
"fields" : [ { | |
"name" : "url", | |
"value" : [ { | |
"name" : "url", | |
"value" : "https://lucidimagination.zendesk.com/api/v2/tickets/12.json" | |
} ] | |
}, { | |
"name" : "id", |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Problem Method | |
# --------------- | |
# *** Search for "PROBLEM STARTS HERE" | |
# * Search for: solve_np | |
# * on FIRST iteration | |
# * Stategy: using just 3 Pentominoes, that will fit in 3x5 rectangle |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Problem Method | |
# --------------- | |
# Similar to previous gist, but this uses the full 12 Pentominoes pieces, | |
# and is still generating invalid solutions | |
# | |
# I believe I've followed the Wikipedia example to the letter |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Problem Method | |
# --------------- | |
# Final gist, w code fixes | |
# License: BSD | |
# | |
# |