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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Reflection; | |
| namespace MVVM_Async.Helpers | |
| { | |
| public static class ObjectMapper | |
| { |
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
| string macAddress = (from iface in NetworkInterface.GetAllNetworkInterfaces() | |
| where iface.OperationalStatus == OperationalStatus.Up | |
| select iface).FirstOrDefault().GetPhysicalAddress().ToString(); |
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
| config = ZenOrmConfig.Instance; | |
| config.DataStore = DataStoreType.MySQL; | |
| config.DataStoreConfig = new ZenORM.Config.MySqlConfig(); | |
| config.Debug = true; | |
| Video video = new Video { | |
| Director = "Steven", | |
| NumberOfCast = 30, | |
| Title = "ET", |
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/ python | |
| import web | |
| urls = ('/', 'Index') | |
| application = web.application(urls, globals()) | |
| web.config.debug = True | |
| class Index: |
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" | |
| "io/ioutil" | |
| "os" | |
| "os/user" | |
| "path" | |
| "strings" | |
| ) |
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 python | |
| from fabric.api import * | |
| from datetime import datetime as dt | |
| """ | |
| Deployment Fabric File for codeassistant-django | |
| """ | |
| env.hosts = ['192.168.1.21'] |
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 ( | |
| "encoding/xml" | |
| "fmt" | |
| "io/ioutil" | |
| "net/http" | |
| "time" | |
| ) |
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 ( | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| zmq "github.com/alecthomas/gozmq" | |
| "github.com/howeyc/fsnotify" | |
| "log" | |
| "sync" |
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 ( | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| ) |
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
| import os.path | |
| CONF_ROOT = os.path.dirname(__file__) | |
| DATABASES = { | |
| 'default': { | |
| 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. | |
| 'NAME': 'sentry', # Or path to database file if using sqlite3. | |
| 'USER': 'sentry', # Not used with sqlite3. | |
| 'PASSWORD': 'sentry', # Not used with sqlite3. |
OlderNewer