topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday September 19, 2026, 11:38 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 53 54 55 56 57 [58] 59 60 61 62 63 ... 145next
1426
This would be cool if one could somehow use an intermediary FTP server, to serve as the "middleman".

So it would be USER>FTP>USER<FTP<USER

You would get the benefits of private file sharing, with the added bonus of HTTP download speeds xD
1428
Living Room / Re: The Coffee/Caffeine Thread!
« Last post by KynloStephen66515 on April 20, 2013, 12:03 PM »
You used to be able to get Rocket Fuel Coffee in Tesco in the UK but the last time I was there, (2011), it didn't appear to be on the shelves.
 (see attachment in previous post)
It tasted quite good but since my normal fare is Moccona Dark Roast, (or Nescafe Black Gold in the UK), take that as you will.

You can still get that in Tesco, but after me and a friend went through an entire jar in a night, then our boss almost calling the police on us cause he thought we was "coming down" off pretty much every drug you can think of (My god that was horrific), I have not touched the stuff since.
1430
Bing Delivers 5X As Many Malicious Websites As Google

Maybe cause Microsoft don't really take care of the results like Google do (Google probably only do so because of "peer pressure"
1431
Living Room / Re: The Coffee/Caffeine Thread!
« Last post by KynloStephen66515 on April 19, 2013, 02:43 PM »
http://www.deathwishcoffee.com/

Noms!

Not your typical coffee bean:
Disclaimer:  This is not your regular morning coffee.  This is not your store bought coffee.  You will not find this coffee at your local diner or at your sissy 'Starbucks. Death Wish Coffee is the most highly caffeinated premium dark roast organic coffee in the world. This is Extreme Coffee, not for the weak. Consider yourself Warned
1432
Living Room / Re: When you make your 100'th Post
« Last post by KynloStephen66515 on April 19, 2013, 02:42 PM »
Le Gratz Kyra!
1433
Living Room / Re: Does anyone here use Bitcoins?
« Last post by KynloStephen66515 on April 19, 2013, 02:41 PM »
much the same way it once outlawed individual possession of gold coins and bullion.

wait...what?  You guys can't own gold?!  Since when? o.0
-Stephen66515 (April 19, 2013, 06:13 AM)

@Stephen - we can now. Couldn't for a good number of years starting in 1933 and ending in 1975. See here.

Remember, this is the land of the "free" and the home of the brave.
 (see attachment in previous post)

 ;D
1434
This whole BitCon Bitcoin fiasco is fun to read about :P
1435
Living Room / Re: Do not read this.
« Last post by KynloStephen66515 on April 19, 2013, 02:40 PM »
 :o
1436
Living Room / Re: Recommend free image hosting site?
« Last post by KynloStephen66515 on April 19, 2013, 02:39 PM »
Dropbox works nicely too!
1437
April wins 3 internets.  This thread will be locked now that we have found a winner.  Thank you all for playing!
1438
Living Room / Re: How to open a can with a spoon
« Last post by KynloStephen66515 on April 19, 2013, 02:38 PM »
From what I gather, it's not filing, it's using friction to cause heat which weakens the metal enough for the initial puncture (his comment "We're going to try and soften the can"), so there would be minimal if any metal shavings, and the rest is simple levered shear action.

Yeah, but he also says "Voila...Peaches!" when they are clearly pears...so I am personally not inclined to believe anything he says!  :mad:

 ;D
1439
Living Room / Re: Does anyone here use Bitcoins?
« Last post by KynloStephen66515 on April 19, 2013, 06:13 AM »
much the same way it once outlawed individual possession of gold coins and bullion.

wait...what?  You guys can't own gold?!  Since when? o.0
1440
Seems to me to be a case of "We can't be bothered anymore...BitCoins are fluctuating to goddamn badly to make us enough money...that...and the taxman is becoming more and more aware of huge amounts of money moving between our accounts, and is now looking for  ways to take as much of it as possible"
1441
Living Room / Re: How to open a can with a spoon
« Last post by KynloStephen66515 on April 18, 2013, 08:01 PM »
Wut?

THEY ARE PEARS, NOT PEACHES...YOU MIGHT KNOW HOW TO OPEN A CAN WITH A FREAKING SPOON...BUT THOSE ARE STILL PEARS!!!!!!!!!!!!!!!!!!!
1442
MainForm.cs
// Copyright (c) 2013 Runxia Electronics Co. Ltd

