search for: gnarly

Displaying 20 results from an estimated 72 matches for "gnarly".

2007 Jun 20
0
gnarly permission issue using fcgi
deploying a Rails app for the first time on a mediatemple (dv) server using capistrano and fcgi everything looks OK but when I go to access the app, I get 500 errors with things like /usr/lib/ruby/1.8/fileutils.rb:1246:in `initialize'': Permission denied - /var/www/vhosts/xxxxxxx.com/app/current/public/../config/../public/stylesheets/dhtml_calendar/demo.css (Errno::EACCES) these
2007 Jul 16
3
NIS problems after installation
...nis server and all of these were successful. so, I also: * run ypserv (on the server) and ypbind (on the server) both in debug mode and gotten no errors * run ypserv (on the server) and ypbind (on the CLIENT) both in debug mode and gotten no errors any help with this really gnarly bug would be greatly appreciated! steve -- Steve Strong Math and Computer Science Washington High School 2205 Forest Dr. SE Cedar Rapids, IA 52403 http://crwash.org mailto:strong at crwash.org
2024 Sep 25
1
Add samba AD DC to a Windows 2008 R2 domain
...DC. I can either get a cheap W2k8 license from amazon, or set up a samba DC. Running a "samba only" domain is not an option. Not my call.... When reading https://wiki.samba.org/index.php/Joining_a_Windows_Server_2008_/_2008_R2_DC_to_a_Samba_AD I see that "There be dragons!" How gnarly would these dragons be? Any advice? If it's feasible, some details where I could use some advice: 1) internal_DNS or bind9? 2) dhcp dns_update would work? I don't see why it shouldn't but still... 3) dhcp load balancing would work? I guess not. 4) Anything else you guys can think of......
2010 Jan 19
0
[LLVMdev] Can I port LLVM as a source-to-source compiler?
...; > Thanks in advance. > > Junchao Zhang > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > LLVM can be made to output (horribly gnarly and non-portable) C code. However, I haven't tried it and I'm not sure what state that functionality is in.
2015 Mar 24
5
can't do a yum install of apache C7
Hey all, I'm logged into a CentOS 7 box and trying to install apache. Not having any luck, as it's not being found. Which is odd, because I have the right repos enabled: [root at hadoop1:/etc/yum.repos.d] #cat /etc/redhat-release Red Hat Enterprise Linux Server release 7.0 (Maipo) [root at hadoop1:/etc/yum.repos.d] #yum repolist Loaded plugins: amazon-id, rhui-lb repo id
2024 Sep 25
1
Add samba AD DC to a Windows 2008 R2 domain
...license > from amazon, or set up a samba DC. Running a "samba only" domain is not an > option. Not my call.... > > When reading > https://wiki.samba.org/index.php/Joining_a_Windows_Server_2008_/_2008_R2_DC_to_a_Samba_AD > I see that "There be dragons!" > How gnarly would these dragons be? Any advice? > > If it's feasible, some details where I could use some advice: > 1) internal_DNS or bind9? > 2) dhcp dns_update would work? I don't see why it shouldn't but still... > 3) dhcp load balancing would work? I guess not. > 4) Anything...
2010 Jan 18
3
The role of self and :: within a method of a model
Hey all, I understand that a def self.abc, for example, is a class method, which allows you to call its contents by just referencing model.abc (rather than model.new.abc). However, what is its role when located in a method inside a model like in the code below. Also in the code below, you see :: located in the method. Isn''t that used for modules and namespaces? If so, why is it located
2010 Jan 19
4
[LLVMdev] Can I port LLVM as a source-to-source compiler?
Hello, I am working in a project on a parallel programming language. I want to base our language on Java or C/C++. But Java is preferred. Many similar projects adopts a source-to-source methodology, e.g., Berkeley UPC(using Open64), Titanium, and Rice University's Co-array Fortran. They output C code with calls to the runtime. I think there are at least three reasons: 1) using C as the
2012 Oct 30
2
[LLVMdev] Status of YAML IO?
Michael, To validate the refactor of YAML Reader/Writer using YAML I/O. I updated all the test cases to be compatible with YAML I/O. One issue that was a gnarly was how to handle the test cases with archives. Currently, we have test cases like: --- atoms: - name: foo # more stuff --- archive: - name bar.o atoms: - name: bar # more stuff This sort of weak/dynamic typing is hard to using with YAML I/O which enforces stro...
2014 Apr 25
2
[LLVMdev] Proposal: add intrinsics for safe division
...branches as on x86. So, it seems that for JavaScript and Java on ARM - and probably any environment with emulated division, these intrinsics would result in tighter code without requiring target intrinsics.  For all other language/hardware combinations, the main benefit here is to materialize the gnarly control flow later and so hopefully reveal more optimization opportunities.  That seems like a pretty good sweet-spot for the systems that I know about. -Filip -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachment...
2015 Jul 29
7
[LLVMdev] [RFC] Road map for CMake
...doing things. So... what's next? With PR14109 and PR21562 done Apple will be able to migrate off autoconf, and there will only be a few currently identified issues preventing CMake from replacing autoconf. Tackling the remaining issues should be fairly straight forward as none of them are too gnarly. Moving beyond this all I have some ideas for improving our CMake scripts to make developers more productive, and I have some ideas for improvements that we could get by working with the CMake community. For example, I want our CMake build system to have convenience targets for things that we curr...
2006 Jan 10
8
tc filter add ... fw returns RTNETLINK answers: Invalid argument
When I run this: tc filter add dev eth0 parent 1: protocol ip prio 1 handle 1 fw I get: RTNETLINK answers: Invalid argument The traditional interpretation of that gnarly error message is that cls_fw is missing, but lsmod | grep cls_fw gets me: cls_fw 2336 4 (autoclean) I can''t remove it because it''s in use, but all 4 statements that use it failed, so I''m really stumped. This is what happens in begining of the traf...
2004 Apr 07
2
Requiring multiple auth mechanisms
...tion mechanisms in openssh. So I wrote an implemention. I thought at first I should change the PasswordAuthentication, PubkeyAuthentication, etc. keywords to allow no/yes/required. But there's some funky stuff in auth2.c with respect to keyboard interactive auth that would make this kind of gnarly, semantics-wise. I also thought about providing a new keyword to specify a list of required authentication mechanisms. But then you have to make sure those mechanisms are also enabled, and it's easy to write conflicting configurations. In addition, if a list of required auth mechs is given,...
2012 Oct 30
0
[LLVMdev] Status of YAML IO?
...ou planning to support dwarf information too ? Thanks Shankar Easwaran On 10/29/2012 9:26 PM, Nick Kledzik wrote: > Michael, > > To validate the refactor of YAML Reader/Writer using YAML I/O. I > updated all the test cases to be compatible with YAML I/O. One issue > that was a gnarly was how to handle the test cases with archives. > Currently, we have test cases like: > > --- > atoms: > - name: foo > # more stuff > --- > archive: > - name bar.o > atoms: > - name: bar > # more stuff > > > This sort of weak...
2013 Jul 18
0
[LLVMdev] Proposal: function prefix data
...it would be better to steganographically encode the value inside the instruction stream? On x86 you could use 48b8<imm64> which only has 2 bytes overhead for an i64 (putting a move like that, which moves into a caller-saved register on entry, would effectively be a noop). This is some pretty gnarly target-dependent stuff which seems like it would best be hidden in the backend (e.g. architectures that have "constant island"-like passes might want to stash the data in there instead). -- Sean Silva -------------- next part -------------- An HTML attachment was scrubbed... URL: <htt...
2015 Mar 24
0
can't do a yum install of apache C7
...httpd > Loaded plugins: amazon-id, rhui-lb > No package httpd available. > Error: Nothing to do its in the EL7 Base (and Updates) repositories, which seem to be disabled on your system. btw, I would NOT enable REMI, RPMFORGE *and* EPEL at the same time unless you want to get into some gnarly package conflicts. I don't even know what webtatic is... [root at c7test1 ~]# yum install httpd Loaded plugins: fastestmirror base | 3.6 kB 00:00:00 epel/x86_64/metalink | 14 kB 00:00:00 epel | 4.4 kB 00:00:00 extras | 3.4 kB 00:00:00 updates | 3.4 kB 00:00:00 (1/2): epel/x86_64/p...
2016 Oct 01
0
A few new packages on CRAN
- ndjdon : Wicked Fast ndjson Reader Reads in ndjson significantly faster than jsonlite::stream_in(), flattens each JSON record and returns a data.table. https://cran.r-project.org/web/packages/ndjson/index.html - htmltidy : Clean Up or Pretty Print Gnarly HTML and XHTML C-backed package that includes the HTML Tidy library. Useful for cleaning up HTML beyond what you get with the HTML parsing in the libxml2-based packages. https://cran.r-project.org/web/packages/htmltidy/index.html (v0.3.0 on github is a tad more robust and will be in CRAN...
2016 Oct 01
0
A few new packages on CRAN
- ndjdon : Wicked Fast ndjson Reader Reads in ndjson significantly faster than jsonlite::stream_in(), flattens each JSON record and returns a data.table. https://cran.r-project.org/web/packages/ndjson/index.html - htmltidy : Clean Up or Pretty Print Gnarly HTML and XHTML C-backed package that includes the HTML Tidy library. Useful for cleaning up HTML beyond what you get with the HTML parsing in the libxml2-based packages. https://cran.r-project.org/web/packages/htmltidy/index.html (v0.3.0 on github is a tad more robust and will be in CRAN...
2007 Mar 20
1
The perfect Courier -> Dovecot conversion tool
I've tested this only with a test user. http://dovecot.org/tools/courier-dovecot-migrate.pl http://wiki.dovecot.org/Migration/Courier # Migrate Courier IMAP (any version) and Courier POP3 (v0.43+) to Dovecot v1.0 # by Timo Sirainen. This is public domain. # Usage: [--quiet] [--convert] [--overwrite] [--recursive] [<conversion path>] # --quiet: Print only errors # --convert: Do
2010 Oct 28
2
Can you POP a specific folder in Dovecot?
Hi all, I am in the middle of migrating from an old, Windows based mailserver, and have run into a small challenge I hope someone here can help me with. In my old setup, a user could have folders on the server, and by using his login with the mailbox appended, could pop a given folder specifically. For instance, logging in with user at example.com would pop INBOX, and logging in with