Details
-
Skillshtml5, CSS...
-
LocationOman
Joined devRant on 7/6/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Hi,
I tried to install Visual Studio 2015 update 3 but I am getting below message.
Can someone please help. I did a Google search I could not find a fix for it.16 -
I see this is true.
I am learning software development I understand what the code does but the most difficult part is to think and think and think what code to implement and how you're going to code it to make the program work.6 -
Hi,
I've seen below code on a website for how to protect a folder with a password using notepad (notepad tricks)
I am seeking for advice if below code is correct. I mean by correct that nothing is wrong with the code/ some added characters which may cause harm to the computer / privacy.
May I ask which language is this?
cls
@ECHO OFF
title Folder Private
if EXIST "HTG Locker" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== PASSWORD_GOES_HERE goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
Thank you.3 -
Hi,
I would like to ask please
If you were given a project to work on and it has some business rules. How do you work with it?
The reason I am asking this is because I created an application in C#
I created an application in two different ways.
The first one worked correctly
But the second one I followed the business rules as specified in order
same project but I didn't get same results.
Is the order on how / what to code first is important?
If yes, how will I know which part has to be coded first.
Thank you.3 -
Hi,
Can I ask junior developers about their experience in web development when started.
I am learning web development and I came to know that normally when you start your web development career for small projects like creating software for departments,..etc you'll have to gather information yourself,...etc and implement but for larger projects you'll be given instructions by your manager on an email e.g. On how it should work.
As I experienced as well when learning you understand the concepts but when I come to practice and implement for different exercise / project I feel kind of difficult / different4 -
Hi Guys,
Any idea about sites or Apps for web development news and updates?
It's annoying when you're in web development field and feel like you're the last one / late to know about latest updates.2