Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
31% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
3
1 Commented Post
0 Endorsements
Ranked #22.6K
~29.1K People Reached
Favorite Tags

9 Posted Topics

Member Avatar for ~s.o.s~

Write a program that stores a library of books based off their publishing YEAR. You should be able to refernce a list of books when the year is called. You should have the years 2000-2010. (HINT: USE HASHMAPS).

Member Avatar for gyno
22
7K
Member Avatar for rezajan

Use Java. JVM is one of the better networking compilers plus, there are no external libraries needed. Here is a client program import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.net.Socket; import java.net.UnknownHostException; public class client { public static void main(String args[]) { int portNum = 8080; String hostNam …

Member Avatar for Squiva
0
115
Member Avatar for jonow
Member Avatar for Squiva
1
2K
Member Avatar for sickly_man
Member Avatar for Squiva
0
17K
Member Avatar for AntonyRayan

Try this: <?php $from = $_POST["name"]; $mailer = $_POST["email"]; mail("someemail@something.com", "Contents", "Subject", $from); ?> and this HTML to follow(Note: this is from a website I made, so keep in mind that is is quite raw): <html> <head> <title>Abby Phillips</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script> $(document).ready(function() { $("#ld1").css('background-color', 'blue'); $("#ld2").css('background-color', 'blue'); $("#ld3").css('background-color', 'blue'); …

Member Avatar for Squiva
0
141
Member Avatar for lionburn50

From what I can see on your code, your going about this in a very difficult manner. The easiest way to load an XSL stylesheet is this <?xml-stylesheet type="text/xsl" href="style.xsl"?> Do this just after <?xml version="1.0" encoding="UTF-8"?> Before, you were relying on namespaces instead just directly refering to your XSL …

Member Avatar for Squiva
0
2K
Member Avatar for computerbear

Try along the lines of, but not exactly(just an example), <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="css.css"?> <notes> <note> <to>Tove</to> </note> <note2> <to>Jove</to> </note2> <note> <to>Gove</to> </note> </notes> And a CSS file as note { background-color:red; } note2 { background-color: yellow;

Member Avatar for Squiva
0
309
Member Avatar for mjb925
Member Avatar for Squiva
0
177
Member Avatar for shammi.khan.73

First, you must intall Node.js. After that, you create a new JS file, and put this in it... var app = require('express')(); var http = require('http').Server(app); app.get('/', function(req, res) { res.sendFile(__dirname + '/chat.html'); }); http.listen(3000, function() { console.log("Loaded!"); }); Then, you must create an HTML file to be displayed. <html> …

Member Avatar for Squiva
0
320

The End.