search for: modularisation

Displaying 20 results from an estimated 36 matches for "modularisation".

2008 Oct 16
1
Modularisation: Using helper generating HTML output vs. using partials
Hey, I''ve got a general question: when do I use helper and when I do use partials to modularise certain gui elements? For example: I''ve got a faq list. Each item can be folded and unfolded using ajax. FAQ foo -> question 1 -> question 2 -> question 3 So, I wrote a helper "faq_li_tag(args)" which takes the question and answer for parameters and generates the
2006 Jan 02
8
RoR or Java for community portal?
Hello Ruby users, let me introduce myself briefly - I am a student at OvG University Magdeburg, Germany, and I hope to get some advice for a nonprofit student community portal I am involved with, just in case somebody is interested: http://www.webuni.de, having around 3000 active users. Development is done on a voluntary basis by members of the community, mainly IT students with too much
2011 May 16
3
Is it time to re-factor yet :^)
Or how to avoid the whirlwind. Greetings everyone. I observe the coding of lighdm is well under way and I'm thinking the pressure to meet the releases of 11.11 is probably going to build without bounds. Is there time now to consider the inclusion of some of the more offbeat use cases? 1: Headless(no monitor, keyboard, or monitor) 2: True headless(no video card) but Xvfb. 3: No X but only
2007 Aug 20
1
Re: Assertions
David Schmitt david wrote on Mon Jun 25 03:32:09 CDT 2007: > For the ongoing modularisation of my config I wrote a > assert_lsbdistcodename class today, which can be used for failing > parts or complete configurations if a certain variable is not set > (lsbdistcodename in this case). Please find the file attached. This is great, however I ran into something strange with this...
2015 Aug 21
1
I would like to add features to rsync: tags and saving local modifications
...elongs to some module. Not every user needs not every module, so the download by rsync is parametrised by checking or unchecking the modules. However, currently this is implemented as filters, which include or exclude some files by their path or, in some cases, by substrings in file names. To make modularisation more straightforward, and not limited by necessity of differentiation between files by path or name, I propose to introduce concept of tags. Every file could be tagged with some string as an xattr (for example, user.rsync.tag=TAG), and in downloading rsync invocation you could specify a parameter -...
2004 Aug 06
2
Second patch again CVS version
I send a patch again the last CVS version. The changes are: - Configurable prebuffer, in seconds. - prebuffering parameter in configurable in <limits>...<prebuffer>seconds</prebuffer>... - Created a new function (send_client_queue) to send the client->queue. Better modularisation. - Moved queue_lenght verification to send_client_queue(). - instead of disconnecting when the client-queue > 25, it discards packages wich are older than prebuffer*2 (maxlag, in seconds). All clients I tried have recovered very well. - To avoid stalled connections, they are closed if the...
2008 Jan 30
2
Re: libgstreamer, slackware => libgconf.......???
...net wihout gconf or libgstreamer.... but I used the gem system of installing wxruby, which is a great tool. Of course I can give it a try to compile wxRuby myself (and hopefully not running into other dependencies when omitting Wx::MediaCtrl ) but, by accidentally stumbling on your discussion about modularisation on http://rubyforge.org/pipermail/wxruby-development/2007-June/000790.html , the ideas in here might provide a long-term solution to the problems I encountered. Please do not start changing things for my sake (I was only trying wxRuby out as part of discovering ruby. I''ve made stuff with J...
2016 Dec 16
2
LLD status update and performance chart
...roof of that. LLD may be a separate project, and a young one full of energy, but it is also an "LLVM Project". As such, it's bound to the same level of design goals that all LLVM projects share. Not all share all values, but two that we share amongst all projects is collaboration and modularisation. Those values reflect our multiple ranges of users and developers as well as the need to re-use code above raw performance. As was said in this list, Clang is not faster than GCC for a long time, even though it was one of the shiny distinctions. The faster the code we produce, the slower the compi...
2007 Nov 21
6
MediaCtrl
Hi. Attached you find an attempt to adding MediaCtrl to WxRuby. It''s only tested on windows (compiled with msvc 6.0). Everything seems to be working fine except for a small problem with a few functions: wxFileOffset Seek(wxFileOffset where, wxSeekMode mode = wxFromStart); wxFileOffset Tell(); //FIXME: This should be const wxFileOffset Length(); //FIXME: This should be const
2004 Aug 06
0
Second patch again CVS version
...er>... We're in the process of redoing some of this. We will prebuffer some etc, so in the end this functionality will be there. I apologize that this patch won't get applied for that reason. > - Created a new function (send_client_queue) to send the client->queue. > Better modularisation. This is a good idea, and one I figured would get done. I'll take a look at this closer. > - The server didn't check for the status of the client's socket before the > unblocking send(). This caused a disconnection at a minimun network > congestion, causing a broken pipe e...
2010 Nov 29
0
job offer of Quantitative Developper
Overview Statistical Research Laboratory (SRL) is an established hedge fund and asset management technology company based in London and New York, with significant mandates to provide cutting edge technology solutions to leading investment companies. A highly experienced Quantitative Developer is required to support a rapidly evolving Statitisical Research project based on R. The Quantitative
2007 Jun 25
0
Assertions
Dear list! For the ongoing modularisation of my config I wrote a assert_lsbdistcodename class today, which can be used for failing parts or complete configurations if a certain variable is not set (lsbdistcodename in this case). Please find the file attached. Regards, David -- - hallo... wie gehts heute? - *hust* gut *rotz* *keuch* -...
2008 Apr 26
0
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
Hi Dominic!! Oh thanks for your advice. I'll try it. -nic- > This doesn't directly answer your question, however I'm hoping it might > set someone on the right path to help. I've had problems passing > CPPFLAGS through from my Makefiles to the llvm compile command line. It > seems that anything I set in CPPFLAGS is set in the llvm Makefiles > themselves (seen
2012 Nov 27
0
Syslinux-6.00-pre2
Hi folks, There are enough changes on the 'firmware' branch to warrant another prerelease. Things that jump out are the changes to update the current working directory when executing syslinux.efi (previously .c32 failed to load if installed to a non-standard directory such as /boot/syslinux, because the current working directory wasn't correct), the realloc() fix from Shao and a new
2005 May 16
2
parsing speed
Hi everyone, I have a question on parsing speed. I have two functions: F1 F2 As things are now, F2 calls F1 internally: F2 = function(x){ if (something == 1){ y = F1(x) } if (something ==2){ do whatever } } *Assuming there could be some difference*, is is faster to use the code as written above or should I actually write the statements of F1 to make the parsing faster? Regards, Federico
2008 Apr 22
2
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
Hi!! It's me again. I guess that there is a problem in the Makefile of my source code. But I don't know where. Could you please verify it? The Makefile is written like this: # Makefile for Genetic Algorithm Pass CXXFLAGS = -Wall -I/iss/fpga3/nicole/galib247/ LDFLAGS= -L/iss/fpga3/nicole/galib247/ga/ -lga -Wl,-E # Path to top level of LLVM heirarchy LEVEL=../../../ # Name of the
2012 Dec 10
0
UPP schedule and progress
...tool: Emilien planned cca 20 days AFAIK; I think that should be feasible, mainly when considering the suggestion mentioned above; however, to make sure, I'd ask for another 5 days to have some slack... ;-) II. Some thoughts, recommendations etc: 1/ Signalisation & driver instance update modularisation: It seems somewhat misplaced in the configuration library, doesn't it? I'd rather encapsulate that to another library, which would become part of the NUT framework, either. I suggest libnutipc. Ext. commands execution (i.e. basis for driver inst. update): The core is already implemented at...
2007 Mar 22
0
[914] trunk/wxsugar/README.txt: Added README for WxSugar
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2004 Aug 06
2
Icecast2?
Hi all, I am ricardo galli, I've juscribed just a couple of days ago. I wanted to stay as a lurker for a longer period, but this list has almost no traffic, so I wake up due to the silence. The point is, is this list related to icecast2 development? I made some changes to the server and sent a patch to Jack Moffitt, but I'm not sure he's still mainaining the server. If he
2007 Feb 20
6
How to spec code with multiple (interacting) paths
Hi Code with a large number of different paths is probably the biggest problem I have right now. I''ve made a sample class that illustrates the simplest case of one parameter that takes two values: class DataStorer def initialize(logger, emailer, db_updater, do_update_db_step) @logger = logger; @emailer = emailer; @db_updater = db_updater