Displaying 20 results from an estimated 20 matches for "discipl".
Did you mean:
disciple
2011 Nov 27
0
Disciples III
Well, after a little trouble with it, it installed perfectly, but when I run the .exe to start playing I get 2 messages, the first one says "A required driver had to be performed. Please reboot your system and try again! (#10000). After clicking "Accept", the second one appears and says (in spanish) that "the game found a serious problem and needs to be closed, and that can be
2012 Aug 23
1
[LLVMdev] bending the limits of tbaa metadata
Hi,
I work on DDC, the compiler of a research Haskell dialect, Disciple (disciple.ouroborus.net (http://disciple.ouroborus.net)). We are looking to make use of LLVM's type-based alias analysis metadata to encode non-aliasing information between variables. We have found that the tbaa structure is somewhat limited in its expressivity. In particular we couldn't e...
2003 Nov 25
3
plot mean + S.E. over time
Hi, there!
I finally became a disciple of 'R', after having lost years of my life
handling data with a popular, rather wide-spread spreadsheet-software.
Now I want to plot the results of many runs of my simulation over time,
so that the means +/- Standard error are on the y-axis, and time on the
x-axis.
I have tried 'b...
2011 Aug 28
1
[LLVMdev] LLVM supports Unicode?
...s an array of
i8 (8 bit integers). In your compile you can use utf-8 and any
utf8 string literal can be stored in an i8 array in the LLVM IR.
For example, the LLVM backend for the DDC compiler [0] does this:
@str = internal constant [4 x i8] c"bar\00", align 8
HTH,
Erik
[0] http://disciple.ouroborus.net/
--
----------------------------------------------------------------------
Erik de Castro Lopo
http://www.mega-nerd.com/
2007 Aug 30
1
Fwd: Priotirize SSH Traffic
...gt;
> try that
> #tc qdisc add dev eth0 root handle1: prio
> # tc filter add dev eth0 protocol ip parent 1: prio 1 u32 match ip
> dport 22 0xffff flowid 1:1
> # tc filter add dev eth0 protocol ip parent 1: prio 2 u32 match u32
> 0 0 flowid 1:2
> 1st command create a queuing discipling with a priority queuing.
> 2nd command, say to give first priority to packets that have
> destination port number 22 (standard ssh port).
> 3rd command, say to default traffic to have priority number 2.
>
> you should just have to change eth0 if you are using another
> netw...
2011 Sep 15
1
TOP and Rayman 3 wine 1.3.28
...t;> ID[997] Type[2]
Set Quest: [Who is the Enlightened One>> ID[1500] Type[2]
Set Quest: [Who is the Enlightened One>> ID[1501] Type[2]
Set Quest: [Who is the Enlightened One>> ID[1502] Type[2]
Set Quest: [Who is the Enlightened One>> ID[1503] Type[2]
Set Quest: [Top Disciple>> ID[1507] Type[2]
Set Quest: [Initial Disciple>> ID[1508] Type[2]
Set Quest: [Lv2 Disciple>> ID[1509] Type[2]
Set Quest: [3rd Grade Disciple>> ID[1510] Type[2]
Set Quest: [Advance Disciple>> ID[1511] Type[2]
Set Quest: [Initial Disciple>> ID[1512] Type[2]...
2009 Mar 01
2
AMD Cool'N Quiet = Processor issues
...new to having linux on my desktop but I've had to use command line unix/linux at school and at work.
I'm using Ubuntu 8.10 Intrepid Ibex 64 bit version. I have a HIS 2600XT video card, an Athlon 64 3500+, and 2 gigs of RAM.
I've been having some issues with slow FPS in Guild Wars and Disciples 2 (using the GoG version).
I assumed it's the video card and it's driver and their interaction with Wine. So I compiled the AMD linux driver for the video card for Ubuntu 8.10 (64 bit). That appeared to work well; glxgears is up about another 750 FPS to 7250 FPS.
Then I started to fool...
2008 Jan 22
0
Success story
I have yesterday succesfully installed and run Heroes of Might and Magic
II "Price of Loyality" and Heroes of Might and Magic III "Tribes of
Wastelands". Run without any warnings, just as under Windows :-) Cool. Also,
I have installed and run Disciples II "Dark Prophecy". Game run without
warinings, but when I try to load saved game, SOMETIME game will lock or
crash.
Is there any way to run games with StarForce protection without hacking game?
I.e Silent Storm, E5 New Alliance, Hammersickle?
--
With Best Regards.
Rashid N....
2008 Jan 26
4
Games for Intel graphics
Hi, I'm new in this list.
As the title explains, I would like know which game that work in wine,
with intel graphics. I've experinced that games like Heroes of Might and
Magic III won't work, but a game like Soldier of Fortune, which is a
newer game, works.
If you know of a game that works in wine, please try to list them here,
with additional tweaks as to how you got it to work,
2011 Aug 28
0
[LLVMdev] LLVM supports Unicode?
Hi, Jo!
I'm trying create a new programming language, and I want that it have
Unicode support (support for read and manipulate rightly the source-code and
string literals).
But, in addition, my programming language supports "string interpolation"
string, and in these interpolations, tiny snippets of code, like
expressions, or variable names.
So, I need read each char, separating
2011 Aug 28
4
[LLVMdev] LLVM supports Unicode?
Am 28.08.2011 16:02, schrieb geovanisouza92 at gmail.com:
> Well, have you any idea about how I can implement rightly Unicode in C/C++?
What do you mean with "implement in C/C++"?
If you mean adding libraries to C/C++ that correctly deal with Unicode:
that's nothing you do with a compiler infrastructure. And probably
duplicate work, since Unicode libraries already exist.
If
2013 Apr 15
4
[LLVMdev] The most efficient way to compile to LLVM IR?
Hi all,
I am trying to compile my toy language to LLVM back end. (I am new
to LLVM, so my questions may sound naive)
I am looking at some tutorials about LLVM, most are about how to use
LLVM IRBuilder, however, I find the API provided by IRBuilder is quite
imperative and verbose, and the API changes so fast that most of the
tutorials are out of dated.
So I am wondering what's
2013 Mar 05
3
[LLVMdev] tbaa metadata representation
...entation of TBAA metadata to be more expressive, prompted by the need
to support C structs. Dan Gohman also talked about the issue here:
http://llvm.org/devmtg/2012-11/Gohman-AliasAnalysis.pdf. It was suggested
that the trees be replaced by a type DAG then. While working on this
compiler <http://disciple.ouroborus.net/>, I ended up using an undirected
graph to represent aliasing instead, I believe it might be suitable for
TBAA's purposes as well, for the following reasons.
* Does the graph need to be acyclic? Consider these struct types:
struct a { type1 x; type2 y }
struct b { t...
2006 Sep 02
15
service restart failures
Puppet is failing to restart lighttpd using the Debian init script.
Both the default action of stop/start and using the reload action, which
basically does the same thing, fail.
It seems to be a filehandle problem. Changing the execute method
in service.rb to redirect stdout to /dev/null allows the daemon to
restart. Otherwise, I end up with a zombie process and according to
strace, ruby
2016 Feb 13
4
Redundant and Geobalancing setup
Hi,
I use dovecot for a long time now, but only as a single isolated server
each time.
I joined a company a few years back. We had trouble with compagnies hosting
our mail, supposedly full redundant and so on.
The company is small, but we have many dealers around the world, and it's
growing.
Mail became the fist choice for clients to contact the dealers.
No mail, and we loose sales.
For
2013 Mar 15
0
Wine release 1.5.26
...r messages
33110 AudioSurf crash on start
33144 DnsQuery_A API returns DNS_ERROR_BAD_PACKET when querying for MX records.
33151 .NET 2.0 program crashes eInvalidOperationException on startup mscorwks
33152 GetAdaptersAddresses reports incorrect address family for IPv4 addresses
33168 Disciples: Sacred Lands crashes on start
33169 Total Annihilation : Kindoms crashes
33197 Multiple applications ported to WinRT/ARM using msvcr110.dll require some msvcrt math functions (Audacity)
33198 Multiple applications ported to WinRT/ARM using msvcr110.dll require msvcrt.setjmp
33200 Ali...
2001 Oct 17
3
Type III sums of squares.
Peter Dalgaard writes (in response to a question about 2-way ANOVA
with imbalance):
> ... There are various
> boneheaded ways in which people try to use to assign some kind of
> SumSq to main effects in the presence of interaction, and they are all
> wrong - although maybe not very wrong if the unbalance is slight.
People keep saying this
2013 Jan 18
0
Wine release 1.5.22
...m Asylum Demo needs wmiutils path_GetClassName()
32708 Post Mortem crashes on start with built-in msvcrt
32716 Batman: Arkham Asylum Demo needs wmiutils path_GetInfo()
32727 Batman: Arkham Asylum Demo needs wmiutils path_SetServer()
32729 Morrowind crashes before loading a game
32733 Disciples: Sacred Lands crashes on start
32737 Batman: Arkham Asylum Demo needs wmiutils path_RemoveAllNamespaces
----------------------------------------------------------------
Changes since 1.5.21:
Akihiro Sagawa (1):
po: Update Japanese translation.
Alexandre Julliard (32):
configure...
2011 Oct 10
0
Wine release 1.3.30
...orerframe/nstc tests shows some a leak in comctl32 under valgrind
26009 Adventure games from Kheops Studio have wrong text alignment
26053 urlmon/sec_mgr tests show some invalid writes under valgrind
26601 The Void: audio stutters badly (when using ALSA full hardware acceleration)
26640 Disciples II: sound artifacts during music playback
26816 native msi2 installer exits with status 20, can't get version of mspatcha.dll
27283 can not start IBankWizard.msi installer
27301 Space Empires: Star Fury doesn't display text in-game (orm=backbuffer)
27382 WinRAR 4.x installer...
2008 Aug 24
0
Specify glibc version to run/compile wine against?
If I understand it correctly, Wine will work properly with either a (newish) glibc and a (newish) linux kernel with NPTL/TLS support, or with an old (2.2.x) glibc and an old kernel.
I have an "old" (2.4.x) kernel without NPTL/TLS support, and a new glibc (2.3.4 or something). Is it possible to install an old glibc as well, and compile/run Wine against it? If so, how do I instruct the