This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#26 2010-11-14 19:26:58

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: Ubuntu Online collab

urhungry wrote:

Sorry for the massive bump, but I think I'll resume working on this now(as in soon).

Okay!  big_smile

Offline

 

#27 2010-11-19 15:00:35

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

I'll help! I'll be in All.(yep i know css 3, javascript, images(GIMP) and HTML 5)
O rly?
Ya rly!

Some nice css to make the ubuntu font come up EVEN WHEN the user doesn't have it installed!:

Code:

@font-face {
font-family: "Ubuntu";
src: url("[font file here]")
}

[font file here] is where the ubuntu font file should go.
And some css to stop the user from selecting the text:

Code:

body {
-moz-user-select:none;   -webkit-user-select:none;
}

tongue
Also some nice css shading to add to the #panel-top bit:

Code:

-moz-box-shadow: 0 0 10px #000; -webkit-box-shadow: 0 0 10px #000; box-shadow: 0 0 10px #000;

And shall i make an error page for IE?
It doesn't work even on IE 9 Beta!

Also some nice css shading and transparency to add to the #applications-open and #context-menu-desktop bit:

Code:

-moz-box-shadow: 0 0 5px #000; -webkit-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; filter: alpha(opacity=90); -moz-opacity: 0.9; -khtml-opacity: 0.9; opacity: 0.9;

smile

Last edited by comp500 (2010-11-20 11:47:07)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#28 2010-11-20 11:34:40

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Ubuntu Online collab

I'll help with the HTML! But I don't have a Ubuntu system!

Offline

 

#29 2010-11-20 11:40:49

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

ThePCKid wrote:

urhungry wrote:

Any way to space the menu out better? No matter what I try it still seems to be squished.

I don't know

I do:

Code:

#applist li {
margin-bottom: 8px;
}

-

ThePCKid wrote:

what-the wrote:

Hay. Why don't you create a program in C#, C++ or VB.net which is just a borderless form in full screen mode. (This hides the taskbar) and it navigates to that web page. On the webpage you can create a virual browser (ie. split the page into two websites) and use buttons on one page to control the other.

I might do that (the first thing)

I could but it doesn't work in IE.
-

ProgrammingFreak wrote:

I'll help with the HTML! But I don't have a Ubuntu system!

Nor me.

Last edited by comp500 (2010-11-20 11:57:06)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#30 2010-11-20 13:29:25

urhungry
Scratcher
Registered: 2009-07-03
Posts: 1000+

Re: Ubuntu Online collab

You evidently know a lot more then me, I'm just using the change something and see what broke method. I can implement all of the HTML you produce until you have access.

Offline

 

#31 2010-11-20 15:26:27

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: Ubuntu Online collab

comp500 wrote:

ThePCKid wrote:

urhungry wrote:

Any way to space the menu out better? No matter what I try it still seems to be squished.

I don't know

I do:

Code:

#applist li {
margin-bottom: 8px;
}

-

ThePCKid wrote:

what-the wrote:

Hay. Why don't you create a program in C#, C++ or VB.net which is just a borderless form in full screen mode. (This hides the taskbar) and it navigates to that web page. On the webpage you can create a virual browser (ie. split the page into two websites) and use buttons on one page to control the other.

I might do that (the first thing)

I could but it doesn't work in IE.
-

ProgrammingFreak wrote:

I'll help with the HTML! But I don't have a Ubuntu system!

Nor me.

Thanks. Would you like to help?

Offline

 

#32 2010-11-21 03:46:08

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

ThePCKid wrote:

comp500 wrote:

ThePCKid wrote:

I don't know

I do:

Code:

#applist li {
margin-bottom: 8px;
}

-

ThePCKid wrote:

I might do that (the first thing)

I could but it doesn't work in IE.
-

ProgrammingFreak wrote:

I'll help with the HTML! But I don't have a Ubuntu system!

Nor me.

Thanks. Would you like to help?

comp500 wrote:

I'll help! I'll be in All.(yep i know css 3, javascript, images(GIMP) and HTML 5)
O rly?
Ya rly!

Some nice css to make the ubuntu font come up EVEN WHEN the user doesn't have it installed!:

Code:

