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
// | |
// Attributes.cs | |
// | |
// Database-agnostic portions of the code are copyright (c) 2009-2010 Krueger Systems, Inc. | |
// Oracle support is copyright (c) 2010 Bojan Rajkovic | |
// | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
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
Config { font = "-*-Fixed-Bold-R-Normal-*-13-*-*-*-*-*-*-*" | |
, bgColor = "black" | |
, fgColor = "grey" | |
, position = TopW L 90 | |
, commands = [ Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 10 | |
, Run Memory ["-t","Mem: <usedratio>%"] 10 | |
, Run Swap [] 10 | |
, Run Date "%a %b %_d %l:%M" "date" 10 | |
, Run StdinReader | |
] |
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
(gdb) t a a bt | |
Thread 14 (process 59647): | |
#0 0x9374d9b2 in __workq_kernreturn () | |
#1 0x9374df48 in _pthread_wqthread () | |
#2 0x9374db66 in start_wqthread () | |
Thread 13 (process 59647): | |
#0 0x93728122 in semaphore_wait_signal_trap () | |
#1 0x9372dbe6 in pthread_mutex_lock () |
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
diff --git a/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs b/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs | |
index 16ecc25..88d598b 100644 | |
--- a/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs | |
+++ b/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs | |
@@ -37,6 +37,7 @@ namespace MonoDevelop.VersionControl.Git | |
static string gitExe; | |
const string msysGitX86 = @"C:\Program Files (x86)\Git\bin\git.exe"; | |
const string msysGit = @"C:\Program Files\Git\bin\git.exe"; | |
+ const string gitMacOSX = @"/usr/local/git/bin/git"; | |
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
diff --git a/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs b/main/src/addins/VersionControl/MonoDevelop.VersionCont | |
index 16ecc25..4fc04cb 100644 | |
--- a/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs | |
+++ b/main/src/addins/VersionControl/MonoDevelop.VersionControl.Git/MonoDevelop.VersionControl.Git/GitVersionControl.cs | |
@@ -37,15 +37,19 @@ namespace MonoDevelop.VersionControl.Git | |
static string gitExe; | |
const string msysGitX86 = @"C:\Program Files (x86)\Git\bin\git.exe"; | |
const string msysGit = @"C:\Program Files\Git\bin\git.exe"; | |
+ const string gitOsxInstaller = "/usr/local/git/bin/git"; | |
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
saul:~ bojanrajkovic$ ln -sv Music Music-Link | |
Music-Link -> Music | |
saul:~ bojanrajkovic$ csharp | |
Mono C# Shell, type "help;" for help | |
Enter statements below. | |
csharp> using System.IO; | |
csharp> var fi = new FileInfo ("Music-Link"); | |
csharp> fi.Attributes; | |
Directory, ReparsePoint |
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
[21:34:33] <XXX> ?^ADCC CHAT LOLPWNEDLOLPWNEDLOLPWNED 0 0 0 | |
[21:34:33] *** Quits: bucket ([email protected]) (Connection closed) |
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.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: Could not load parse database for project | |
at MonoDevelop.AspNet.WebTypeContext..ctor (MonoDevelop.AspNet.AspNetAppProject project) [0x00057] in /Users/bojanrajkovic/Projects/monodevelop/main/src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet/WebTypeManager.cs:63 | |
at MonoDevelop.AspNet.Parser.DocumentReferenceManager..ctor (MonoDevelop.AspNet.AspNetAppProject project) [0x0000d] in /Users/bojanrajkovic/Projects/monodevelop/main/src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet.Parser/DocumentReferenceManager.cs:57 | |
at MonoDevelop.AspNet.Gui.AspNetEditorExtension.OnParsedDocumentUpdated () [0x0004c] in /Users/bojanrajkovic/Projects/monodevelop/main/src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet.Gui/AspNetEditorExtension.cs:85 | |
at MonoDevelop.XmlEditor.Gui.BaseXmlEditorExtension.OnParseInformationChanged (System.Object sender, MonoDevelop.Project |
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
<%@ Page Language="C#" MasterPageFile="~/Content/Master.master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<APAAdminUI.Models.Project>>" %> | |
<%@ Import Namespace="APAAdminUI" %> | |
<asp:Content ID="HeadContent" ContentPlaceHolderID="head" runat="server"> | |
<title>Air Power Analytics Administration Interface</title> | |
<link href="/Content/Styles/base.css" rel="stylesheet" type="text/css" /> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | |
<script src="/Scripts/LoggedIn.js" type="text/javascript"></script> | |
<script src="/Scripts/StringFormat.js" type="text/javascript"></script> | |
</asp:Content> | |
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server"> |
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
class Test { | |
public static void Main (string[] args) { | |
Action a = () => a (); | |
} | |
} |
OlderNewer