// Some of the code are integrated from original Virtual Router Project
/*
* Virtual Router v1.0 - http://virtualrouter.codeplex.com
* Wifi Hot Spot for Windows 7 and 2008 R2
* Copyright (c) 2011 Chris Pietschmann (http://pietschsoft.com)
* Licensed under the Microsoft Public License (Ms-PL)
* http://virtualrouter...codeplex.com/license
*/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows.Forms;
using VirtualRouterPlus.Properties;

namespace VirtualRouterPlus
{
    public partial class MainForm : Form
    {
        WlanManager wlanManager = new WlanManager();
        IcsManager icsManager = new IcsManager();

        bool isStarted;

        public MainForm()
        {
            InitializeComponent();
        }

        private void MainForm_Load(object sender, EventArgs e)
        {
            //Added by Stephen66515
       this.passwordTextBox.PasswordChar = "*";
         
            AutoUpdater.BackgroundUpdate();

            Text = Resource.ApplicationName;
            ssidLabel.Text = Resource.LabelSSID;
            passwordLabel.Text = Resource.LabelPassword;
            connectionLabel.Text = Resource.LabelSharedConnection;
            helpButton.Text = Resource.Help;
            startButton.Text = Resource.StartVirtualRouterPlus;

            if (Settings.Default.FirstLaunch)
            {
                Process.Start(Resource.FirstLaunchUrl);
                Settings.Default.FirstLaunch = false;
                Settings.Default.Save();
            }

            wlanManager.HostedNetworkAvailable += wlanManager_HostedNetworkAvailable;
            wlanManager.StationJoin += wlanManager_StationJoin;

            RefreshConnection();

            ssidTextBox.Text = Settings.Default.SSID;
            passwordTextBox.Text = Settings.Default.Password;
            foreach (IcsConnection connection in connectionComboBox.Items)
            {
                if (connection.Name == Settings.Default.Connection)
                {
                    connectionComboBox.SelectedItem = connection;
                    break;
                }
            }
        }

        void wlanManager_StationJoin(object sender, EventArgs e)
        {
            
        }

        void wlanManager_HostedNetworkAvailable(object sender, EventArgs e)
        {
            
        }

        private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            Settings.Default.SSID = ssidTextBox.Text;
            Settings.Default.Password = passwordTextBox.Text;
            Settings.Default.Connection = connectionComboBox.Text;
            Settings.Default.Save();

            Stop();
        }

