any one able to do some work, toss me an email so we can discuss what i need done and terms.
Re: java programmer
By: Drakahn99 to All on Sun Feb 07 2016 19:45:18
any one able to do some work, toss me an email so we can discuss what
i need done and terms.
Java is not JavaScript. Aside from a similar name and some similar syntax, they are fairly different languages.
sorry, wasn't aware of the difference. though still in need of someone that can do the work.
do what work? very vague work?
modifying the listserver.js to add functions i would like added.
currently im using feedbucket to use the rss feed on my site to generate a buliten list for the main page. however that cuts off the messages for the rss feed, however i would like to have this modified so that it shows the full message text on the main page, and drop the need for using the 3rd party site. in case that one goes down.
Java is not JavaScript. Aside from a similar name and some similar syntax, they are fairly different languages.
yeah i really wish they would rename it. it was a stupid decision toride on
the hype of shitty java.
Drakahn99 wrote to Mro <=-
do what work? very vague work?
modifying the listserver.js to add functions i would like added.
currently im using feedbucket to use the rss feed on my site to
generate a buliten list for the main page. however that cuts off the messages for the rss feed, however i would like to have this modified
so that it shows the full message text on the main page, and drop the
need for using the 3rd party site. in case that one goes down.
yeah i really wish they would rename it. it was a stupid decision toride on
the hype of shitty java.
Despite whether one thinks Java is good or not, Java is used for many things, from embedded devices to smart phones, etc.. Java is the standard language for Android apps, and there are many Android devices on the
Is the functionality you want really specific to you, or do you think other people might want it as well? You could just make a feature request here and see if someone wants to add it.
How is your RSS feed being generated - from a message base? There's likely a much more straightforward way of doing this.
rss.ssjs
http://twstdt.synchro.net/rss.ssjs?channel=Bulletins
using a bit of code from feedbucket it grabs the above rss feed and inserts the text into my main page.
is there an easier way of adding information onto the main page without editing the html code each time?
Synchronet already has an RSS importer. Web_feed_importer.js will do what you ask.
Drakahn99 wrote to Bill McGarrity <=-
Synchronet already has an RSS importer. Web_feed_importer.js will do what you ask.
that imports the feed into the message base. not inserting it into an
html page on the web server.
Despite whether one thinks Java is good or not, Java is used for many things, from embedded devices to smart phones, etc.. Java is the standard language for Android apps, and there are many Android devices on the
it's good because it's cross platform. you would never ever run it on
a windows system and i'd have to think long and hard before running it on anything other than a smart phone.
it's good because it's cross platform. you would never ever run it
on a windows system and i'd have to think long and hard before
running it on anything other than a smart phone.
Your statements seem to be in conflict with each other..
- Java is good because it's cross platform
- You wouldn't want to run Java apps on anything other than a smart phone
There is one java application I can't live without. Pimlical. It's the best damn calendar app PERIOD. Use the android version on my blackberry
and the desktop one on my Linux and Windows boxes. Syncing with each other and not in the cloud. ;)
Yes, I have something for that. Will post it somewhere for you, probably tomorrow.
rss.ssjs
http://twstdt.synchro.net/rss.ssjs?channel=Bulletins
using a bit of code from feedbucket it grabs the above rss feed and inserts the text into my main page.
is there an easier way of adding information onto the main page without editing the html code each time?
the next is my opinion that you shouldnt run it on anything other than a smartphone. i certainly wouldnt run it on windows due to security risks.
I this your bbs main page for synchronet you're wanting this on? Are you only concerned with the latest message, the last 2-3?
Sorry for jumping in late... saw the subject and skipped it, finally curiosity got the better of me.
the next is my opinion that you shouldnt run it on anything other than a smartphone. i certainly wouldnt run it on windows due to security risks.
Most of the security risks are in the context of a browser plugin... most browsers no longer allow Java to run.
In the deskop context, if I can launch a Java application, I can launch any other kind of application, there's not really an extra security leak there.
yes the main page the sub board i use keeps no more than 25 posts. wich then get sent to a rss feed. using the rss.ssjs file in the root directory, and feedbucket picks that up and creates an html insert on the main page.
sure if there would be any extra security risk to running a desktop app
just because it's written in Java. If anything, I'd think there might be less security risk because Java apps run in a VM. I'm not sure how Java apps would put your system at risk more than apps written in other
java and flash are 2 of the biggest security risks.
java and flash are 2 of the biggest security risks.
I've heard Java has recently improved in its security:
http://bit.ly/1oHZJSY
There are many apps written in Java though.. Two fairly big ones are Eclipse (an IDE) and Android Studio (an IDE specifically for Android software development), which are both written in Java. Given the number of Java/Android developers there are, and the number of apps/platforms that use Java, I'm sure Oracle is motivated to fix its vulnerabilities.
There are many apps written in Java though.. Two fairly big ones are
Eclipse (an IDE) and Android Studio (an IDE specifically for Android
software development), which are both written in Java. Given the
number of Java/Android developers there are, and the number of
apps/platforms that use Java, I'm sure Oracle is motivated to fix its
vulnerabilities.
Don't forget Minecraft!
I've heard Java has recently improved in its security:
http://bit.ly/1oHZJSY
There are many apps written in Java though.. Two fairly big ones are Eclipse (an IDE) and Android Studio (an IDE specifically for Android software development), which are both written in Java. Given the number of Java/Android developers there are, and the number of apps/platforms that use Java, I'm sure Oracle is motivated to fix its vulnerabilities.
It's much more straightforward just to have your webserver read the messages from that sub on your BBS and add the content to your page directly, skipping the intermediate RSS-and-offsite-formatting step.
Whether or not you're using my bulletin lister (Bullshit) you can use the two files I committed to the CVS recently for this purpose:
xtrn/bullshit/bullshit.ssjs
xtrn/bullshit/999-bullshit.xjs
'bullshit.ssjs' can stay in the 'xtrn/bullshit/' directory, while '999-bullshit.xjs' contains the necessary stuff to dump messages out from the webserver, formatted for web-v4 (which it looks like you're using). You can copy the contents of '999-bullshit.xjs' into your existing home page, or set it up as its own page if you like. I'll tidy it up a bit later, but for now just be aware that this line specifies which sub-board (by internal code) and how many messages to display:
bullshit('bullshit', 5);
You can use that same function to dump out x number of messages from any sub-board, it's not really specific to my bulletin lister.
I've heard Java has recently improved in its security: http://bit.ly/1oHZJSY
There are many apps written in Java though.. Two fairly big ones are Eclipse (an IDE) and Android Studio (an IDE specifically for Android software development), which are both written in Java. Given the number of Java/Android developers there are, and the number of apps/platforms that use Java, I'm sure Oracle is motivated to fix its vulnerabilities.
He's still thinking in terms of browser plug-ins - and in that context, he's not wrong. However your point about desktop applications is entirely valid. It's one thing to run a program that you made a point of installing locally, and another thing entirely to run something that your browser loaded from any old website.
Not that I'm a Java fan (or detractor - I don't care one way or the other), but I suppose that people who only really know it in the context of ugly/slow browser applets and security warnings have only that to judge it on.
It has been years since I've seen any web sites using Java applets. I didn't think that was really common practice anymore.
Don't forget Minecraft!
That's true.. Minecraft is very popular.
yeah i almost ran a minecraft server for my gf's daughter but not gonna touch java.
Re: java programmer
By: Mro to Nightfox on Wed Feb 17 2016 18:14:07
yeah i almost ran a minecraft server for my gf's daughter but not
gonna touch java.
I hightly doubt that the authors of the Miencraft server are going to put malware in the Minecraft server to exploit your system.. Same with other
sure if there would be any extra security risk to running a desktop app
just because it's written in Java. If anything, I'd think there might be
less security risk because Java apps run in a VM. I'm not sure how Java
apps would put your system at risk more than apps written in other
java and flash are 2 of the biggest security risks.
java and flash should be shitcanned.
be >> less security risk because Java apps run in a VM. I'm not sure how Java >> apps would put your system at risk more than apps written in othersure if there would be any extra security risk to running a desktop app >> just because it's written in Java. If anything, I'd think there might
java and flash are 2 of the biggest security risks.
In the browser... on a desktop app, they're no more of a risk than any
other application, generally speaking.
Sysop: | Chris Crash |
---|---|
Location: | Huntington Beach, CA. |
Users: | 578 |
Nodes: | 8 (0 / 8) |
Uptime: | 29:11:55 |
Calls: | 10,736 |
Calls today: | 1 |
Files: | 5 |
Messages: | 443,196 |
Posted today: | 1 |