Jump to content

fiveworlds

Senior Members
  • Posts

    1901
  • Joined

  • Last visited

Everything posted by fiveworlds

  1. 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. 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. Magnets weakly repel organic tissue. How strong an electromagnet would be required to simulate artificial gravity and would a magnetic field that strong be harmful to a person?
  4. For dynamic dns if you don't want to get a static ip you could use https://www.noip.com/ (free) and an android app to update your ip to their server https://play.google.com/store/apps/details?id=jf.actualizaip
  5. 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.) 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 That should work fine.
  6. You'll need 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 A static ip from your internet company or pay for a dynamic dns resolution service and a domain name. Then you will need to. 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) Portforward your static private ip address to a port on your static public ip address.
  7. I would imagine it is an antenna transmitting signals at 800 MHz
  8. That refers the wires that run into the computer processor or ALU. Space is a consideration there was a time when a 64-bit computer would be very heavy and therefore no good for laptops etc.
  9. 1 bit is a unit which quantifies exactly one on/off state. Early magnetic core memory used rings which could hold a single charge in the on/off state. The magnetic ring would change the output current in the wire if it was charged or not.
  10. 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.
  11. They are stored under C:/Users/Username/favourites . Just navigate to the folder and shift + delete everything. 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.
  12. 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.
  13. D3.js can do that for you or Google charts. https://developers.google.com/chart/interactive/docs/gallery/piechart Highchart.js can too but it is paid software. https://www.highcharts.com/demo/pie-donut
  14. Using all caps is considered rude. Why shouldn't we introduce AI in this era? I really want a Jarvis-like setup for my home.
  15. 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 Set Intel Virtualisation and VT-d in bios to enabled 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. Found a bunch of non-working Virtualbox versions and am currently running version 5.1.30 Had to keep the Virtualbox installer and repair installation to get 64-bit option to appear Then follow the rest of the steps from the article.
  16. I'm a bit further than I was before. I finally got it booting today following this tutorial http://hintdesk.com/how-to-install-mac-os-x-sierra-10-12-on-virtualbox/ but it is really unstable. I'm trying to build an ios cordova app which requires me to use mac and nodejs but basically every nodejs command is running and then crashing virtualbox.
  17. Does anybody here know if it is possible to run a Mac OS X virtual machine on windows 10? Been wrecking my head trying to get it to work the past few days.
  18. 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
  19. 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.
  20. I know but a lot of exchange apps don't accept Croatian Kuna. I tried all the ones I usually use like revolut, paypal etc.
  21. 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.
  22. Yeah that makes it a lot more difficult to find one. Maybe you should make a currency exchange app for that.
  23. I would strongly advise against doing this. Some server admins put zip bombs and viruses on their ip address to stop malicious ddos attacks.
  24. A lot of the expense is in QA testing for keyboards. They need to test every few keyboards buttons hundreds of thousands of times for regulations. The lettering cannot fade, the button cannot stop working, there can't be indentations left in the keys etc.
×
×
  • 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.