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
require 'formula' | |
class GtkMacIntegration < Formula | |
homepage '' | |
url 'http://download.gnome.org/sources/gtk-mac-integration/1.0/gtk-mac-integration-1.0.1.tar.xz' | |
sha1 '29bf43caaa132d1834af9a0ce5e5794405afa538' | |
depends_on 'autoconf' => :build | |
# depends_on 'automake' => :build | |
depends_on 'pkg-config' => :build |
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
[mba:/private/tmp/homebrew-gtk-mac-integration-1.0.1-9LZ9/gtk-mac-integration-1.0.1] $ export ACLOCAL_FLAGS="-I /usr/local/share/aclocal/" | |
[mba:/private/tmp/homebrew-gtk-mac-integration-1.0.1-9LZ9/gtk-mac-integration-1.0.1] $ make | |
cd . && /bin/sh /private/tmp/homebrew-gtk-mac-integration-1.0.1-9LZ9/gtk-mac-integration-1.0.1/missing --run aclocal-1.10 -I /usr/local/share/aclocal/ | |
cd . && /bin/sh /private/tmp/homebrew-gtk-mac-integration-1.0.1-9LZ9/gtk-mac-integration-1.0.1/missing --run autoconf | |
cd . && /bin/sh /private/tmp/homebrew-gtk-mac-integration-1.0.1-9LZ9/gtk-mac-integration-1.0.1/missing --run automake-1.10 --gnu | |
aclocal.m4:17: error: this file was generated for autoconf 2.61. | |
You have another version of autoconf. If you want to use that, | |
you should regenerate the build system entirely. | |
aclocal.m4:17: the top level | |
autom4te: /usr/bin/m4 failed with exit status: 63 |
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
var parents = from d in db.milestonemetadata_deliverables | |
join mm in db.eumarketing_milestonemetadatas on new {d.ProjectID, d.MilestoneID} equals new {mm.ProjectID, mm.MilestoneID} | |
where mm.IsActive == 1 && mm.Removed == false && mm.Status != 8 | |
&& ( mm.ActualEndDate >= fromDate && mm.ActualEndDate < toDate | |
|| ( mm.EndPlanEndDate.HasValue | |
&& ( mm.EndPlanEndDate.Value >= fromDate && mm.EndPlanEndDate.Value <= toDate ) | |
|| mm.EndActualEndDate.HasValue | |
&& ( mm.EndActualEndDate.Value >= fromDate && mm.EndActualEndDate.Value <= toDate ) ) ) | |
join m in db.eumarketing_milestones on mm.MilestoneID equals m.Id | |
where m.GroupId != 0 |
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
#include "glstuff.h" | |
PFNGLATTACHSHADERPROC _glAttachShader; | |
PFNGLBINDBUFFERPROC _glBindBuffer; | |
PFNGLBINDVERTEXARRAYPROC _glBindVertexArray; | |
PFNGLBUFFERDATAPROC _glBufferData; | |
PFNGLCOMPILESHADERPROC _glCompileShader; | |
PFNGLCREATEPROGRAMPROC _glCreateProgram; | |
PFNGLCREATESHADERPROC _glCreateShader; | |
PFNGLDELETESHADERPROC _glDeleteShader; |
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
> Hej! | |
> | |
> Vi är två filmregissörer i Uppsala som pratat med Andreas om ett eventuellt samarbete med dykare kring | |
> vår långfilm "6000 sekunder" den 15,16,22 september och den 6,7 oktober i Fyrisån. | |
> | |
> Här kommer lite bakgrundsinfo: | |
> Anette Skåhlberg och jag är båda filmskapare i Uppsala som gillar | |
> att filma här och vi har i Uppsala gjort långfilm, tv och ett dussin | |
> prisbelönta kortfilmer, bland annat den Guldbaggenominerade |
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
Sak Pris styck (2010-11-25) URL | |
--- ----------------------- --- | |
2 st Intel Xeon E5620 / 2.4 GHz - LGA1366 Socket - L3 12 MB - Box 3.411:- https://produktwebb.its.uu.se/Student/Katalog.aspx?TillvArtNr=BX80614E5620 | |
1 st ASUS Z8PE-D18 4.680:- https://produktwebb.its.uu.se/Student/Katalog.aspx?TillvArtNr=90-MSVCH0-G0UAY00Z | |
4 st Kingston ValueRAM - Minne - 6 GB : 3 x 2 GB KVR1333D3S4R9SK3/6G 1.493:- https://produktwebb.its.uu.se/Student/Katalog.aspx?TillvArtNr=KVR1333D3S4R9SK3%2f6G | |
1 st Compucase 4U 19" (3x5,25"; 1x3,5") 1.799:- http://www.webhallen.com/hardvara/49595-compucase_4u_19_utan_natdel_svart_6x5.25_5x3.5 | |
1 st Skenor f▒r S411 till 800 & 900mm djupa sk▒p |
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
Hej. | |
Vi söker folk till en position av textredaktör för ett välkänd bolag. | |
Uppgifter: | |
Under 24 timmar skickar vi till dig meil med texter. | |
Några korta texter för stavning, grammatik och felkorrigering. | |
Detta kan vara ett bevis på att du kan engelska. |
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
// xxx => | |
try { | |
var x = Expression.Parameter( source.ElementType, "x" ); | |
// => xxx | |
var selector = Expression.Lambda( Expression.PropertyOrField( x, co.GetOrderColumn() ), x ); | |
return source.Provider.CreateQuery( | |
Expression.Call( typeof( Queryable ), co.IsDescending() ? "OrderByDescending" : "OrderBy", new Type[] { source.ElementType, selector.Body.Type }, | |
source.Expression, selector | |
) ) as IQueryable<T>; | |
} catch { |
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
$action++; | |
$action = 'A10' if $action eq 'B0'; | |
$expected_result++; | |
$expected_result = 'E10' if $expected_result eq 'F0'; |
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
OBS: Du kanske har fått det flera gånger, men ska du inte känna irriterad. Det är som en följd av tekniska problem, ber vi om ursäkt för detta som vi vänligt anställa dig att följa detta en gång till. | |
Din webbmail kvot har överskridit den fastställda kvoten som är 20 GB. Du är för närvarande körs på 23SE grund dolda filer och mappar i din brevlåda. Vi använder du validera din brevlåda och öka din kvot mottagandet av detta meddelande. | |
Klicka på länken nedan: | |
https://docs.google.com/spreadsheet/viewform?formkey=dGV3bm9LSEFWQ2hqMW1QNjhXRW9NV3c6MQ | |
Underlåtenhet att klicka på ovanstående att validera ditt konto kan resultera i förlust av viktiga informationer eller orsaka begränsad tillgång till ditt konto. |