search for: taught

Displaying 20 results from an estimated 1030 matches for "taught".

Did you mean: caught
2006 Feb 24
6
[JOB] at yakimaherald.com
Friends- I have taken a new job and will be moving at the end of March. The newspaper I currently work for is looking for someone to take my place. I have really enjoyed working here. It is a great environment with very nice people to work with. And the best part is you get to develop in Ruby and Rails, for everything! The paper is willing to accept applications from people who would
2009 Oct 13
0
Free Introductory R Course Taught Over the Web
Free Introductory R Course Taught Over the Web The course is designed for natural resource managers and is open to all who are interested without charge. Audio of the presentations is available either using your computer speakers and optional microphone or headset or by calling a phone bridge long distance. Live video of the pr...
2003 Feb 14
1
linux newbie classes taught by Chris de Vidal
In one of your replies to the attention newbies... series, you mentioned you teach a linux newbie class. I'm interested (seriously, or sarcasm) in checking out one of your seminars. Where do I get information? Brad Peters brad@bepeters.com __________________________________________________ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com
2012 Aug 01
0
Upcoming workshop on R, taught by John Fox in Berkeley, CA
There are still some seats available in the workshop on R that John Fox will be teaching next week in Berkeley, CA. The workshop title is "The R Statistical Computing Environment: The Basics and Beyond." It will run from Monday, August 6 through Thursday, August 9 (9:00 a.m. through 5:00 p.m. each day). This workshop is offered as part of the Inter-university Consortium for
2008 Feb 11
8
Using R in a university course: dealing with proposal comments
...all at least a formal first level introduction to quantitative methods in health sciences and following completion of the course, they are all expected to either evaluate, interpret, or conduct primary research studies in health. The course would be delivered over 5 months, and R was proposed to be taught as several laboratory based hands-on sessions along with required readings within the coursework. The course proposal went to a few colleagues in the university for review. I received review feedbacks from them; two of them commented about inclusion of R in the proposal. In quoting parts these ma...
2016 Mar 11
7
Any objections to re-sorting #include lines with clang-format/clang-tidy?
The crazy clang-format folks have taught it to sort includes, and clang-tidy has a nice way to run it across all of LLVM and Clang. Before I just submit the fixes (and any bug reports to the clang-format folks if it sorts things weirdly) I wanted to double check that folks would be ok with this. My understanding is that the sorting shoul...
2019 Jan 26
2
Different SelectionDAGs for same CPU
Hi Tim, >That C++ function is probably what looks for an FrameIndex node and >has been taught that it can be folded into the load. How do you teach a function that a node can be folded into an instruction? ________________________________ From: Tim Northover <t.p.northover at gmail.com> Sent: Monday, January 21, 2019 11:52 PM To: Josh Sharp Cc: via llvm-dev Subject: Re: [llvm-dev] D...
2017 Apr 12
5
humor (was Re: OT: systemd Poll)
...t;> >> When Windows 2000 came out some called it "bloated pig". Some 6 years down >> the road Linux started catching up ;-) Then we stopped laughing about >> Windows. >> > > All in the name of progress.. I have been told that Windows developers were taught not to optimize their code for memory/cpu/etc since those could be solved by throwing more hardware at it. Instead they should make clean readable code. Not claiming that is exclusive to Windows or the clean readable part is followed... > _______________________________________________ > Cen...
2005 Dec 30
6
Rails in High School Curriculum?
Hi folks, I''m working with a local high school in the Portland, OR area on the subject of computer science curriculum. We are thinking of introducing a class in web development and I think Rails would be a perfect vehicle. I''ve done some searching on the web but haven''t found any suggestion of HS curriculum for Rails. Any pointers or suggestions? Thanks, ---
2014 Sep 12
3
ntpd in VM
I was taught in kitty school that running a ntp server in a vm was a bad idea. Is that still the case?
2011 Jun 12
2
[LLVMdev] struct passing on X86-64
...ume that neither of those are good choices for solving my problem because the ABI matches the default with only a few special cases. We could add ABI notes to the llvm::Function which specify that parameter 3 is an arm-abi-name "foo-style-passing", and the ARM backend would have to be taught how to handle that. (It would also be nice if TargetData could tell you whether a given ABI note applies to your current target.) What's nice about this is that separates the concerns of lowering the IR and the workings of the ABI. What's not so hot is that now we'll have to standa...
2010 Sep 17
5
should vsftpd be disabled in favour of sftp for security reasons?
(another in an ongoing list of things i just want to clarify for the sake of future courses taught on centos.) from this RHEL doc page: http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Deployment_Guide/s1-openssh-server-config.html the reader is advised to, for the sake of security, remove/disable vsftpd, ostensibly in favour of sftp/sftp-server. really? i can obviously...
2011 Jun 14
0
[LLVMdev] struct passing on X86-64
...ycky <nicholas at mxc.ca> writes: > Why should the backends know about the frontend language? It seems > sensible to me that if I create a new language and a new ABI for my > language then I can expect to need to teach the backend about my new > ABI. And so the backend has to be taught about the language. To me, it is about conveying the necessary information in a more portable way so the mapping code only has to be written once. > with only a few special cases. We could add ABI notes to the > llvm::Function which specify that parameter 3 is an arm-abi-name > "foo...
2014 Sep 09
2
[LLVMdev] Can't build against LLVM-3.5 with CMake: CMakeExports.cmake broken?
On 09/09/2014 10:12 AM, Dan Liew wrote: > because my Linux distribution just upgraded to LLVM/Clang 3.5 and I > noticed that trying use find_package(LLVM ...) was broken :( AFAIK, that never worked in any version of LLVM not built by CMake before. That's why we taught cmake/modules/Makefile to generate LLVMConfig.cmake and LLVMExports.cmake. > What is happening is that none of the libraries are being added into > LLVMExports.cmake file when it is generated by ``cmake/modules/Makefile``. [snip] > One way to "fix" this is make sure LLVMConfigLi...
2015 Sep 04
2
RFC: Reducing Instr PGO size overhead
...ally > prefer to keep the existing behavior as the default (see below), and have > MD5(key) as an option. The problem is that this requires profile format changes. It will be very messy to support multiple formats in instr-codegen and instr-runtime. For compatibility concerns, the reader is taught to support previous format, but the changes there are isolated (also expected to be removed in the future). > > My primary concern is that if the function name are not kept at all stages, > then it becomes difficult to analyze the profile data in a standalone way. > Many times, I have...
2011 Jun 15
1
[LLVMdev] struct passing on X86-64
...; writes: > >> Why should the backends know about the frontend language? It seems >> sensible to me that if I create a new language and a new ABI for my >> language then I can expect to need to teach the backend about my new >> ABI. > > And so the backend has to be taught about the language. Only if that's what the ABI says. If my hypothetical ABI says that in a Z-context, the CR6 register controls whether floating point values are passed in registers or in memory, then the ABI-note says whether we're in a Z-context or not. To me, it is > about co...
2006 Jan 05
8
Repost - Do dynamic finders work with legacy schemas?
Hello everyone, I have another question related to a legacy schema I am working with. Do dynamic finders work with legacy schemas in general? The schema I am working with uses hungarian prefixes for column names. For example fOpen is 0 if a bug is closed and 1 if it is open (type smallint). When I try @bugs = Bug.find_all_by_fOpen(1), I get the following exception: undefined method
2011 Sep 10
2
[LLVMdev] readnone
Nick Lewycky wrote: > I was sure that I remember "opt -functionattrs" being taught to do this, > but I just tried it out and it doesn't. This is a missed optz'n > opportunity, testcase: > > @x = constant i32 0 > define void @foo() { > load i32* @x > ret void > } > > is only marked readonly when it should be readnone. C...
2019 Oct 15
2
nouveau kernel module will not load on old Sony Vaio laptop with 8400M GT
is there anyone here who can help with: https://bugs.freedesktop.org/show_bug.cgi?id=111853 nouveau kernel module won't load (not available) on Sony laptop with NVIDIA G86M [GeForce 8400M GT] ID: 10de:0426 ??? -- Evolution as taught in public schools is religion, not science. Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/
2006 May 09
2
[Prototype] Why doesn''t calling submit() on a form result in the execution of the onsubmit event handler?
Hi, Is it normal that a call to $(''some_form'').submit() doesn''t result in the execution of an onsubmit event handler on ''some_form''? Thanks, - Rowan -- Morality is usually taught by the immoral. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060509/685db992/attachment.html