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
0000ff0e-0000-1000-8000-00805f9b34fb |
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
// No Data | |
# app/models/stat.rb | |
class Stat | |
def calculate! | |
raise "implement" | |
end |
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
E/SQLiteLog: (1555) abort at 13 in [INSERT INTO service(name,price,description,is_deleted,id,is_new) VALUES (?,?,?,?,?,?)]: UNIQUE constraint failed: service.id | |
E/SQLiteDatabase: Error inserting name=null price=3000 description=null is_deleted=false id=56 is_new=false | |
android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: service.id (code 1555) | |
at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method) | |
at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:791) | |
at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:788) | |
at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:86) | |
at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1501) | |
at android.database.sqlite.SQLiteDatabase.insert( |
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
# c++ | |
string sslCert = "some large random string" | |
int ssl_xor[10]; | |
fill(ssl_xor, ssl_xor + 10, 0); | |
for (int i = 0; i < sslCert.size(); i += 10) { | |
for (int j = 0; j < 10 && i + j < sslCert.size(); j++) { | |
ssl_xor[j] = ssl_xor[j] ^ (int)sslCert[i + j]; | |
} | |
} |
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
console.log("hi"); |
NewerOlder