similar to: Shattered, the rails-based MVC game development framework

Displaying 20 results from an estimated 800 matches similar to: "Shattered, the rails-based MVC game development framework"

2006 Jul 20
0
Shattered 0.3.3 - an opinionated 3d game development framework
Ever have an idea for a game? Ever want to create a 3d game, but didn''t want to mess with the horrors of C++? Well now you can, and without even leaving the warm gooey comfort of Ruby! http://ShatteredRuby.com ShatteredRuby.com presents Shattered 0.3.3. Shattered is an opinionated 3d game DSL created in Ruby built on top of of http://ogre3d.org Ogre . Originally inspired by Ruby on
2005 May 14
3
julian
I have a problem wherein I need to convert back and forth from dates of the form "2000-04-11" to Julian dates. After some experimentation I found that > z <- strptime("2000-62",format="%Y-%j") > z gave me "2000-03-02" --- i.e. March 2 which is as it should be according to my (not too reliable) arithmetic. Going the other direction, more
2023 Feb 25
1
ssh host keys on cloned virtual machines
On Fri, Feb 24, 2023 at 10:01 AM Jochen Bern <Jochen.Bern at binect.de> wrote: > > On 24.02.23 12:58, Keine Eile wrote: > > does any one of you have a best practice on renewing ssh host keys on > > cloned machines? > > I have a customer who never thought about that, while cloning all VMs > > from one template. Now all machines have the exact same host key. >
2017 Feb 09
8
Checksums for git repo content?
Hi all, Since the vault for 7.3.1611 has been cleared out last sunday (20170207) - why is that? - I'm using git to download a "SRPM", or more accurately, its contents. However, using git has one major drawback: It is missing checksums for the files. Are there any plans to provide checksums for the files in git so I can be sure that what I download is actually not tampered with?
2023 Feb 25
1
ssh host keys on cloned virtual machines
On 2/25/23 07:50, Nico Kadel-Garcia wrote: > On Fri, Feb 24, 2023 at 10:01 AM Jochen Bern <Jochen.Bern at binect.de> wrote: >> >> On 24.02.23 12:58, Keine Eile wrote: >>> does any one of you have a best practice on renewing ssh host keys on >>> cloned machines? >>> I have a customer who never thought about that, while cloning all VMs >>>
2023 Feb 26
1
ssh host keys on cloned virtual machines
On Sat, Feb 25, 2023 at 12:14?PM Demi Marie Obenour <demiobenour at gmail.com> wrote: > > On 2/25/23 07:50, Nico Kadel-Garcia wrote: > > On Fri, Feb 24, 2023 at 10:01 AM Jochen Bern <Jochen.Bern at binect.de> wrote: > >> > >> On 24.02.23 12:58, Keine Eile wrote: > >>> does any one of you have a best practice on renewing ssh host keys on >
2017 Feb 23
0
Checksums for git repo content?
On 02/23/2017 03:32 PM, James Hogarth wrote: > On 23 February 2017 at 19:55, Lamar Owen <lowen at pari.edu> wrote: >> Not to stir up a hornets' nest, but how does Google's announcement at >> https://shattered.it affect this now? (Executive summary: Google has >> successfully produced two different PDF files that hash to the same SHA-1.) >> There is a whole
2003 Feb 18
4
Samba processes
Hi Am noticing smbd processes are running as root and occassionally I see a child process as userid Just curios under what circumstances the smbd runs as user id process ( unix id ) and running as root is a security risk? Thanks in advance -Abdul
2004 Apr 04
8
Can I give more bandwidth to a specific URL
Hi all, Can I give more bandwidth to a specific URL. Regards Abdul Khader __________________________________ Do you Yahoo!? Yahoo! Small Business $15K Web Design Giveaway http://promotions.yahoo.com/design_giveaway/ _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2009 May 06
4
subset data
Dear all, > data <- data.frame(id=seq(1:10),x=runif(10)) > data id x 1 1 0.3604464 2 2 0.4813987 3 3 0.0160058 4 4 0.7165909 5 5 0.6092248 6 6 0.2413049 7 7 0.7981568 8 8 0.6093960 9 9 0.2887064 10 10 0.3485780 > selected.id <- sample(data$id,3,replace=F) > selected.id [1] 9 7 1 I want to select data with corresponding selected.id, namely >
2009 Feb 11
7
Volume group "VolGroup00" not found
Hi, I am compiling Xen from source on FC9. On booting the Xen dom0 kernel it gives the following error: Volume group "VolGroup00" not found and ultimately the error that switchroot: mount failed: No such file or directory So my question is that why it fails to detect logical volumes? Thanks, Abdul Qadeer _______________________________________________ Xen-users mailing list
2012 Jun 07
3
[LLVMdev] How to use LLVM optimizations with clang
Thanks alot Chad for quick response. Does this means that, we can not use LLVM optimizations except O1, O2, O3, O4 and unroll-loops with clang? One more thing I would like to know that If I want to process multiple modules with opt at the same time like opt -adce *.bc then how is it possible with opt in one go, if I process all the bytecode files within Makefile. Thanks. Shahzad On Thu, Jun
2017 Feb 23
1
Checksums for git repo content?
On 02/23/2017 01:03 PM, Lamar Owen wrote: > On 02/23/2017 03:32 PM, James Hogarth wrote: >> On 23 February 2017 at 19:55, Lamar Owen <lowen at pari.edu> wrote: >>> Not to stir up a hornets' nest, but how does Google's announcement at >>> https://shattered.it affect this now? (Executive summary: Google has >>> successfully produced two different
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi Shahzad, > Is it possible that we can use LLVM optimization beside O1, O2, O3 > along with dragonegg plugin? sure, try this: gcc -fplugin=path/dragonegg.so ...other_options_here... -S -o - -fplugin-arg-dragonegg-emit-ir -fplugin-arg-dragonegg-llvm-ir-optimize=0 | opt -pass1 -pass2 ... Here -fplugin-arg-dragonegg-emit-ir tells it to output LLVM IR rather than target assembler.
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi Shahzad, > I tried your method and it works fine. What would be the next step to > produce the final executable? I have tried the following but it is > producing an error > > $ gcc -fplugin=/path/to/dragonegg.so -S *.c > -fplugin-arg-dragonegg-emit-ir | opt -adce this won't work because you aren't passing the IR to opt (you need -o - for that if using a pipe) and you
2002 Jul 31
8
Desktop.ini and samba - Please comment
I was just wondering why does samba look for Desktop.ini when i am mapping to my home directory from w2k running samba 2.2.5 on sol2.6 , client is w2k am troubleshooting an weird issue where am not able to see all my unix home directory files on w2k log level10 is showing me that samba is looking for Desktop.ini could this be cousing something weired. thanks in advance
2004 Dec 21
10
Codec Selection
Hi, I have 2 g729 licences - what I want to do is use g729 by default but if I get more than 2 calls at a time, use gsm for the others. So, I put this on all my sip providers: disallow=all allow=g729 allow=gsm However, this just seems to use gsm for everything. If I comment out the gsm line, it then uses g729. I thought it would use the codec's in the order they are allowed - is this
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
Hello I need some help here please. If we compile source files directly in to native code: $ clang -O3 -lm *.c then the runtime is like following real 0m2.807s user 0m2.784s sys 0m0.012s and If we emit LLVM bytcode and apply optimizations $ clang -O3 -c -emit-llvm *.c $ llvm-link *.o -o comb.ll $ time lli ./comb.ll then the runtime is real 0m2.671s user 0m2.640s sys 0m0.020s But, if I
2012 Jun 08
2
[LLVMdev] How to use LLVM optimizations with clang
Hi, > If I compile the program using the following command line i.e. > > $ clang -O3 -lm *.c this may be doing link time optimization. > > then > > $ time ./a.out > > real 0m2.606s > user 0m2.584s > sys 0m0.012s > > BUT, if I use all the optimizations enabled with -O3 but specify them > explicity i.e. you can just use "opt -O3"
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
Hi Yes, they both are exactly the same. Regards Shahzad On Tue, Jun 12, 2012 at 9:38 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi, is the comb.ll used here: > > >> $ time lli ./comb.ll >> >> then the runtime is >> >> real    0m2.671s >> user    0m2.640s >> sys     0m0.020s >> >> But, if I convert this same file comb,ll