@font-face {
font-family: "Ubuntu";
src: url("[font file here]")
}

[font file here] is where the ubuntu font file should go.
And some css to stop the user from selecting the text:

Code:

body {
-moz-user-select:none;   -webkit-user-select:none;
}

tongue
Also some nice css shading to add to the #panel-top bit:

Code:

-moz-box-shadow: 0 0 10px #000; -webkit-box-shadow: 0 0 10px #000; box-shadow: 0 0 10px #000;

And shall i make an error page for IE?
It doesn't work even on IE 9 Beta!

Also some nice css shading and transparency to add to the #applications-open and #context-menu-desktop bit:

Code:

-moz-box-shadow: 0 0 5px #000; -webkit-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; filter: alpha(opacity=90); -moz-opacity: 0.9; -khtml-opacity: 0.9; opacity: 0.9;

smile

tongue  you speed read.
yes i do want to help.

and i also have a way to make the boot screen.

Last edited by comp500 (2010-11-21 03:48:37)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#33 2010-11-21 03:50:28

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

urhungry wrote:

You evidently know a lot more then me, I'm just using the change something and see what broke method. I can implement all of the HTML you produce until you have access.

Ok. I have lots of ideas and the code for them so- yeah!

MOAR code for me and ThePCKid to discuss:

Code:

     <!-- comp500 Test code:

        <script type="text/javascript">
        // boot screen
        if(sessionStorage == null) {boot()} // no sessionStorage support, boot
        else {
            if(sessionStorage.ubuntuon != null) {  // is ubuntu on?
                if(sessionStorage.ubuntuon == true) { // is ubuntu on?
                    // ubuntu on, restore session
                }
                else {
                    sessionStorage.ubuntuon = true; // launch ubuntu
                    boot();
                }
            }
            else {
                sessionStorage.ubuntuon = true; // launch ubuntu, sessionStorage has timed out
                boot();
            }
        }

        function boot() {
            // boot code here
        }

        function off() {
            // off code here
            sessionStorage.ubuntuon = false;
        }

        // maybe multiple copy detector?
        </script>

        End comp500 test code
        -->

And I suggest you have this:

Code:

<!-- Non-jquery code here: -->

Put the non-jquery code here(like mine above)

Code:

<!-- End non-jquery code -->

-
And a favicon to add: http://www.mediafire.com/?53t1yd6bvycba43
Code goes in the <head> bit:

Code:

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />

Last edited by comp500 (2010-11-22 12:04:47)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#34 2010-11-23 03:12:13

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

bump bump!

I'm online at:
Mon 7:45 - 8:25, 3:15 - 5:00
Tue 7:45 - 8:25, 4:00 - 5:00
Wed 7:45 - 8:25, 3:15 - 4:30
Thu 7:45 - 8:25, 3:15 - 5:00
Fri 7:45 - 8:25, 3:15 - 5:00
Sat All the time
Sun All afternoon

Times may vary depending on hw  tongue

Last edited by comp500 (2010-11-23 03:19:42)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#35 2010-11-23 03:16:55

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Ubuntu Online collab

oos.cc is cool - anywayz, i guess i will help


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#36 2010-11-23 03:21:48

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

ssss wrote:

oos.cc is cool - anywayz, i guess i will help

okayz - urhungry and ThePCKid can implement our stuff.
and - Are you joining as all, images, Javascript, etc?


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#37 2010-11-23 03:30:36

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Ubuntu Online collab

mm... images - and use http://w3schools.com for javascript so All, i guess  tongue   I'm downloading Ubunutu 10.10 as we speak (my dad uses it)


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#38 2010-11-23 03:32:21

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

ssss wrote:

mm... images - and use http://w3schools.com for javascript so All, i guess  tongue   I'm downloading Ubunutu 10.10 as we speak (my dad uses it)

Goody goody and i'm in all so I'll help you to get started!
And don't forget to download Gimp!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#39 2010-11-23 03:37:47

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Ubuntu Online collab

Already have it  tongue   Plus paint.net so  tongue


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#40 2010-11-23 08:32:09

fire219
Scratcher
Registered: 2008-02-07
Posts: 1000+

Re: Ubuntu Online collab

