159 reputation
16
bio website iamskwerl.com
location Garden Grove, CA
age
visits member for 1 year, 7 months
seen May 3 at 5:02
stats profile views 30

CTO of Rey Interactive, creator of Antiquiet. @skwerl on Twitter.


Apr
30
awarded  Scholar
Apr
30
accepted How can I unpack an old Amazon AMI?
Apr
30
comment How can I unpack an old Amazon AMI?
Looks like I managed to register the AMI after making all parts of the AMI world-accessible. I'm downloading the files now via SCP. Thanks!
Apr
27
awarded  Editor
Apr
27
revised How can I unpack an old Amazon AMI?
added 611 characters in body
Apr
27
comment How can I unpack an old Amazon AMI?
I logged into my AWS account, and tried to register the AMI under the EC2 panel, but had some strange issues I'll note in the original question.
Apr
24
comment How can I unpack an old Amazon AMI?
it was registered on my account (i believe... definitely my aws account, managed via scalr.net). how would i launch an instance from the ami though? do i need to upload it somewhere? and then how do i make an ec2 instance use it?
Apr
22
comment How can I unpack an old Amazon AMI?
is that possible with files in this format? how would i go about doing that?
Apr
21
awarded  Student
Apr
21
asked How can I unpack an old Amazon AMI?
Feb
14
answered Find closest number in an array
Feb
14
comment Find closest number in an array
this is the least "elegant" solution provided here, but actually comes the closest to finding the true "closest" value. let's say you wanted the closest value to 38.9 is in array(37.5, 38.5, 39.5). this is the only solution that would be headed in the right direction. all of the others would give you 39.5. all you'd have to add to this solution is to measure the distances between $array[i+1] and $array[$i-1] and your target number, and take the one with the smallest difference.
Feb
14
comment Find closest number in an array
in op's example, 38 is the same distance from 37 as it is from 39. imagine the data set: array(37.5, 38.5, 39.5), and you want the closest value to 38.9. your example would give us 39.5 (lowest value greater than or equal) when what we really want is 38.5, the true "closest" value.
Dec
5
awarded  Necromancer
Sep
10
comment How can I format bytes a cell in Excel as KB, MB, GB etc?
not perfect (multiples of 1000 vs 1024), but good enough & upvoted. thanks!
Jun
28
comment ExternalInterface not working in IE after page refresh
this worked for me when everything else failed. was having the same exact problem, even in ie8 and ie9. darn ie.
Apr
6
comment Profile (timeline)Cover Edtiting via Api
if you found a way adam360, could you post it here?
Mar
28
comment How do I escape ampersands in XML?
i use cdata and & together.
Mar
23
comment How to exclude password protected posts in WordPress loop
this worked for me where the "better" solution below did not. i was using get_posts so this was really the simplest way to get the job done.
Mar
4
comment Regex to match words or phrases in string but NOT match if part of a URL or inside <a> </a> tags. (php)
Yeah, this is a nicer solution, but like Joe D., I need to match an array of keywords (currently being imploded with pipes into a regex). So the regex solution above is working out for the time being, but I would be interested to know if there's a way to do that with the DOM method.