PasteSite.Com

Recent Pastes

Sign Up!

PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...

Change the theme

If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.

Banjo's Recent Pastes

"Re: #8103" (HTML) view

  1. <h2>Sample Post</h2>
  2. <h3>Posted June 21, 2009 by Admin</h3>
  3. <p>
  4. This is dummy copy. You're not really supposed to read dummy copy, it is just a place holder for people who need some type to visualize what the actual copy might look like if it were real content. If you want to read, I might suggest a good book, perhaps Hemingway or Melville. That's why they call it dummy copy.
  5. </p>

"Re: #8103" (HTML) view

  1. <h2>Sample Post</h2>
  2. <p>
  3. <span>Posted June 21, 2009 by Admin</span>
  4. <br>
  5. This is dummy copy. You're not really supposed to read dummy copy, it is just a place holder for people who need some type to visualize what the actual copy might look like if it were real content. If you want to read, I might suggest a good book, perhaps Hemingway or Melville. That's why they call it dummy copy.
  6. </p>
  7.  
  8. <h2>Sample Post</h2>
  9. <h3>Posted June 21, 2009 by Admin</h3>
  10. <p>

"Untitled" (HTML) view

  1. <h1>Sample Post</h1>
  2. <span>Posted June 21, 2009 by Admin</span>
  3. <p class="conbox">
  4. This is dummy copy. You're not really supposed to read dummy copy, it is just a place holder for people who need some type to visualize what the actual copy might look like if it were real content. If you want to read, I might suggest a good book, perhaps Hemingway or Melville. That's why they call it dummy copy.
  5. </p>
  6.  
  7. <h1>Sample Post</h1>
  8. <span>Posted June 21, 2009 by Admin</span>
  9. <p class="conbox">
  10. This is dummy copy. You're not really supposed to read dummy copy, it is just a place holder for people who need some type to visualize what the actual copy might look like if it were real content. If you want to read, I might suggest a good book, perhaps Hemingway or Melville. That's why they call it dummy copy.

"Untitled" (C/C++) view

  1.         public int Factorials(int x)
  2.         {
  3.             int Return = 1;
  4.             int i = 1;
  5.             while (i <= x)
  6.             {
  7.                 Return = Return * i;
  8.                 i++;
  9.             }
  10.             return Return;

"Re: Re: #8079" (Javascript) view

  1.         public int factorials(int x)
  2.         {
  3.             int Return = 1;
  4.             int i = 1;
  5.             while (i <= x)
  6.             {
  7.                 Return = Return * i;
  8.                 i++;
  9.             }
  10.             return Return;

"Re: #8079" (Javascript) view

  1.         public int factorial(int x)
  2.         {
  3.             if (x == 1)
  4.             {
  5.                 return 1;
  6.             }
  7.             else if (x <= 0)
  8.             {
  9.                 return 0;
  10.             }

"Untitled" (Javascript) view

  1.         public int factorial(int x)
  2.         {
  3.             if (x == 1)
  4.             {
  5.                 return 1;
  6.             }
  7.             else
  8.             {
  9.                 return (x * factorial((x - 1)));
  10.             }

"Re: #8049" (Javascript) view

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.Data;
  6. using System.Drawing;
  7.  
  8. namespace WinUp_Cs
  9. {
  10.     class SelectScreenshot

"Untitled" (Javascript) view

  1.         public void CreateForm()
  2.         {
  3.             // Creates a form
  4.             Form frmSelect = new Form();
  5.  
  6.             // Sets properties of the form
  7.             frmSelect.WindowState = FormWindowState.Maximized; // Maximized
  8.             frmSelect.FormBorderStyle = FormBorderStyle.None// No border
  9.             frmSelect.Cursor = Cursors.Cross;                  // Cross cursor
  10.             frmSelect.ShowInTaskbar = false;                  // Don't show in taskbar

"Untitled" (VBScript) view

  1.     Private Function getBitmap(ByVal area As Rectangle) As Bitmap
  2.         Dim areasize As Size = area.Size
  3.         Dim tempBitmap As New Bitmap(areasize.Width, areasize.Height)
  4.         Graphics.FromImage(tempBitmap).CopyFromScreen(area.Location, New Point(), areasize)
  5.         Return tempBitmap
  6.         tempBitmap.Dispose()
  7.     End Function

« Page: 5, 6, 7, 8, 9.. »