• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

what is \\.. ..\\ ???

YouTube

Member
my programming professor asked us what is \\.. ..\\ ?? we're like WTF! anybody know what it is?? it's for 5 extra credit pts man!! please help

Thanks

😀
 
It's an undocumented tweak in assembly code that generally provides a 17% speed increase on certain archaic chipsets.
 
thanks ppl... a lil more details please?? moving between directories in parent directory or?? and what programming language is it? Perl? :Q
 
Well speaking genererally of programming, that is going to output to "\.. ..\" because the \\ will be interpreted as a single \ because it's being escaped.

not sure what \.. ..\ actually does, but I know I've seen some weird stuff before in my settings of visual studio and the directories that looks something similar to that syntax. maybe I'm thinking of \..\..\..\ which would just mean their are 3 directories between the beginning and end of the path.
 
Does look a bit like, but not exacly like, directory traversal. You sure you got it right?

Its not necessarily any programming language btw. If you want to move down a directory you would do 'cd ../', or down 2 directories, 'cd ../../'
 
Originally posted by: Atheus
Does look a bit like, but not exacly like, directory traversal. You sure you got it right?

Its not necessarily any programming language btw. If you want to move down a directory you would do 'cd ../', or down 2 directories, 'cd ../../'

Wouldn't that be moving up? Or just using different semantics?
 
Originally posted by: txrandom
Originally posted by: Atheus
Does look a bit like, but not exacly like, directory traversal. You sure you got it right?

Its not necessarily any programming language btw. If you want to move down a directory you would do 'cd ../', or down 2 directories, 'cd ../../'

Wouldn't that be moving up? Or just using different semantics?

Up then, if up is 'backward'...

OP: we really mean 'toward the root directory'.
 
Originally posted by: Atheus
Originally posted by: txrandom
Originally posted by: Atheus
Does look a bit like, but not exacly like, directory traversal. You sure you got it right?

Its not necessarily any programming language btw. If you want to move down a directory you would do 'cd ../', or down 2 directories, 'cd ../../'

Wouldn't that be moving up? Or just using different semantics?

Up then, if up is 'backward'...

OP: we really mean 'toward the root directory'.

Yah toward the root. I'm picturing this from a tree structure. But since the top of the tree is the root, moving up the tree would be towards the leaves and moving down the tree would be towards the root. WHICH IS IT!?! 🙂
 
Back
Top