-
Content Count
143 -
Joined
-
Last visited
Awards
This user doesn't have any awards
About 0x21
-
Title
Member
Profile Information
-
Location
United Kingdom
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
0x21 changed their profile photo
-
The byte code makes it quite clear: 1 0 LOAD_CONST 0 ((20, 60)) 2 UNPACK_SEQUENCE 2 4 STORE_NAME 0 (x) 6 STORE_NAME 1 (y) 2 8 LOAD_NAME 0 (x) 10 LOAD_NAME 1 (y) 12 LOAD_CONST 1 (10) 14 BINARY_SUBTRACT 16 LOAD_NAME 0 (x) 18 LOAD_CONST 1 (10) 20 BINARY_ADD 22 ROT_THREE 24 ROT_TWO 26 STORE_
-
Updated Visual Studio to 2019 from 2017 and IntelliSense is slow
0x21 replied to Yoola's topic in Programming
Do either of these help? -
Updated Visual Studio to 2019 from 2017 and IntelliSense is slow
0x21 replied to Yoola's topic in Programming
Have you tried the solutions listed here: https://developercommunity.visualstudio.com/content/problem/464979/visual-studio-2019-is-responding-too-slow.html -
I've never used the library, but do you not want: // this: var testChannel = client.channels.cache.get('channel id') // instead of this? var testChannel = client.channels.cache.get(channel => channel.id === ('*channel id here*'))
-
export: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export data: https://vuejs.org/v2/api/#data
-
I don't quite understand your question... You want to pass a variable into the find command? You want to assign the result of the find command to a variable? Something else?
-
Modified from the stackoverflow answer you've provided: secedit /export /cfg c:\secpol.cfg (gc C:\secpol.cfg).replace("DontDisplayLastUserName=4,0", "DontDisplayLastUserName=4,1") | Out-File C:\secpol.cfg secedit /configure /db c:\windows\security\local.sdb /cfg c:\secpol.cfg /areas SECURITYPOLICY rm -force c:\secpol.cfg -confirm:$false 1. Export the system security configuration to C:\secpol.cfg 2. Get the content of this file and make string replacement to enable your desired policy 3. Update the local security policy with the updated configuration 4. Delete th
-
You could use L’Huilier’s Theorem and do everything in terms of side lengths, which are trivial to calculate with polar coordinates.
-
Use Girard's theorem. In the case that your angles sum to ≈ 2π, then E should be positive and ≈ π.
-
https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image
-
https://jsfiddle.net/ew068b1x/
-
It is HTML, and you can read more about it at: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest, more specifically the "HTML in XMLHttpRequest" guide. Yes, use appendChild(), something like: document.body.appendChild(xhr.responseXML.all.namedItem('main_news'));
-
Here you go: (function() { var xhr = new XMLHttpRequest(); if (!xhr) { console.error('Cannot create XMLHTTP instance'); return false; } xhr.onreadystatechange = extractNews; xhr.open('GET', 'https://www.startsiden.no'); xhr.responseType = 'document'; xhr.send(); function extractNews() { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { // Insert this into DOM // xhr.responseXML.all.namedItem('main_news'); } else { console.error('There was a problem with the request.'); } } } })(); This w
-
I'd suggest using watchdog for this.
-
https://www.mailgun.com/ will give you 10,000 free emails per month, so I'd suggest starting there.