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
Status | Description | Equifax Description | Equifax Rate | |
---|---|---|---|---|
DA | Delete entire account | None | 9 | |
DF | Delete entire account | None | 9 | |
ZA | Financial counseling | Credit Counseling | 7 | |
05 | Account transferred to another office | Transferred or sold | 1 | |
07 | Too new to rate | None | 0 | |
11 | Account in good standing | None | 1 | |
13 | Paid or closed account / zero balance | Account paid | 1 | |
61 | Account paid in full / was voluntary surrender | Account paid | 8 | |
62 | Account paid in full / was collection account / insurance claim or government claim | Account paid | 9 |
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
docker run -it --name tbears-container -p 9000:9000 -v $(pwd):/tbears iconloop/tbears |
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
const axios = require("axios") | |
class HttpProvider { | |
constructor(url) { | |
this.url = url | |
this.id = 0 | |
this.jsonrpc = '2.0' | |
} | |
// Call JSON RPC method. Get back { id, result } or { id, error }. |
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
contract DSNote { | |
event LogNote( | |
bytes4 indexed sig, | |
address indexed guy, | |
bytes32 indexed foo, | |
bytes32 indexed bar, | |
uint wad, | |
bytes fax | |
) anonymous; |
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
package main | |
import ( | |
"fmt" | |
) | |
type whyNeedPointer struct { | |
Do func(string) | |
} |
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
package firebase | |
import ( | |
"github.com/knq/jwt" | |
"github.com/knq/jwt/gserviceaccount" | |
"time" | |
) | |
// Firebase JWT Claims | |
type Claims struct { |
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
#!/usr/bin/env node | |
const fs = require("fs") | |
const path = require("path") | |
const _ = require("lodash") | |
// setup | |
const root = path.resolve(__dirname, "..") | |
const args = process.argv.slice(2) |
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
ADD CONSTRAINT with_old_syntax CHECK (status <> 'closed' OR agent_id IS NOT NULL); | |
ADD CONSTRAINT with_new_syntax CHECK (agent_id IS NOT NULL) WHERE (status = 'closed'); | |
-- generically it would map as follows | |
CHECK (check_condition) WHERE (where_condition) | |
CHECK (NOT (where_condition) OR check_condition) |
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
Private Function LinearInterpolate(ByVal x2 As Integer, ByVal y2 As Double, | |
ByVal x3 As Integer, ByVal y3 As Double) As Double | |
Try | |
LinearInterpolate = ((y2 - y3) / (x2 - x3)) * x2 + y2 | |
Catch ex As Exception | |
SharedLogger.LogException(_moduleID & ":LI", ex) 'Log any exceptions. | |
LinearInterpolate = (y2 + y3) / 2 | |
End Try |
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
:local(.green) { | |
height: 20px; | |
background: green; | |
} |
NewerOlder