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
public partial class Application { | |
public Func<Url> Blog_Url = get('/blogs/index', x => x.Class('BlogController').Action('ShowBlogs')) | |
} | |
public partial class Site { | |
public class Blogs { | |
public static Func<int,URL> Show = get(() => { |
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
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1163 PortAudio version number = 1899 | |
PortAudio version text = 'PortAudio V19-devel (built Jul 24 2009)' | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1187 Number of devices = 3 | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1194 -------------------------------------------------------------------------------- | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1196 Device #0 | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1201 **Default Input | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1223 ** | | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1226 Name: Built-in Microphone | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1227 Host: Core Audio | | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1228 inputs: 2 | |
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
pa devlist | |
API CALL [pa(devlist)] output: | |
0;Built-in Microphone;2;0;i | |
1;Built-in Input;2;0; | |
2;Built-in Output;0;2;r,o |
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
pa call 1234 | |
2009-07-24 23:21:39.301627 [NOTICE] switch_channel.c:602 New Channel portaudio/1234 [4879e9ec-a961-49b0-ba7d-70ded39ad166] | |
2009-07-24 23:21:41.587873 [NOTICE] mod_portaudio.c:1773 Channel [portaudio/1234] has been answered | |
API CALL [pa(call 1234)] output: | |
SUCCESS:3:4879e9ec-a961-49b0-ba7d-70ded39ad166 | |
2009-07-24 23:21:41.587873 [INFO] mod_dialplan_xml.c:310 Processing FreeSWITCH->1234 in context default | |
2009-07-24 23:21:41.589130 [NOTICE] switch_ivr.c:1349 Transfer portaudio/1234 to enum[1234@default] | |
[email protected]> 2009-07-24 23:21:42.43717 [INFO] switch_core_state_machine.c:136 No Route, Aborting | |
2009-07-24 23:21:42.43717 [NOTICE] switch_core_state_machine.c:137 Hangup portaudio/1234 [CS_ROUTING] [NO_ROUTE_DESTINATION] |
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
protected void Application_Start(object sender, EventArgs e) { | |
RouteTable.Routes.Define(routes => | |
{ | |
routes.Connect("{controller}/{action}" ); | |
routes.Namespace("subarea", subarea => | |
{ | |
subarea.Connect("{controller}/{action}" ); | |
}); | |
}); |
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
grammar Brail; | |
options {output=template; rewrite=true;} | |
doc : mixedContent; | |
mixedContent | |
: .* brailExpression mixedContent? | |
; |
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
making all mod_portaudio | |
libtool: compile: gcc -c -I./include -I./src/common -I./src/os/unix -Werror -g -O2 -DPA_LITTLE_ENDIAN -arch x86_64 -arch ppc64 -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.3 -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DHAVE_NANOSLEEP=1 -DPA_USE_COREAUDIO=1 src/common/pa_dither.c -fno-common -DPIC -o src/common/pa_dither.o | |
cc1: warnings being treated as errors | |
src/common/pa_dither.c: In function ‘PaUtil_Generate16BitTriangularDither’: | |
src/common/pa_dither.c:73: warning: right shift count >= width of type | |
src/common/pa_dither.c:74: warning: right shift count >= width of type | |
src/common/pa_dither.c: In func |
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
// This source code is dual-licensed under the Apache License, version | |
// 2.0, and the Mozilla Public License, version 1.1. | |
// | |
// The APL v2.0: | |
// | |
//--------------------------------------------------------------------------- | |
// Copyright (C) 2007-2009 LShift Ltd., Cohesive Financial | |
// Technologies LLC., and Rabbit Technologies Ltd. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); |
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
System.NotSupportedException was unhandled by user code | |
Message=Unable to determine the provider name for connection of type 'System.Data.SqlClient.SqlConnection'. | |
Source=Microsoft.Data.Entity.Ctp | |
StackTrace: | |
at Microsoft.Data.Objects.ContextBuilder`1.GetProviderServices(DbConnection storeConnection, String& providerInvariantName, String& providerManifestToken) | |
at Microsoft.Data.Objects.ContextBuilder`1.Create(DbConnection storeConnection) | |
at Elation.CustomerPortal.Infrastructure.EntityFrameworkSetup.Init() in C:\Development\elation\OSS\Current Version\Web\src\Elation.CustomerPortal\Infrastructure\EntityFrameworkFacility.cs:line 164 | |
at IS.eBillWeb.Global.Application_Start() in C:\Development\elation\OSS\Current Version\Web\src\IS.eBillWeb\Global.asax.cs:line 33 | |
InnerException: |
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
Topic: | |
Windows Phone 7 for Developers, an Overview | |
In this session we take a first look at the new phone from Microsoft how developers can leverage their existing skills to build applications using the these technologies | |
We will explore the tools and approaches for building applications including Silverlight and XNA, how to get the free tools to get started, and what you need to do to join the Windows Mobile Marketplace so you can monetize your latest creation on the Windows Phone platform. | |
Presented By: Mike Benkovich | |
When: October 14, 2010 5:30 | |
Location: Electrical Engineering / Physics Building #252 (EP252), SDSM&T Campus http://sdmines.sdsmt.edu/campusmap ,501 East Saint Joseph Street, Rapid City, SD |
OlderNewer