I don't want to join, but I have been watching this since the beginning, and it looks like it will be awesome.  smile


http://bluetetrarpg.x10.mx/usercard/img.php?name=fire219

Offline

 

#41 2010-11-23 11:34:59

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

fire219 wrote:

I don't want to join, but I have been watching this since the beginning, and it looks like it will be awesome.  smile

smile  Don't forget to put the image in your siggy!
@ssss           CSS and actual HTML as well? Don't forget to include some nice screenshots
                  of Ubuntu!
@ThePCKid   What is slackware?
                  Here is a banner:
                  http://img253.imageshack.us/img253/8954/ubuntuonline.png
                  Not perfect, but I tried.
                  Better version:
                  http://img152.imageshack.us/img152/6996/ubuntuonline2.png

Last edited by comp500 (2010-11-23 12:20:15)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#42 2010-11-26 03:26:14

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

bumpity bump bump bump


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#43 2010-11-27 11:52:48

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: Ubuntu Online collab

comp500: good ideas!
If we did session storing, we would probably be making a BIG cookie. A "fake" boot screen could be good. The idea of a "fake" shutdown system is great.

Offline

 

#44 2010-11-27 14:03:51

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

ThePCKid wrote:

comp500: good ideas!
If we did session storing, we would probably be making a BIG cookie. A "fake" boot screen could be good. The idea of a "fake" shutdown system is great.

1. sessionStorage is NOT cookies and localStorage is similar to sessionStorage
2.  smile
I am also gonna give you the code for a Time widget!

Last edited by comp500 (2010-11-27 14:11:37)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#45 2010-11-27 14:16:08

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

How to make the time widget:
1. Replace #text-help-1 with this:

Code:

<div id="text-help-1" style="color: rgb(211, 211, 211); ">&nbsp;&nbsp;Applications&nbsp;&nbsp;</div><div style="text-align:right; top:0px; position:absolute; right:5px;" id="clock"></div>

2. Add this to the non-jquery code bit:

Code:

        <script type="text/javascript">
            function startTime() {
                var today = new Date();
                var h = today.getHours();
                var m = today.getMinutes();
                var s = today.getSeconds();
                // add a zero in front of numbers<10
                m = checkTime(m);
                s = checkTime(s);
                document.getElementById('clock').innerHTML = h + ":" + m + ":" + s;
                t = setTimeout('startTime()', 500);
            }

            function checkTime(i) {
                if (i < 10) {
                    i = "0" + i;
                }
                return i;
            }
            </script>

3. And add this before the </body> tag:

Code:

<script type="text/javascript">startTime();</script>

I can also make it so that it only shows the hours and the minutes.
Moar stuff:
1. Are these good, Ubuntu type icons? (click on image for bigger view):http://www.famfamfam.com/lab/icons/silk/previews/index_abc.png
More Here
2. Could you do this:
I sign up on oos.cc, You invite me via oos.cc username.
OR
You go on newgrounds, You send me a PM with the details for the website.
3. Replace 'Sound & Video' with 'Sound &amp; Video' in the code so it will look good AND validate.
http://www.famfamfam.com/lab/icons/silk/icons/emoticon_grin.png

Last edited by comp500 (2010-12-29 06:30:13)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#46 2010-11-29 17:58:36

Fiat500
Scratcher
Registered: 2009-11-28
Posts: 100+

Re: Ubuntu Online collab

ThePCKid wrote:

BEFORE YOU REPORT THIS TOPIC BECAUSE IT'S IN THE WRONG FORUM, LOOK AT THE DESCRIPTION OF THE COLLABORATIONS FORUM.

Ubuntu Online is a project that I recently started working on, and I need help with it. If you would like to help me, you would probably want an Ubuntu 10.10 VM, GIMP, and a (part of) screen capture tool. If you have a better image for something, upload it to TinyPic (make sure that you have the correct height and width of the image. add transparency if needed) and then copy and paste the BBCode here. If you have a bug fix, tell me how to fix it. If you have an optimization, tell me. If you have anything else ( big_smile ), give me the info that's needed about it. The page itself is written in XHTML 1.0 (basically a kind of stricter version of HTML 4.01), along with CSS (v2.1), JavaScript, and jQuery (JavaScript library). If you want the source of the page, just go to View -> Page Source. The website that the page is hosted on is sometimes down. Firefox 3.6.12 for Windows displays the page most correctly. There can be an unlimited amount of helpers. You might want to download and install the Ubuntu font family for the site to look better.

