- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 13
- Posts with Upvotes
- 13
- Upvoting Members
- 11
- Downvotes Received
- 18
- Posts with Downvotes
- 7
- Downvoting Members
- 15
- Interests
- Animation & Graphic Design
223 Posted Topics
Re: I don't believe this crap, violent games are not good for kids; potato chips and soft drinks are healthy as well, did you believe that ? Wild orgies on the street will reduce birth rates to help governments, do you believe that ? | |
mklink can be run from any command path, therefore I'm trying to run mklink though runas by means of runas /noprofile /users:AdminUser mklink but I can get error that The system cannot find the file specified ? How can I tell runas to run the command mklink as I would … | |
Re: What kind of USB stick ? | |
Re: How is the creators update ? They claim it's faster then previous Windows; even on aging computers. I've yet to update. | |
I'm hoping someone can help. For a long time I've been having the computer randomly restart or freeze; especially when backing up my computer to a network drive the computer freezes. I was informed it was the PSU; and so as of recently I replaced it with a brand new … | |
Where or can someone help me on using Visual Studio Code; as I installed a Python extension and I can't get the console / debugger to show the results of the code ? | |
I'm having difficulty using Robocopy. There are two things to which I want to do with Robocopy and I'm unsure whether it is possible. First create a symbolic link which links the source to the new target and second exclude a sub-folder from the source from being included in the … | |
I need some help why can't I create an instance of the child class without an error ? class tv(): def _init__(self,color,screen,frame): self.color=color self.screen = screen self.frame = frame def DesOfTV(self): info = "The TV has a"+self.color+"and a"+self.screen+"screen" return info class retroTV(tv): def __init__(self,color,screen,frame): super().__init__(color,screen,frame) oldertV = retroTV("black","tuber","wood") | |
If the user enters only one character, I want it to prompt for the name again; otherwise print the persons name in ASCII. Instead what is happening is it's printing the name depending on how many characters are in the name ? nameAsk = raw_input("What is your name?") for name … | |
I have a folder in one of my partitions with this name; 6a004149b189707931f3b5 Windows won't let me delete this folder as it claims I need permission from **Network Service**; what is this folder ? | |
I'm attempting to mask out the circles with the gearMiddle, it is as straight forward as, what you want to mask out, you make black, what you want to keep you make white (punch out effect). How do I keep what is white to which I want to keep, visible; … | |
Re: After years of not upgrading my goal is 10 or 18 - core system :) | |
I've had this networking problem for a while and it's interfearing with another networking problem. I can share a folder on Computer(A) running Windows10 and have Computer(B) running Windows10 access the shared folder; although I can't share a folder on Computer(B) and have Computer(A) access the shared folder, or any … | |
If all computers are on a network sharing the same network name. The only group or userName I can assign to the network is; everyone. How can I give each computer it's own unique name that is only specific within the Share permissions for a Group or Username ? | |
I can't recall who on this forum supplied me with [this](https://youtu.be/hQVTIJBZook) video; it was a great video a little humerous at times and I agree with alot of what Crockford said at the end, although It surfaced a few questions. Is strict mode still relevent today I'd prefer it over … | |
For clairifying you can add a string to a variable then add other variables as such; var one = "test", super,apple,pear,cardboard The string "test" will be assigned to the variable one as well; super, apple, pear, cardboard will also be created variables ? | |
I was informed the if-statement is incorrect. I can't find the syntax error ? var curDoc = app.activeDocument; var selall = app.executeMenuCommand("selectall"); var fillrmv = curDoc.pathItems[0].filled = false; if (app.activeDocument.pathItems[0].filled = true) { for (i=0;i>fillrmv;i++) { curDoc.pathItems[0].filled = false; }; }; | |
Has anyone used the Stylish extension for FireFox ? I can't get a style to effect an absolute URL and any and all pages within a absolute URL ? | |
Re: Robert has been very helpful to myself. I can't thank him enough for helping me or giving me clues to problems. Thanks Robert and Congratulations. | |
What does it mean when you get the error; Illegal use of the resevered word; else. if(); { alert(); } else { alert(); }; | |
Most of us know how Symbolic links work, they point to another file or folder on the system. Symbolic links don't work with network folders. You can create a symbolic link on a networked folder to point to a local drive. The result is you point the local folder to … | |
I want to create a symbolic link betwee a folder on a network and a folder on the local drive using the following command; > mklink /d "\\<networkName>\<folderA>\<folderB>" "C:\<folderA>\<folderB>\<folderC>" I get the error; The file or directory is not a reparse point. I did some searching online and didn't find … | |
I've tried everything, including running bootrec numerous times and I can't boot into Windows10. It started when I came home and noticed Windows was informing me I was missing my boot master. Everything was working wonderfully yesterday, what happened I have not a clue. Using Windows10 installation disc I was … | |
I was able to produce what I want using Adobe Animate. I want to reduce the amount of [code](http://codepen.io/Sheep/pen/VPPyOJ), as Animate inserts extra code that from my perspective seems useless ? | |
How can I take a path such as what you see below and have Javascript make a visible circle or dot based on the path class ? As well output the points based on a canvas coordinates, canvas name being irrelevent, I hope ? ;-) <path class="st0" d="M73.3,73.1"/> | |
How do you access a variable inside a function without placing the variable inside of the function in Javascript ? | |
I'm attempting to print a variable print(<variableName>) but I get an error it's not a; function ? I searched online and all I could find is that; it's not a function so how can I fix this; I don't know another command. | |
I'm getting a mising **).** error with a condition if (i=0;i<5;i++) ? | |
I'm unfamilar on how to install the Python [SIP](https://riverbankcomputing.com/software/sip/download) module for compiling C code ? | |
I've begin to use Paper.js. The first problem I've run into is finding a [CDN](https://cdnjs.com/libraries/paper.js/) that works with JsFiddle, CodePen etc. In my case CodePen; the CDN for which I've found work to a degree what I mean is, I can create a rectangle in a variable, then using the … ![]() | |
I have a problem with OneDrive. I have a junction which points to another folder on the same drive as the junction; the problem is the junction is taking up space. I want to remove the junction but keep the original folder location but yet still have OneDrive sync the … | |
I'm creating a pseudo type script at the moment using a well known programs API which uses JS. When the user is prompted and enters in a name since the API uses ECMA 3.0 I cannot directly use String.Prototype.Trim() as it's not supported in ECMA 3.0. I have a prompt … | |
I'm looking for a cloud based storage of up to 150 gigs / month that allows scripting and to sync from a network drive; I'm hoping someone can offer some suggestions as I've spent quite a bit of time searching & most packages are 500 gigs or 1TB /month which … | |
Re: It works Dani, thank you. You can go to sleep ;-) | |
Within my email client I had a hotmail.com account setup as a POP3 account. I was informed if I wanted to move emails from one IMAP account to another IMAP which is simply moving emails from one folder to another folder within my email client; folder being an email account … | |
I'm experiencing a networking problem which I asked elsewhere and so this is the problem and this was the solution I was given, unfortunately the solution doesn't work in Windows10. The problem was non-existant six months ago, which is a latop and a desktop both running Windows10. As of the … | |
I have installed Node.js but without going deep into Node at this point all I want to do is use an optimizing tool for Node. The instructions are straight forward but they are not working. I'm hoping someone can help get me started, the tutorials I've watched haven't been helpful. | |
Hi, I'm trying to install Grunt with Node.js using this command and this is my first time using Node or Grunt so take it slow :-) $ npm install -g grunt-cli Each time I try to run the above code I get this error; I've searched online for the answer … | |
I've been looking for an answer on this problem, from what I know you cannot embed, whether that is using for example <object> a SVG file and style that SVG file externally, whether that is a external or embedded CSS file if there is a method that I'm unaware of … | |
Anyone have a Samsung Galaxy running Andriod 5.0.2. I just need to collaberate with you trying to solve a web design problem; and I also may need you in the future regarding the same device ;-) | |
Hi, I need to have the SVG graphic eraser, animate and erase the SVG graphic, previous. I've tried aligning classes as in @keyframe .className; as well as nesting a class within @keyframe with no success ? [[Example](https://jsbin.com/qoberofuza/edit?html,css,output)] | |
Anyone familar with how to shrink the width & height without effecting the size of the SVG. As has a huge space around the SVG file and I must get the element to the size of the SVG. The problem is the viewport is bigger then then actual graphic but … | |
I'm aware there are SVG minimizers but I don't want to minimize an SVG file to the point it looses it's appearance. Any suggestions on how I can minmize a 600+ line SVG file ? The minimzers I've come across online, don't really minmize the file, some just strip white … | |
Hi, I was hoping someone can help; I want to animate a scribble effect using CSS & SVG. I have an SVG graphic but it appears limited as to what CSS animation can do, that wouldn't otherwise require me to manually cut the SVG graphic into pieces and do a … | |
I want to map a FTP account as a drive in Windows10. I tried the program FTPUse unfortunately it doesn't work, and the author is at a loss why it is not working, even though there is nothing I'm doing wrong ? Any other suggestions ? | |
Re: Tough call, I understand Reverend Jim advice. I would personally turn it down, I don't want to be developing a site and have family see I'm looking at adult images, I would be seriously questioned whether I'm working on a site for income or looking at adult images. | |
Hi, does anyone have a Galaxy S5 or S6 to which they can help me debug a page with Chrome ? | |
Anyone familiar with how to add a Galaxy S5 & S6 running Android Lollipop (5.x) to Chrome Web Device List; from what I know JSon is involved but I'm not familar with JSon, I hope I can get some help ? |
The End.