Jump to content

Fresh meat for the grinder

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
10 replies to this topic

#1
Froberg

Froberg

    Newbie

  • Members
  • Pip
  • 7 posts
Hey all.
The welcome message said to check by here, so I did.

I'm studying to become an IT professional, with focus on hardware and networking..

That's it really.

Looks like a cool place ya got here.

#2
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
Welcome to CodeCall, Froberg!

#3
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Welcome to the forum, Froberg! If you need anything don't hesitate to ask.

#4
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
Welcome to CC, Froberg! Do you know any programming languages?
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#5
Froberg

Froberg

    Newbie

  • Members
  • Pip
  • 7 posts
At this point? No.

We're messing around in MSDOS at the moment, which is what I've signed up to get help with.

I believe we're going to get some basic C++ programming on the second semester, which I'm looking forward to.

Hopefully it'll be interesting.

In my spare time, I mess around with php at a very novice level =)

#6
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
Nice. :)
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#7
John

John

    Writes binary right handed and hex left handed

  • Moderators
  • 6,321 posts
Hello Froberg, Welcome to CodeCall!

#8
Froberg

Froberg

    Newbie

  • Members
  • Pip
  • 7 posts
Thanks.

#9
Froberg

Froberg

    Newbie

  • Members
  • Pip
  • 7 posts
As promised;

To create directories I found this solution:


@echo off



set v1=1

set v2=0

set v3=1


:start


if %1==[] goto end

md C:\Data\uroprojekt\hellebabs\%1

echo %1>>folderlog.txt

echo %v3%, %1 >> C:\Data\uroprojekt\hellebabs\%1\%1.txt


set /A v3=v1+v3


shift

goto start

:end

--

To delete all subdirs within a directory and leave other files intact:

@echo off

for /f 'tokens=* delims=' %%i in ('dir /b /a:d') do (

    rd '%%i' /s /q

    )

:)

#10
mr.swartz

mr.swartz

    Newbie

  • Members
  • PipPip
  • 15 posts
welcome to codecall! enjoy your stay & have fun! :)

#11
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Welcome to CodeCall.