        private void startButton_Click(object sender, EventArgs e)
        {
            startButton.Enabled = false;
            ssidTextBox.Enabled = false;
            passwordTextBox.Enabled = false;
            connectionComboBox.Enabled = false;
            refreshConnectionButton.Enabled = false;
            startButton.Text = Resource.Working;

            if (isStarted)
            {
                if (Stop())
                {
                    isStarted = false;
                    notifyIcon.ShowBalloonTip(5000, Resource.Success, Resource.VirtualRouterPlusStopped, ToolTipIcon.Info);
                }
                else
                {
                    MessageBox.Show(Resource.VirtualRouterPlusStopError, Resource.Error, MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                if (!ValidateFields())
                    return;

                if (Start(ssidTextBox.Text, passwordTextBox.Text, (IcsConnection)connectionComboBox.SelectedItem, 16))
                {
                    isStarted = true;
                    WindowState = FormWindowState.Minimized;
                    notifyIcon.ShowBalloonTip(5000, Resource.Success, Resource.VirtualRouterPlusStarted, ToolTipIcon.Info);
                }
                else
                {
                    MessageBox.Show(Resource.VirtualRouterPlusStartError, Resource.Error, MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }

            notifyIcon.Icon = isStarted ? Resources.VirtualRouterPlusStarted : Resources.VirtualRouterPlusStopped;
            startButton.Text = isStarted ? Resource.StopVirtualRouterPlus : Resource.StartVirtualRouterPlus;
            
            ssidTextBox.Enabled = !isStarted;
            passwordTextBox.Enabled = !isStarted;
            connectionComboBox.Enabled = !isStarted;
            refreshConnectionButton.Enabled = !isStarted;
            startButton.Enabled = true;
        }

        private bool Start(string ssid, string password, IcsConnection connection, int maxClients)
        {
            try
            {
                Stop();

                wlanManager.SetConnectionSettings(ssid, 32);
                wlanManager.SetSecondaryKey(password);

                wlanManager.StartHostedNetwork();

                var privateConnectionGuid = wlanManager.HostedNetworkInterfaceGuid;

                icsManager.EnableIcs(connection.Guid, privateConnectionGuid);
                
                return true;
            }
            catch
            {
                return false;
            }
        }

        private bool Stop()
        {
            try
            {
                if (this.icsManager.SharingInstalled)
                {
                    this.icsManager.DisableIcsOnAll();
                }

                this.wlanManager.StopHostedNetwork();

                return true;
            }
            catch
            {
                return false;
            }
        }

        private bool ValidateFields()
        {
            if (ssidTextBox.Text.Length <= 0)
            {
                errorProvider.SetError(ssidTextBox, Resource.SSIDRequiredError);
                return false;
            }

            if (ssidTextBox.Text.Length > 32)
            {
                errorProvider.SetError(ssidTextBox, Resource.SSIDTooLongError);
                return false;
            }

            if (passwordTextBox.Text.Length < 8)
            {
                errorProvider.SetError(ssidTextBox, Resource.PasswordTooShortError);
                return false;
            }

            if (passwordTextBox.Text.Length > 64)
            {
                errorProvider.SetError(ssidTextBox, Resource.PasswordTooLongError);
                return false;
            }

            return true;
        }

        private void refreshConnectionButton_Click(object sender, EventArgs e)
        {
            RefreshConnection();
        }

        private void RefreshConnection()
        {
            connectionComboBox.Items.Clear();

            foreach (var connection in icsManager.Connections)
            {
                if (connection.IsConnected && connection.IsSupported)
                {
                    connectionComboBox.Items.Add(connection);
                }
            }

            if (connectionComboBox.Items.Count > 0)
                connectionComboBox.SelectedIndex = 0;
        }

        private void MainForm_SizeChanged(object sender, EventArgs e)
        {
            if (WindowState == FormWindowState.Minimized)
            {
                Hide();
            }
        }

        private void notifyIcon_MouseClick(object sender, MouseEventArgs e)
        {
            Show();
            WindowState = FormWindowState.Normal;
        }

        private void helpButton_Click(object sender, EventArgs e)
        {
            Process.Start(Resource.HelpUrl);
        }
    }
}

1443
If anybody can get the damn solution to load without a trillion errors, all it needs is:

this.passwordTextBox.PasswordChar = "*";

that needs to go in mainForm_Load

Seriously...that is it lol.
1444
Not funny, but I like round numbers, and found this nice to see!

210000.png
1445
Living Room / Re: Do not read this.
« Last post by KynloStephen66515 on April 18, 2013, 10:38 AM »
your welcome

my welcome what?
1446
Living Room / Do not read this.
« Last post by KynloStephen66515 on April 17, 2013, 08:46 PM »
Thanks for ignoring me :P
1447
Living Room / Re: Recommend free image hosting site?
« Last post by KynloStephen66515 on April 16, 2013, 08:29 PM »
From http://imgur.com/help/images

How long do you keep the images?
As long as images are getting at least 1 view per 6 months, they will stick around forever. If an image does not receive even 1 view in 6 months, it may be removed to make room for new images. Images on pro accounts will never be removed.

How many images can I upload?
Infinity images can be uploaded from a single user, but only 225 will be associated with a standard account. After 225, older images will be hidden.(*)


(*) Clarification:

If you pay for a pro account, ALL your images will be available to you.  You also get an ad-free service.

For the cost, it's value has proven good enough that even I paid for it :P
1449
Living Room / Re: Recommend free image hosting site?
« Last post by KynloStephen66515 on April 16, 2013, 04:32 PM »
www.imgur.com

Best free image hosting site IMHO...and crap loads of extra space if you pay like $3-4/month for a pro account.
1450
Living Room / Re: Animal Friends thread
« Last post by KynloStephen66515 on April 16, 2013, 04:23 AM »
Pages: prev1 ... 53 54 55 56 57 [58] 59 60 61 62 63 ... 145next