Jump to content

fiveworlds

Senior Members
  • Posts

    1901
  • Joined

  • Last visited

Posts posted by fiveworlds

  1. Quote

    An MRI contains an extremely strong magnet, and I haven't felt any change in gravity when in one.

    Well yeah because the repulsion is really weak. You'd need a magnet even stronger again and I want to figure out how strong it would actually need to be.

  2. Quote

    That sends me to scratch my head  Are they same stuff

    No they aren't.

    Most people in the US and Europe have a dynamic ip address basically when you connect to the ISP's router you get an ip address automatically and when they reset their router you get a new ip.

    Companies have a static ip address this means that the ISP's always gives the same ip address to the company every time they connect to the internet.

    Dns is how a domain name is converted to an ip address

    Dynamic Dns is a paid service in which companies update the ipadress that the domain name is pointing to. They do this through the use of software. Dynamic Dns can be free but is unreliable.

    The benefit of the static ip is that if you have a camera watching your garden and the ISP resets their router you still have internet access. With a dynamic ip you could be offline for half an hour or more each time. 

  3. Okay so that router should be okay. *(It doesn't support static routing but hopefully your internet company doesn't require that for the static ip. Note that most cisco routers don't use coax so  you might need to switch to an Ethernet wall plate instead of the coax one.)

    Quote

    If static or dynamic or DNS I do not know how to recognize.

    All internet providers give a dynamic ip address by default. It changes every few hours which isn't okay if you want to access your camera and need to know the ip address of your home network. They will tell you exactly the configuration details required. 

     

    To port forward with your current device follow this.

    https://www.manualslib.com/manual/1155676/Technicolor-Mediaaccess-Tc8717t.html?page=70#manual

     

    To assign a static private IP address to your two phones follow this.

    https://www.manualslib.com/manual/1155676/Technicolor-Mediaaccess-Tc8717t.html?page=75#manual

     

    Quote

    Already have installed one application on each cell phone :

    That should work fine.

  4. You'll need 

    1. A gateway that supports static routing if your current gateway does not like https://www.newegg.com/Product/Product.aspx?Item=9SIA51G6W77640&cm_re=cisco_rv-_-9SIA51G6W77640-_-Product
    2. A static ip from your internet company or pay for a dynamic dns resolution service and a domain name.

    Then you will need to.

    1. Set a static private ip address for your android phone and then install a camera streaming app such as https://play.google.com/store/apps/details?id=com.vinternete.camerastream
      or https://play.google.com/store/apps/details?id=com.miv.rtpcamera
      (rtp steams can be played with vlc)
    2. Portforward your static private ip address  to a port on your static public ip address. 
  5. Quote

    It is greyed out (disabled) because of a wrong setting somewhere, or

    Yeah it is greyed out on my computer too. It is most likely because internet explorer isn't really updated anymore (last update was in 2014) so your other browsers are newer than internet explorer recognizes as real.

    Microsoft edge should recognize them however and uses the same favourites location as internet explorer. The import option is under settings in from the top right dropdown menu.

     

  6. Quote

    Trying to delete all current Favorites in the recipient Windows 10 machine, got a bunch of hurdles and convoluted complications.  Couldn't.

    They are stored under C:/Users/Username/favourites . Just navigate to the folder and shift + delete everything.

    Quote

    if it is possible to put the Firefox bookmarks into the Explorer's Favorites folder.

    It works perfectly fine for me just click import from the menu bar and follow the instructions. You might run into trouble porting the favourites from Linux though so I would download firefox on the windows machine and sync the favourites from the internet. Of course if you could also install the Linux version of firefox on the windows 10 machine and use that.

  7. Quote

    I really have very little knowledge about cmd, however i was told cmd isn't just an interface

    If you want to learn properly then you should take a course in it offensive security and cisco generally have courses. Alternatively you could try learning the metasploit framework on your own just be warned that it is only a pen testing tool and most ISPs will cut your internet access off if you use it on their network without prior approval from them.

     

  8. Quote

    compare whether VirtualBox is not detected wrong CPU..

    Switching to PIIX3 chipset from the emulator seems to have stops the Mac VM from crashing every time I run node or npm. What I have done so far is far more complicated than some of the articles I was reading. So far I had to 

    1. Set Intel Virtualisation and VT-d in bios to enabled
    2. Disable Hyper-V from add or remove programs (There should be a better way of doing this bit because it stops me from using the windows phone emulator without it being re-enabled.
    3. Found a bunch of non-working Virtualbox versions and am currently running version 5.1.30
    4. Had to keep the Virtualbox installer and repair installation to get 64-bit option to appear
    5. Then follow the rest of the steps from the article.
  9. Quote

    It's for my thesis. Not for a journal article

    Same difference though. They don't need to wreck your head worrying about this stuff they are just being lazy or too cheap to get the software to do this. I wrote a simple html file to do this in like 10 minutes.

    <style>
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            background-color: #FAFAFA;
            font: 12pt "Tahoma";
    		counter-reset: page;
        }
        * {
            box-sizing: border-box;
            -moz-box-sizing: border-box;
        }
        .page {
            width: 210mm;
            min-height: 297mm;
            padding: 10mm;
            margin: 10mm auto;
            border: 1px #D3D3D3 solid;
            border-radius: 5px;
            background: white;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        }
        .subpage, .tableOfContents {
            padding: 1cm;
            border: 5px white solid;
            height: 277mm;
            outline: 1cm white solid;
    		text-align:justify;
    		//line-height 2em is line-spacing double in word
    		line-height:2em;
        }
    	.references:before{
    		content: "References";
    		margin-bottom:10px;
    	}
        .references li{
    		margin-bottom:2em;
    	}
    	.subpage:before {
    		counter-increment: page;
    		content: "Page " counter(page);
    		position:relative;
    		top:260mm;
    		left:150mm;
    	}
        @page {
            size: A4;
            margin: 0;
    
        }
        @media print {
            html, body {
                width: 210mm;
                height: 297mm;        
            }
            .page {
                margin: 0;
                border: initial;
                border-radius: initial;
                width: initial;
                min-height: initial;
                box-shadow: initial;
                background: initial;
                page-break-after: always;
            }
    		.subpage{
    			border:none;
    		}
        }
    	
    	.titlePage{
    		text-align:center;
    	}
    	.title {
    		font-weight:bold;
    	}
    	.author,.dissertationGoals,.title,.qualificationDetails{
    		margin-bottom:160px;
    	}
    	.tableOfContents:before{
    		content: "Table Of Contents";
    		margin-bottom:10px;
    	}
    	.tableOfContents{
    		line-height:1.5em;
    	}
    	.subpage .abstract{
    		width:90%;
    		margin:auto;
    	}
    	.subpage .abstract:before{
    		content:"Abstract";
    		display:block;
    		text-align:left;
    		font-weight:bold;
    		margin-bottom:10px;
    	}
    	.two-column{
    		column-count:2;
    		display:block;
    		margin-top:10px;
    	}
    	.two-column p{
    		margin-top:0px;
    	}
    	.two-column h4 + p:first-letter {
    		color: #903;
    		  float: left;
    		  font-family: Georgia;
    		  font-size: 75px;
    		  line-height: 60px;
    		  padding-top: 4px;
    		  padding-right: 8px;
    		  padding-left: 3px;
    	}
    	.two-column img{
    		width:310px;
    	}
    	.two-column figure{
    		margin:0px;
    	}
    	.two-column figcaption{
    		text-align:center
    		
    	}
    </style>
    <div class="book">
        <div class="page">
            <div class="titlePage">
    			<div class="title">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    			   ut labore et dolore magna aliqua.</div>
    			<div>By</div>
    			<div class="author">Lorem ipsum</div>
    			<div class="dissertationGoals">A dissertation submitted to the faculty of
    				<div class="uniName">The university of Lorem ipsum</div>
    				in partial fulfillment of the requirement for the degree of
    			</div>
    			<div class="qualificationDetails">Doctor of Lorem Ipsum
    				<div>in</div>
    				<div class="qualificationName">Lorem Ipsum Jipsum</div>
    			</div>
    			<div class="publicationDetails">
    				School of Lorem Ipsum
    				<div class="uniName">The university of Lorem ipsum</div>
    				<div class="date">May 2001</div>
    			</div>
    		</div>    
        </div>
    	<div class="page">
            <div class="tableOfContents">
    			<ol class="contents">
    			   <li>
    					Lorem ipsum dolor sit amet, consectetur adipiscing elit
    					<ol class="contents">
    					   <li>
    							This is a subcategory
    						</li>
    					   <li>
    							Lorem ipsum dolor sit amet, consectetur adipiscing elit
    						</li>
    					   <li>
    							Lorem ipsum dolor sit amet, consectetur adipiscing elit
    						</li>
    					</ol>
    				</li>
    			   <li>
    					Lorem ipsum dolor sit amet, consectetur adipiscing elit
    				</li>
    			   <li>
    					Lorem ipsum dolor sit amet, consectetur adipiscing elit
    				</li>
    			</ol>
    		</div>    
        </div>
        <div class="page">
            <div class="subpage">
    			<div class="abstract">
    			   Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    			   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
     			   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    			   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    			   sunt in culpa qui officia deserunt mollit anim id est laborum.
    			</div>
    			<div class="two-column">
    				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    				   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    				   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    				   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    				   sunt in culpa qui officia deserunt mollit anim id est laborum.
    				</p>
    				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    				   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    				   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    				   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    				   sunt in culpa qui officia deserunt mollit anim id est laborum.
    				</p>
    				<h4>My Heading Lorem ipsum</h4>
    				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    				   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    				   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    				   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    				   sunt in culpa qui officia deserunt mollit anim id est laborum.
    				</p>
    				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    				   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    				   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    				   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    				   sunt in culpa qui officia deserunt mollit anim id est laborum.
    				</p>	
    				<figure>
    					<img src="graph.png" />
    					<figcaption>Fig1. - A graph of Lorem </figcaption>
    				</figure> 
    				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    				   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    				   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    				   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    				   sunt in culpa qui officia deserunt mollit anim id est laborum.
    				</p>
    				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
    				   ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
    				   laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
    				   velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
    				   sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.
    				</p>
    			</div>
    		</div>    
        </div>
    	<div class="page">
            <div class="subpage">
    			<ol class="references">
    			   <li>
    					Cassius Dio, 50:5; quoted from Cassius Dio: The 
    					Roman History: The Age of Augustus, (trans.) (<time datetime='1987'>
    					1987</time>) Scott-Kilvert I.; reprinted in <cite>AA100 Assignment 
    					Booklet</cite> (<time datetime='2010-10'>October 2010</time>), 
    					Milton Keynes, The Open University, p.18.
    				</li>
    			   <li>
    					Cassius Dio, 50:5; quoted from Cassius Dio: The 
    					Roman History: The Age of Augustus, (trans.) (<time datetime='1987'>
    					1987</time>) Scott-Kilvert I.; reprinted in <cite>AA100 Assignment 
    					Booklet</cite> (<time datetime='2010-10'>October 2010</time>), 
    					Milton Keynes, The Open University, p.18.
    				</li>
    			   <li>
    					Cassius Dio, 50:5; quoted from Cassius Dio: The 
    					Roman History: The Age of Augustus, (trans.) (<time datetime='1987'>
    					1987</time>) Scott-Kilvert I.; reprinted in <cite>AA100 Assignment 
    					Booklet</cite> (<time datetime='2010-10'>October 2010</time>), 
    					Milton Keynes, The Open University, p.18.
    				</li>
    			</ol>
    		</div>    
        </div>
    </div>

    I have also included the A4 pdf that google chrome generates from the above.

    example.pdf

  10. Quote

    I'm wondering whether I should indent the first line of new paragraphs starting under tables or figures, when the table/figure is aligned at the top of the page?

    Why would you bother?? Shouldn't the journal have software for that?? For instance

    div table:first-child + p{text-indent:50px;}

    Is so much simpler than wrecking loads of people's heads trying to remember should they put indents in or not. 

  11. 6 minutes ago, Alfred001 said:

    Hey, I don't even know how to exchange currency, let alone make an app that can do it.

    It is reasonably simple the ecb publishes the exchange rate every few hours http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml?77401b49bf4f97eb32cd209a610cee5a and banks just use that and take off a % for themselves.

    You could check if your local bank does online banking they probably have facilities to exchange money.

     
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.