Here’s the exact workflow for autonomous agents operating across 2 repos:
I hereby claim:
- I am theotherzach on github.
- I am briggszj (https://keybase.io/briggszj) on keybase.
- I have a public key ASDJjfk4gEOrRXiZEuE8JBycz0-WvaEJvkW2WnsmHSquiAo
To claim this, I am signing this object:
Companion tab to this video
Tune guitar to open D tuning. From low (thickest) string to high string: D, A, D, F#, a, d.
(E)
d |--------------------------------|--------------------------------|
a |--------------------------------|--------------------------------|
F#|--------------------------------|--------------------------------|
This file contains hidden or 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
| class FrontendFlow < ActiveRecord | |
| # property_id: Integer | |
| # step: BigDecimal | |
| # name: String | |
| end |
Downgrading to MySQL 55
https://gist.github.com/benlinton/d24471729ed6c2ace731
- ps aux | grep mysql Validate that your current mysql process is running.
- mysql --version
This file contains hidden or 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
| from decimal import * | |
| # A dict has a key ane a value. In the following, they key is 'name' and the value is 'Homer'. | |
| homer = {'name':'Homer', 'age':'39'} | |
| # I'm using strings for the values so it looks more like the data you get from your CSV. | |
| milhouse = {'name':'Milhouse', 'age':'10'} | |
| unsorted_list = [homer, {'name': 'Marge', 'age': '37'}, milhouse, {'name':'Bart', 'age':'10'}] |
This file contains hidden or 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
| describe("Address", function () { | |
| var app = window.app | |
| var store = window.jQuery.extend({}, app.store) | |
| var Address = Object.assign({}, app.components.Address) | |
| var vm = null | |
| beforeEach(function () { | |
| spyOn(app.services.ordersService, 'get').and | |
| .returnValue(new Promise(function() {})) |
This file contains hidden or 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
| a = [{ slug: "foo"}, { slug: "bar" }] | |
| b = a.sort_by { |e| e[:slug] } | |
| a.push({ slug: "baz" }) | |
| result_1 = b.find { |e| e[:slug] == "baz" } | |
| # Predict which branch executes |
This file contains hidden or 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
| <template id="template-connect"> | |
| <div class="connect"> | |
| <div class="connect__searchPanel"> | |
| <div class="connect__speciesSelect"> | |
| <button @click="handleDogs">Dogs</button> | |
| <button @click="handleCats">Cats</button> | |
| </div> | |
| <div class="connect__search"> | |
| <input type="text" |
This file contains hidden or 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
| export default { | |
| computed: { | |
| isFormValid() { | |
| return this.$validator.valid && this.customerAddress.$dirty | |
| } | |
| canSave() { | |
| return this.isFormValid && this.customerAddress.$notBusy | |
| } | |
| } | |
| } |
NewerOlder