Displaying 20 results from an estimated 80 matches similar to: "Support my bachelor thesis: Efficient Web Dev with RoR"
2008 May 03
3
Fonts cut off (Dawn of War, wine 0.9.45 +)
I'm using wine 0.9.44 to run Warhammer 40,000: Dawn of War 1.51 (http://appdb.winehq.org/screenshots.php?iAppId=1918&iVersionId=2576) on Kubuntu 8.04
This works just fine:
[Image: http://img170.imageshack.us/img170/6568/screen1hq9.th.jpg ] (full size (http://img170.imageshack.us/img170/6568/screen1hq9.jpg))
However, if I use wine 0.9.45 or any later version, the topmost pixel of the fonts
2005 Oct 03
1
Bachelor's Thesis on Ruby on Rails
Hey guys,
Does anyone has an idea for what one can do for a bachelor''s thesis on Ruby
on Rails? Possibly focusing on design patterns/benchmarking it against J2EE
and stuff like this?
Will be eternally grateful if anyone can contribute any idea!
Regards
Steve
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2019 Apr 18
3
Opt plugin linkage
The fundamental problem here is that opt doesn’t use ExecutionEngine (because it has no need to), so trying
to use ExecutionEngine (or any other bit of llvm that opt doesn’t use for that matter) in an opt plugin isn’t
going to work.
The solution I’d go with would be to build llvm with shared libraries (use –DBUILD_SHARED_LIBS=ON on the
cmake command) then link the plugin against ExecutionEngine.
2017 Jul 19
0
I want to contribute and chose right project for graduate thesis
Hello,
I am student of IT from Croatia on finishing year for my bachelor's degree.
For the graduate thesis I would like to contribute some open source
project. For example it can be some bug fix. Language in I work is C. My
knowledge is shown in programs on git profile: https://github.com/mkrajaci
Project which I choose will be sent to my professor - mentor who will
approve or not
2010 May 11
1
[LLVMdev] Master Thesis about Profiling in LLVM
Hi all!
I recently finished my master studies with the thesis' title being
"Efficient Profiling in the LLVM Compiler Infrastructure". For anyone
interested it can be downloaded at
http://astifter.com/storage/diplomarbeit.pdf. I wanted to thank all of
you who helped me with suggestions, reviews and comments about LLVM
and related topics.
As discussed in
2008 Oct 27
2
Wine post graduation thesis
Hello,
Im writing my post graduation thesis in
SYSTEMS INTEROPERABILITY
and im talking about M$ wine and crossover. Can anyone pointout some good literature to begin my work.
I want to talk about what needs to be done in M$ programing enviorment so that everything will run smothly in wine.
thanks
2006 Nov 09
2
A selection of interesting papers, thesis and courses on Audio, Music and Speech
Well, some University in America (Rice University) has beginning a
process of providing courses and books under CC licenses. I've looked
into it and already found some interesting stuff that people in this
list might found interesting.
Frequency and Music
An overview of frequency, harmonic (Fourier) series, and their
relationship to music.
http://cnx.org/content/col10338/latest/
Audio
2010 Feb 18
1
[LLVMdev] Master's thesis: Retargetable Compiler Backend for Transport Triggered Architectures
Hi all,
I think this master's thesis from our group could be of
interest. It describes the "bridge" between the LLVM codegen
and our custom TTA codegen in TCE: a runtime retargetable architecture
description file driven LLVM compiler backend. The thesis might be
useful also for people implementing backends for LLVM in general.
http://tce.cs.tut.fi/doc/Compiler.pdf
If you have any
2012 Apr 14
2
master thesis
Hi,
For my master thesis I have 24 micro-plots on which I did measurements during 3 months.
The measurements were:
- Rainfall and runoff events throughout 3monts (runoff being dependant on the rainfall, a coefficient (%) has been made per rainfall event and per 3 months)
- Soil texture (3 different textures were differentiated)
- Slope (3 classes of slopes)
- Stoniness (one time measurement)
2003 Sep 07
3
thesis project dealing with Vorbis
This is a heads up to let you know of my plans to work on a senior
thesis project dealing with editing Vorbis losslessly in Audacity. You
can find more information about my plans and what I'm up to here:
http://www.reverberate.org/computers/thesis/
"vcut" from vorbis-tools will be an excellent starting point for me. I
notice that it's marked "experimental"; why is
2009 Jan 19
3
[somewhat OT] seeking ideas/input for my thesis
Hello VoIP guys
Sorry for being somewhat off-topic. At the moment I am studying
informatics in the seventh semester and I need to start thinking about
my thesis. As I am very interested in VoIP technologies I thought about
picking this as my main topic. So far I have only little experience in
this area. I have been fiddling around with siproxd and pfSense and have
red the one or the other packet
2011 Oct 06
1
The "Sets" package and element equality test
Hi,
I tried to use the sets package yesterday, which seems to be a very powerful
package: thanks to the developers. I wanted to define sets of lists where 2
lists are considered equal if they have the same length.
So, I implemented:
match.2.list <- function(l1,l2){
length(l1)==length(l2)
}
and then defined my cset as:
s <- set(list(1,2),list(3,4))
lset <-
2010 Mar 10
5
Master thesis topic on Ruby or ROR
Hey fellows,
I am a novice to ruby and ror, but really addicted to it. As a
graduate student, I need master thesis topic around Ruby aor ROR. Can
anyone suggest some for me?
Regards/Buyan
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2002 Aug 07
1
Setting up a PDC + multiple BDCs across subnets
hello,
I'd like to setup domain authentication purely based on Samba Domain
Controllers. Each subnet would have its own BDC (with security = domain
option), forwarding smb requests to the PDC (located on the backbone),
ie authentication, shares..
My PDC is LDAP based, all that part is ok, win98 workstations
successfully log into the PDC. I use idealx smbldap tools, that seem to
work fine. I
2005 Dec 22
0
use helper methods in controller? (sanitize)
Hi,
I want to use the method sanitize() to clean up some user input before I
save it to the db. sanitize() is a helper method, so it is only usable
in templates, right?
So how can I use helper methods in the controller, or why should I not?
I could build a template like "<%=sanitize(input)-%>" and use
render_to_string, but that seems pretty hackish.
Or I could sanitize every
2019 May 12
2
Why does verifyFunction dislike this?
I am programmatically building some functions in intermediate
representation, and trying to verify them, but the verifier always reports
that there is a problem, and I can't see why. Minimal test case:
#ifdef _MSC_VER
#pragma warning(disable : 4141)
#pragma warning(disable : 4530)
#pragma warning(disable : 4624)
#endif
#include <llvm/IR/IRBuilder.h>
#include <llvm/IR/Verifier.h>
2018 Jul 12
2
custom LLVM Pass with options fails to load
Hi Philip,
thanks for the quick answer.
That makes sense, but when leaving the set LLVM_LINK_COMPONENTS out
I get an undefined symbol when loading the plugin:
_ZTVN4llvm2cl3optINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEELb0ENS0_6parserIS7_EEEE
which boils down to
llvm::cl::opt<std::__cxx11::basic_string<char, std::char_traits<char>,
std::allocator<char>>,
2019 Apr 16
2
Opt plugin linkage
Hey:
I spent sometime debugging this, it seems like editing ``llvm/tools/opt.cpp`` and move ``cl::ParseCommandLineOptions(argc, argv,
"llvm .bc -> .bc modular optimizer and analysis printer\n");`` to the beginning of main() solved it for me. I'm not sure if this is a bug on LLVM side
Zhang
------------------ Original ------------------
From: "Viktor Was BSc via
2006 May 25
7
Hide content before page load
Hi,
i''ve been experimentating with dynamicCSS.js [1] to hide content only if
JavaScript is enabled. It works pretty well and fires before onload to avoid
the flash of visible content. Now i''m wondering if there is a Prototype way
of doing this.
[1] http://www.bobbyvandersluis.com/articles/dynamicCSS.php
My main problem is that Prototype functions like Element.toggle() do
2006 May 28
13
JSON not auto-evaluated
Hi,
please consider this stripped down example:
new Ajax.Request(''foo.php'', {
onSuccess: function(t, json) {
alert(json.myParam);
}
});
According to http://www.sergiopereira.com/articles/prototype.js.html, the
second param is supposed to be the evaluated json object IF the X-JSON header
is send in the response. I send the header in my script. However, the json
var