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
| EPFLAG VAR BYTE | |
| READ 4, EPFLAG | |
| IF EPFLAG = 0 THEN | |
| EEPROM 0, [2,0,1,2] | |
| ENDIF |
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
| VAR REALPASS1 BYTE | |
| VAR REALPASS2 BYTE | |
| VAR REALPASS3 BYTE | |
| VAR REALPASS4 BYTE | |
| VAR PASS1 BYTE | |
| VAR PASS2 BYTE | |
| VAR PASS3 BYTE | |
| VAR PASS4 BYTE | |
| READ 0, REALPASS1 |
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
| cmdUpdate = New OleDb.OleDbCommand | |
| cmdUpdate.Connection = cn | |
| ' cmdUpdate.CommandText = "Update Sci_QA_Easy set key = 1 where Question ='" & lblQ.Text & "'" | |
| cmdUpdate.CommandText = "Update Sci_QA_Easy set key = 1 where Question=@question" | |
| cmdUpdate.Parameters.AddWithValue("@question", lblQ.Text) | |
| cmdUpdate.ExecuteNonQuery() |
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
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| using namespace std; | |
| int main() | |
| { | |
| string string1, string2; | |
| int pos = -1; |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| int main() | |
| { | |
| char *haystack,*needle,*loc,*tmphay; | |
| int x; | |
| x = 0; |
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
| #include <Python.h> | |
| #include <stdlib.h> | |
| int main() | |
| { | |
| Py_Initialize(); | |
| PyRun_SimpleString("print(\"Hello World\")"); | |
| system("PAUSE"); | |
| return 0; | |
| } |
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
| #include <stdio.h> | |
| #include <string.h> | |
| #include "dbfz.h" | |
| record new_record(char *name, char *section, char *address) | |
| { | |
| record nr; | |
| memset(&nr, 0, sizeof(record)); | |
| sprintf(nr.name, "%s", name); |
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 django.db import models | |
| from django.contrib import admin | |
| # Create your models here. | |
| class Curriculum(models.Model): | |
| CurriculumName = models.CharField(max_length=50) | |
| NumYears = models.IntegerField() | |
| class CurriculumAdmin(admin.ModelAdmin): |
OlderNewer