Trying to create a lan-to-lan vpn between two differents networks Hardware and Software Networking by seb_081 …, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with… Re: This is me venting Community Center Meta DaniWeb by Reverend Jim … the same. There's no need to beat yourself up wondering what if. Re: Trying to create a lan-to-lan vpn between two differents networks Hardware and Software Networking by rproffitt I've only dabbled in Pfsense but know to ask about that in https://www.reddit.com/r/PFSENSE/ where there are experts. Having said that, be prepared to answer deeper questions about said setup, routers and more. Wondering about new windows in Tkinter Programming Software Development by danizzil14 … know much about the command = whatever thingy so I was wondering if you could give me some info on it? Oh… Wondering if my CPU or Motherboard is fried Hardware and Software Hardware by sirriley07 … have ones to switch at my disposal. So I am wondering if there is any other way to tell what my… wondering some things about lists Programming Software Development by saikeraku … something wrong with my for loops, the range? --- Also just wondering is there any way to sort a list without using… Wondering about slots Hardware and Software Hardware by malrofo Just wondering, if i were to remove 1 pin from a mobile pentium M processor and put it in a desktop motherboard, would it still work? Also, can a processor work with a missing pin? Random Image + Calling The Image, Wondering If It Is Possible And How To Do A Random Programming Software Development by jdm I was wondering if it was possible to call a random image in … with a bunch of else if loops, but I'm wondering if it is possible to do random images without all… of this else if loops. What I was wondering about is to generate a random number and insert it… Starting a new project, wondering if Python is the best idea Programming Software Development by Spag … a project has rolled around at uni and I was wondering if I could use Python for what I need to… doing something simple with PHP/MySQL but I am now wondering if this is possible using PHP/HTML and Python? Or… does anybody have xbox live? *just wondering* :-) Hardware and Software by hammy i was just wondering if anybody has xbox live and if they do whats their gamertag(screen name) :cool: was wondering what path to take Community Center by epsos okay here goes i am about to take my gcses and i want to become a programmer and dont have the fogyist idea on what that invoilves i am planning to do a 2 year btec and was wondering what kind of careers you can get from following on to university and what experiences people have found the best thankyou Just wondering if my thought is possible Programming Software Development by Maulth …; part of it written and working, but what I am wondering, is if it is possible to upload the file that… Just wondering on your out take on offering prizes as a way to lure users? Digital Media Digital Marketing by matthewl I have a colleague that wants to enable the chances to win a prize for completing a task on one of our sites. I was wondering what is you views and thoughts about offering prizes from a marketing stand point and your point of view from a user stand point? Like from the sites you have encountered in the past that offer the chance to win a prize. Just wondering... Programming Software Development by snarb … vb, im wanting to make a program and... I was wondering can you get a program made w/ vb to click… Just wondering... (form actions; javascript:?) Programming Web Development by ErlendHL Hey! I am just wondering: If I want a form to send a AJAX request instead of sending the user to another page or same page; can I [ICODE]<form action="javascript:sendRequest()"[/ICODE]? Starting College and wondering: Security or Networking Community Center by Rhuck I will be starting school this upcoming week and I am wondering which way to go in the IT field.(Security or Networking) I know that graduation is long down the road but I want to make a sound decision that leads to future possiblities. Any recommendations? Just wondering Programming Software Development by Joshua Kidd Hello, I am just wondering about multi-connected clients, connected to a server. Is there … just wondering how i would set up a menu so that i can call anytime when pressin "M" Programming Software Development by pendo826 Hi[QUOTE]just wondering how i would set up a menu so that i can call anytime when pressing "M". im nearly sure it would have to be a loop but im not quite sure how to do it. can anybody help? thanks [/QUOTE] Was wondering what type of Linux Distro ? Hardware and Software Linux and Unix by yeyo_1 i was watching a clip an i saw this so i was wondering if the experts can please tell what linux is this? Re: Wondering about new windows in Tkinter Programming Software Development by vegaseat This snippet will bring up a message window using Toplevel() ... [code=python]# display message in a child window from Tkinter import * def messageWindow(message): # create child window win = Toplevel() # display message Label(win, text=message).pack() # quit child window and return to root window Button(win, … Re: Wondering if my CPU or Motherboard is fried Hardware and Software Hardware by Suspishio Quite possibly, there was a surge when power came back. Less likely but possible is that the CPU temperature rose too far when it was switched off because the fan went off at the same time. Like on those projectors whwre the fan stays on for a few minutes to get into a cooling cycle. Re: wondering some things about lists Programming Software Development by vegaseat When you use [B]a.extend(b)[/B] or [B]a.sort()[/B] then list a is changed, since both are [B]inplace[/B] functions. Also when you pass a list to a function argument, be aware that the list is a mutable object and changes of a mutable object within the function will feed back. The reason is that with mutable objects the address is passed rather … Re: wondering some things about lists Programming Software Development by masterofpuppets hi, here's a function to split the list in two equal halfs: [CODE]def half( l ): mid = len( l ) / 2 a = l[ :mid ] b = l[ mid: ] return a, b >>> half( [ 1, 2, 3, 4, 5, 6 ] ) ([1, 2, 3], [4, 5, 6]) >>>[/CODE] Re: wondering some things about lists Programming Software Development by masterofpuppets [QUOTE=vegaseat;1054315]Adding two lists without changing any of the original list ... [code]def add_lists(a, b): """add lists a and b without changing list a""" # make a true copy of a t = list(a) return t + b a = ['a', 'b', 'c'] b = [1, 2, 3] c = add_lists(a, b) print( c ) # ['a', 'b', '… Re: wondering some things about lists Programming Software Development by vegaseat [QUOTE=masterofpuppets;1054328]:D sorry dude I was typing while you replied...[/QUOTE]No need to be sorry, that kind of thing happens easily on any forum. Re: wondering some things about lists Programming Software Development by HiHe Vagaseat, I tested your code and actually you can just add the two lists this way ... [code=python]def add_lists(a, b): """add lists a and b without changing list a""" return a + b a = ['a', 'b', 'c'] b = [1, 2, 3] c = add_lists(a, b) print( a ) # ['a', 'b', 'c'] print( b ) # [1, 2, 3] print( c )… Re: wondering some things about lists Programming Software Development by saikeraku Thanks a lot everyone Re: Wondering about slots Hardware and Software Hardware by crunchie All the pins are there for a reason, otherwise we could pull them all off and still have it work :D Wondering. Programming Software Development by zidaneqrro Alright, I'm probably going to become the biggest pain in the butt here during the days to come, but please bear with me. [code=Cplusplus] #include <iostream> int Subtract(int first, int second) { std::cout << "In Subtract(), recieved " << first << " and " << second << "\n"; … Re: Wondering. Programming Software Development by Sky Diploma Well the program firsts calls main(); Then after that, Assigns space for 3 variables. Then takes 2 values into the first two of its variables and then looks at difference=Subtract(a,b); During that it first calls the function Subtract(a,b) And then assigns the output value to the variable difference. But Subtract is a function and not a …