@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36



Comments:

<0> that would be hard
<1> na tell them it's new from M$ they will pay you to do it...
<2> there isn't going to be a way to make sure everyone follows your rules.
<2> not when you don't have personal contact and can't look them in the eyes
<1> kill 'em all and let God sort 'em out.
<2> all you can really do is set up some image verifcation, so a bot can't register 100million accounts
<2> and for log in
<1> nuke 'em till they glow, and shoot 'em at night....
<1> oh. sorry.
<0> image verifcation, still lets more then 1 email for the same person
<3> good evening everyone
<1> runes
<2> ShawnRisk: but it will make them do it by hand, not with a bot/scipt
<4> these speaks to my heart: http://www.infoworld.com/article/06/06/14/79274_HNhateaboutwebsites_1.html?source=rss&amp;url=www.infoworld.com/article/06/06/14/79274_HNhateaboutwebsites_1.html
<1> yeah most people wont do that by hand more than 30/40 times.... in a day.



<1> PeterFA ever hear of tiny url ?
<2> Like I said, there won't be a way to make sure you get only one person, without asking for personal info, this depending on your site, will be hard to verify and hard to enforce also, but if its a store, you can limit it one per shipping address
<5> what would be an easy way to replace all LF(linefeed) from a file with | (pipe)?
<2> That will rely on you only shipping to addresses that are verifiable to a billing address on a CC
<1> keleus sed
<4> intelikey, what's that?
<5> intelikey, ok, regexp makes my brain hurt (what would the regex matching a linefeed be? and would \| work for pipe in the same manner?
<1> \n
<6> \\n
<6> erm \n ye
<5> huh?
<6> \n == newline
<1> echo -e " \n \n \n "
<6> \r\n == newline, windows-style
<5> so "sed s/\n/\| file" would do it?
<1> keleus quote that. sed 's/\n//g' file
<5> basically ive got a badwords file with an LF seperated list of foul language, and im trying to put that in the censor list on a PHP forum (that wants them seperated with |)
<5> intelikey, /g or \g (/g doesn't seem to make sense with what little l know)
<1> for this in `cat file` ;do echo -e "$this \c" > file ;done
<1> keleus / in the sed line.
<1> keleus man sed or even info sed
<5> so "sed 's/\n/\g' file"
<1> that ^ will error out
<5> intelikey, its not the sed man page thats the issue, its that i don't know (and partially am afraid to try to learn) regexp
<5> and info sed is exactly the same as man sed
<5> in my case
<5> whoops nevermind
<1> but last time i looked info sed had examples....
<5> found an exception! (for some reason man COMMAND and info COMMAND have always launched man)
<0> going to bed cya later
<1> ShawnRisk g'night
<5> so run "sed 's/\n//g' file" (withought the "s)?
<1> keleus try the for statement i mentioned. ^
<5> whats $this
<1> that would be a veriable
<5> i knew that, but what is it (or what should it be?) i dont see a decleration...
<1> you don't ?
<5> no
<1> for DECLARED in `cat file` ;do echo -e "$DECLARED \c" > file ;done
<5> ah!
<5> that erased all but the last line
<5> and did nothing with |
<5> ... now i gota go find the contents to include again :)
<1> for DECLARED in `cat file1` ;do echo -e "$DECLARED \c" ;done | "put your own plumming here.
<5> intelikey, er, i mean nothing as far as replacing all linefeeds with a | char
<1> keleus oh you want the pipe symbol in place of each \n ? ok.
<5> sorry, i wasn't clear
<5> yes
<1> for DECLARED in `cat file1` ;do echo -e "$DECLARED\|\c" ;done > file2
<5> that did it.
<1> i should have specified file1 and file2 eariler... oh hehhe
<5> whats \c do?
<1> continue i.e. no new line.
<1> man echo
<5> ah
<5> i thought it was an escape code
<1> it is. like \t \r \n \c ....
<1> you can play with echo -e " 1 \t 2 \n 3 \c " and see what they do.
<5> thanks intelikey
<1> anytime.
<5> and how would you recommend learning regex?



<5> wait...
<5> that command you gave me put \| in place :) but easy enough to fix with a text editor....
<1> start writing bash scripts ??? well that's one way.
<1> hmmm yeah didn't need escaped... do this
<1> for DECLARED in `cat file1` ;do echo -e "$DECLARED|\c" ;done > file2
<1> that will remove the \ 's
<1> of course starting with the origenal again.
<5> ah, didnt need to be escaped because it was in quotes?
<1> yep.
<1> i blurt out code, some of it works some of it may blank your hard drive.... but the help is free and you get what you pay for....
<7> i'm trying to boot a kernel using initrd
<7> syslinux
<7> do i pretty much need the kernel to be with the correct filename or just prefix?
<7> instead of vmlinuz
<7> can it be vmlinuz-blah-blah
<7> it gives me the boot:
<1> if the kernel is somefilenameyoulike then boot somefilenameyoulike
<7> does it find prefixes
<7> or does it have to be the exact name?
<1> exact
<1> try tab key
<1> iirc path can be relative though
<8> hey i got me google ads working, can anybody please click on them, it would be very much appreacited! http://pcjustice.com/leet
<7> i just redid the config
<7> heh
<1> best to always use full path and exact name on things like that... imo
<7> seems like syslinux doesn't support
<7> names long like
<7> kernel-2.6.22-blah-blah
<1> tldp.org search for syslinux came up empty...
<1> chron not on msdos fs it wont, it's the fs not syslinux i.e. M$-DOS = 8.3 naming convention. and that means kernel-2.6.22-blah-blah is probably read as kernel~1.2
<1> ie full name as seen on the fs it's on.
<7> i'm using vfat
<1> chron what boots ?
<7> it's booting the usb fine
<7> i just need it to decrypt the remainder of the harddrive
<1> chron mmm are you starting another os and then calling syslinux ?
<1> or is BIOS calling it ?
<7> BIOS is calling it on the USB
<7> RAMDISK: Compressed image found at block 0
<1> reson i asked. if it's not loading under a running os then it's not actually vfat per'se still 8.3 M$-DOS
<2> syslinux is in isolinux, its the boot img
<7> VFS: MOunted root (minix filesystem) readonly.
<7> Freeing unused kernel memory:216k freed
<7> Mounting /dev/sda as /lib failed
<7> Shutdown: hdb
<7> Shutdown: hda
<7> System halted.
<7> usb 1-3:USB disconnect, address 4
<7> that's how it gets pwned
<7> why would it mount the usb /dev/sda as /lib
<7> it loads the kernel and thats the last few messages i get
<1> sda ?
<1> full disk fs ?
<9> can anyone give me a suggestion on which distro to try for a dedicated server, the server will be used for various services such as RADIUS, maybe samba shares, etc
<1> i haven't played with syslinux in a while... i'll hunt up a floppy with that on it.
<7> yea
<7> fulldisk
<2> warrior520: the decision comes down to what package manager and instllation method do you want to deal with.
<1> warrior520 debian sarge maybe
<9> I want a lightweight distro, but hopefully something not too cryptic.. and maybe some good package management, although its not that important... I was thinking about either Slackware or OpenBSD for security, but neither of them have good package management
<2> warrior520: distrowatch.com and find the oen that suits you
<9> AFAIK at least
<1> and how solid ^
<2> solid is a mute point if you configure it properaly ;)
<9> well yeah, thats why I was asking here... and gufymike, although I appreciate any help, of course I know about distrowatch
<2> warrior520: thinng is thats a loaded question really can start a flame war (and has)
<9> well I am aware of that, but so can any question about what distro to use...
<2> anyways, I do suggest redhat, for a few reasons, mainly the package management, the ease of configuration, the documentation for it...
<1> gufymike not if the installed package is coded yesterday and tomarrow they find exploits all in it....
<1> you can get untested if you want.
<9> im not attempting to say or even ask for a "better" distro, just one that I can try that I will be most likely to stick with long enough to learn it
<2> I wouldn't touch debian proper intelikey for the reasons you state, stable is ancient, unstable is untested...
<1> warrior520 anything you can install and setup you can stick with.


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #linux
or
Go to some related logs:

install ViewVC Debian
FSLib.h fedora
#math
dovecot +loops back to myself
uid roodn restrict
gentoo sb16 isa
apt-get libmikmod
#mysql
Undefined symbol PyGILState_Ensure
grub ubuntu server dapper savedefault error



Home  |  disclaimer  |  contact  |  submit quotes