Here are banners (they have links to the website):
http://i54.tinypic.com/23wjs4l.png

Code:

[url=http://thepckid.oos.cc/web/Ubuntu%20Online/][url]http://i54.tinypic.com/23wjs4l.png[/url][/url]

http://img152.imageshack.us/img152/6996 … nline2.png

Code:

[url=http://thepckid.oos.cc/web/Ubuntu%20Online/][url]http://img152.imageshack.us/img152/6996/ubuntuonline2.png[/url][/url]

All
- ThePCKid (project starter)
- comp500 *

CSS

JavaScript and/or jQuery

Images

Actual HTML
- urhungry

You can have 10.10 in a VM... Or you can have it for real! wink wink  smile


http://picomol.de/ubuntu-oneiric-counter/234.png]
http://s09.flagcounter.com/count/eK/bg_244AB3/txt_FFFFFF/border_000000/columns_4/maxflags_8/viewers_Comet+Programming/labels_1/pageviews_1/

Offline

 

#47 2010-11-30 03:23:15

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

Fiat500 wrote:

ThePCKid wrote:

BEFORE YOU REPORT THIS TOPIC BECAUSE IT'S IN THE WRONG FORUM, LOOK AT THE DESCRIPTION OF THE COLLABORATIONS FORUM.

Ubuntu Online is a project that I recently started working on, and I need help with it. If you would like to help me, you would probably want an Ubuntu 10.10 VM, GIMP, and a (part of) screen capture tool. If you have a better image for something, upload it to TinyPic (make sure that you have the correct height and width of the image. add transparency if needed) and then copy and paste the BBCode here. If you have a bug fix, tell me how to fix it. If you have an optimization, tell me. If you have anything else ( big_smile ), give me the info that's needed about it. The page itself is written in XHTML 1.0 (basically a kind of stricter version of HTML 4.01), along with CSS (v2.1), JavaScript, and jQuery (JavaScript library). If you want the source of the page, just go to View -> Page Source. The website that the page is hosted on is sometimes down. Firefox 3.6.12 for Windows displays the page most correctly. There can be an unlimited amount of helpers. You might want to download and install the Ubuntu font family for the site to look better.

Here are banners (they have links to the website):
http://i54.tinypic.com/23wjs4l.png

Code:

[url=http://thepckid.oos.cc/web/Ubuntu%20Online/][url]http://i54.tinypic.com/23wjs4l.png[/url][/url]

http://img152.imageshack.us/img152/6996 … nline2.png

Code:

[url=http://thepckid.oos.cc/web/Ubuntu%20Online/][url]http://img152.imageshack.us/img152/6996/ubuntuonline2.png[/url][/url]

All
- ThePCKid (project starter)
- comp500 *

CSS

JavaScript and/or jQuery

Images

Actual HTML
- urhungry

You can have 10.10 in a VM... Or you can have it for real! wink wink  smile

But we're trying to make it in a browser! Without a VM!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#48 2010-11-30 15:13:39

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Ubuntu Online collab

I want to help!!!

Offline

 

#49 2010-11-30 18:05:39

Lightnin
Scratch Team
Registered: 2008-11-03
Posts: 1000+

Re: Ubuntu Online collab

This looks like a really cool project.  smile 
And you make a good point - the description of the collab forum really does just say Scratch projects. Perhaps we'll rename it to make it more general.

If you'd prefer to keep this thread in Collab, by the way, I think that would be fine...


Help Scratchers make the leap to 2.0!
http://img818.imageshack.us/img818/6844/transitionteam.jpg

Offline

 

#50 2010-12-01 04:09:23

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Ubuntu Online collab

Lightnin wrote:

This looks like a really cool project.  smile 
And you make a good point - the description of the collab forum really does just say Scratch projects. Perhaps we'll rename it to make it more general.

If you'd prefer to keep this thread in Collab, by the way, I think that would be fine...

smile  ThePCKid doesn't seem to be online a lot.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

Board footer