Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 15 of 15
Search took 0.05 seconds.
Search: Posts Made By: gabsillis
Forum: HTML & CSS 12-11-2012, 03:39 PM
Replies: 2
Views: 551
Posted By gabsillis
Exclamation Google source code?

I was looking at the source code of websites to learn more about techniques that people use do design websites and I came across the google source code by pressing ctr+U. Can anyone decipher this?...
Forum: JavaScript programming 12-11-2012, 03:15 PM
Replies: 3
Views: 363
Posted By gabsillis
haha! I like that reply

haha! I like that reply
Forum: JavaScript programming 12-06-2012, 01:03 PM
Replies: 3
Views: 363
Posted By gabsillis
anyone want to try it?

anyone want to try it?
Forum: JavaScript programming 12-05-2012, 05:29 PM
Replies: 3
Views: 363
Posted By gabsillis
Smile fun bug finding challenge! with interesting comments

I've made this bug riddled code with some funny comments that make it even more difficult. Who's gonna be the first one to make it work?








//to underdstand recursion, see bottom of the...
Forum: JavaScript programming 10-17-2012, 08:31 PM
Replies: 12
Views: 777
Posted By gabsillis
I incorporated the binary script into a list of...

I incorporated the binary script into a list of calculator functions to be called upon with buttons in html. The only problem with it is that something I am using is not compatible with...
Forum: JavaScript programming 10-15-2012, 02:03 PM
Replies: 12
Views: 777
Posted By gabsillis
var countMult = 1; var binary = prompt("enter a...

var countMult = 1;
var binary = prompt("enter a binary number");
var len = binary.length;
var dec = 0;
var convert = function(){
for (i=0;i<len;i++){
if (binary.charAt(len-(i+1)) ==...
Forum: JavaScript programming 10-15-2012, 01:32 PM
Replies: 12
Views: 777
Posted By gabsillis
Thumbs up fixed

var countMult = 1;
var binary = prompt("enter a binary number");
var len = binary.length;
var dec = 0;
var convert = function(){
for (i=0;i<len;i++){
if (binary.charAt(i) == 1){
...
Forum: JavaScript programming 10-13-2012, 02:18 AM
Replies: 12
Views: 777
Posted By gabsillis
Binary to Decimal conversion

Hello all,
I'm making a script that converts a binary input into a decimal number.
I always get a 0 as answer for some reason.
var countMult = 1;
var binary = prompt("enter a binary number");...
Forum: JavaScript programming 10-12-2012, 05:31 PM
Replies: 28
Views: 1,666
Posted By gabsillis
how would I get numeric input from a user instead...

how would I get numeric input from a user instead of a string?
good point about return, I think my head was swimming with wierd thoughts when I wrote that part.
Forum: JavaScript programming 10-10-2012, 05:30 PM
Replies: 28
Views: 1,666
Posted By gabsillis
I'm having trouble with a redirection code which...

I'm having trouble with a redirection code which is basically the same as the secure examples given on page one
var password = function(){
var reply = prompt("Enter username");
var reply2 =...
Forum: JavaScript programming 09-20-2012, 05:59 PM
Replies: 28
Views: 1,666
Posted By gabsillis
The idea was to "encrypt" the javascript link...

The idea was to "encrypt" the javascript link (what Old Pendant was discussing in the previous post) in the same way that you made a password for the redirection to another page by using the name as...
Forum: JavaScript programming 09-20-2012, 04:26 PM
Replies: 28
Views: 1,666
Posted By gabsillis
Could you apply phillip's way of doing it as the...

Could you apply phillip's way of doing it as the encryption for the js link.
something like

<head>
<form name="input" action="html_form_action.asp" method="get">
javascriptfile/password:...
Forum: JavaScript programming 09-19-2012, 05:36 PM
Replies: 28
Views: 1,666
Posted By gabsillis
I was thinking, since I am making a standalone...

I was thinking, since I am making a standalone javascript file to put into the server and link to it with the html file listed after the javascript, that people would not be able to see the...
Forum: JavaScript programming 09-19-2012, 04:12 PM
Replies: 28
Views: 1,666
Posted By gabsillis
I've furthered it and realized that a standalone...

I've furthered it and realized that a standalone javascript will not show alerts or prompts unless you have the correct library

I now am still working out the cinks but this is what i have so far...
Forum: JavaScript programming 09-14-2012, 04:44 PM
Replies: 28
Views: 1,666
Posted By gabsillis
Password Encryption Script

I'm having trouble figuring out the problem with the following script. Adobe Dreamweaver says it has no syntax errors. I think it has to do with the variable types



var rand = new string("0");...
Showing results 1 to 15 of 15

 
Forum Jump

All times are GMT +1. The time now is 04:29 AM.