after following all those ^ instructions and deleting all my gmail contacts my spam issue happened agan :( don't know what to do besides deleting my account but that might not actually fix anything
i know it's possible that whoever's doing this just stole my contacts and they're still sending messages that only look like they're from me but i still get the rejected messages kicked back to me so maybe they're actually using my account? idk
― linda cardellini (zachlyon), Monday, 14 July 2014 03:09 (ten years ago) link
Do the spam messages show up in your Sent folder? If not, then probably your email address is forged in the headers.
― cheese is never wrong (doo dah), Monday, 14 July 2014 11:26 (ten years ago) link
yeah, that seems to be the case :/ the headers are off (uses my email name rather than my real name like normal, which i guess constitutes "off", though maybe it's happening cause the email is being marked as a potential spoof and gmail changes it?? idk. nothing in my Sent folder though) so i guess i'm just gonna keep sending awkward spam emails to deceased family members and college professors i haven't spoken to in five years
― linda cardellini (zachlyon), Monday, 14 July 2014 19:15 (ten years ago) link
When you choose random shuffle playback it seems that it takes a while for the randomness to cover the full range of content. Is this the way random number generators work or is this just a problem that I got wrong on a problem set?
― youn, Saturday, 26 July 2014 00:30 (ten years ago) link
"Shuffle" as most commonly implemented will just play all the songs in a playlist in a random order, without any weighting or bias to play an "even distribution" of the songs inside. If you have, to use an extreme example, 99 songs by The Beatles and one song by the Mormon Tabernacle Choir in your library, the Mormon Tabernacle Choir song is equally likely to be in any one of the 100 play order positions, so you wouldn't be surprised if you have to listen to over half your Beatles songs before you hear the Mormon Tabernacle Choir (since you'd expect that about half the time). So in a more realistic scenario, yeah, it's entirely possible that you'll hear multiple songs from one artist or album before you hear anything from another. If you have more of one thing than another thing, there are more orderings where you hear a bunch of the first thing in a row than a bunch of the second thing in a row. Generally though any pattern you discern in your shuffle mix is confirmation bias. (Humans are pretty bad at coming up with or identifying random numbers, or making random choices. There's literature out there on this.)
― Forks I'd Clove to Fu (silby), Saturday, 26 July 2014 05:50 (ten years ago) link
Ahh -- I should have realized there were too many Pooh Sticks songs ... but even within the same album I have the feeling that I can predict how things will jump around from some seed number and that it takes a while for the trace of the seed to go away ... if only I had a very long album or boxed set even ... sorry for speaking so unscientifically about this!!
Also, with short link generators, how do they guarantee uniqueness each time, and can you always make them some fixed length?
― youn, Saturday, 26 July 2014 21:56 (ten years ago) link
0000100002...
That's 100,000 right there
Allow upper and lower case alphabetics and you get 62 to the power 5 combinations, about 916 million using a length of exactly 5 (like bit.ly)
They don't dish them out in order, no. There's probably a database behind the scenes (needs to be to store the target URL) and they pick a random unsigned value each time.
― koogs, Saturday, 26 July 2014 23:38 (ten years ago) link
Unassigned
― koogs, Saturday, 26 July 2014 23:40 (ten years ago) link
I work at a library and I want to get the IT department to implement an independent identifier system not dependent on any other system. I was told various things by various people, but the simplicity and effectiveness of what you've described seems obvious. I can't imagine 916 million not being enough. Is a database of that size common and manageable on typical hardware?
― youn, Sunday, 27 July 2014 01:25 (ten years ago) link
Sure. Especially as each row probably only has three columns in it.
That reminds me: Google has a book scanning service that is scans out-of-copyright books and adds them to archive.org. it uses a similar scheme, uppers, lowers, digits. But if you try and Google one of their own ids it doesn't work because their search engine treats uppers and lowers the same.
https://archive.org/details/ladandlassastor00reevgoog - AjQOAAAAYAAJ
https://www.google.com/search?q=AjQOAAAAYAAJ&ie=utf-8&oe=utf-8&aq=t
― koogs, Sunday, 27 July 2014 04:27 (ten years ago) link
So the program to fill in the first column would be something like nested for statements for each position that iterate over the 26 lower case and 26 upper case letters and 10 digits? Is such a program included in libraries of common programming languages? Would it take a reasonable amount of time to fill in the first column? And if you did not want your identifiers assigned in sequence, you would use a random number generator to pick an unassigned identifier between allowable values in the first column, then once assigned add the status to the second column and the URL to third?
It is good to know that users want to search on these identifiers ... (Thanks!!)
― youn, Sunday, 27 July 2014 10:48 (ten years ago) link
competing ways of doing this, as usual - do the work upfront or do it when you need it. the first is like a bag of lottery balls. as you remove them the bag gets emptier and emptier and every ball you pull out is guaranteed to be a new number. but you've needed to create 916 million lottery balls ahead of time.
the second case, just think of a random number. then check to see if you've already used that number. if you have, pick another number and repeat. if not, add it to your list. the check gets harder as time goes by (more hits, so this works better if your keyspace is much larger than your number of items), but you're spared the pre-creation task.
as for creating the random strings, it's pretty trivial in any programming language:
String str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";String s = "";for (int i = 0 ; i < 5 ; i++) { s += charAt(Math.random() * str.length);}
(yes, StringBuilder(), i know)
(there's generally a base 64 encoder but that uses 0-9 a-z A-Z and two punctuation characters (_+/- it differs) which complicates things.)
― koogs, Sunday, 27 July 2014 14:31 (ten years ago) link
Ah -- it makes much more sense to make the character selection the random part, particularly if you're not going to be generating the numbers beforehand, which should be fine. This is great. Now I think I have enough information to ask about it and to respond constructively if I'm told it can't be done. Thanks!
― youn, Sunday, 27 July 2014 14:51 (ten years ago) link
Never forget the adage that if a software person tells you something can't be done what they mean is it's not fun to do.
― Forks I'd Clove to Fu (silby), Sunday, 27 July 2014 15:41 (ten years ago) link
the generation side of this is probably tiny compared with marking all the books with the generated numbers.
― koogs, Sunday, 27 July 2014 17:04 (ten years ago) link
Is multi-threading generally more efficient than multi-tasking (running multiple instances of the same process)? I am running a program that in the latest version is supposed to run multi-threaded if multiple cores are available. A version that does not run multi-threaded was already installed on a server that I was eventually allowed to use for the task. I am wondering if it is worth asking the system administrator if the latest version could be installed.
― youn, Thursday, 31 July 2014 23:24 (ten years ago) link
Generally a program which can take advantage of multiple cores will be able to do more in less time (assuming that the program can run multiple tasks in parallel), so yes, multi-threading is better.
― silverfish, Friday, 1 August 2014 13:35 (ten years ago) link
I have both an iPhone and am Android tablet. The phone has 4G data; the tablet does not.
Is there any way to transfer files directly from iOS to Android without using the Internet, possibly via WiFi or Bluetooth? I mean, there must be SOME way... Right?
― Gay Fire Beautiful Dong (Stevie D(eux)), Friday, 29 August 2014 19:12 (ten years ago) link
Also, the phone does not tether because AT&T blows
― Gay Fire Beautiful Dong (Stevie D(eux)), Friday, 29 August 2014 19:13 (ten years ago) link
You'll need to download an app but apparently: http://www.techrepublic.com/blog/smartphones/send-files-between-android-and-ios-with-fast-file-transfer/
― OH MY GOD HE'S OOGLEEE (Leee), Friday, 29 August 2014 19:14 (ten years ago) link
I saw that but that's only Android -> iOS
― Gay Fire Beautiful Dong (Stevie D(eux)), Friday, 29 August 2014 19:21 (ten years ago) link
I've started using the free Microsoft Office Online: it has Word, Excel, and a bunch of other worthy stuff, but all I care about is music storage (15 GB free). Thinking about paid (the cheapest, $1.99 monthly for 100 GB), but will see how it goes for a while. Anybody use it for that, any problems? How does it compare with Google's Drive re music storage?
― dow, Monday, 8 September 2014 21:55 (ten years ago) link
I hope it won't think promo package zips are boots.
― dow, Monday, 8 September 2014 21:56 (ten years ago) link
I think that if you use Dropbox across two devices on the same wi-fi network, it skips the internet when syncing, but I'm not 100% on that.
― Alba, Tuesday, 9 September 2014 00:26 (ten years ago) link
Oh, yeah, here you go:
https://www.dropbox.com/help/137
― Alba, Tuesday, 9 September 2014 00:27 (ten years ago) link
sry i meant like wifi directly btwn the two devices, not using a separate wifi network
like if I'm on a bus or something
― Gay Fire Beautiful Dong (Stevie D(eux)), Tuesday, 9 September 2014 01:45 (ten years ago) link
Ah. This seems to do that:
https://itunes.apple.com/gb/app/send-anywhere-file-transfer/id596642855?mt=8
― Alba, Tuesday, 9 September 2014 09:00 (ten years ago) link
Actually, I'm not sure it does. I will end my unhelpful Googling now.
― Alba, Tuesday, 9 September 2014 09:03 (ten years ago) link
xp when you say music storage, do you mean streaming OTG? Or cloud archiving? If the former, then Google Music is fantastic. You can upload 20k songs into the cloud and stream them anywhere, for free. I use it all the time, can't recommend it highly enough,
― DISMISSED AS CHANCE (NotEnough), Tuesday, 9 September 2014 12:02 (ten years ago) link
Thanks for the tip on GM! But mainly I meant cloud archiving.
― dow, Tuesday, 9 September 2014 12:49 (ten years ago) link
dumb computer question: would it be possible/reasonable to build a laptop with two power sockets, one on each side? because this would revolutionize everything for me
― linda cardellini (zachlyon), Friday, 3 October 2014 20:00 (ten years ago) link
power jack probably the better choice of word there
― linda cardellini (zachlyon), Friday, 3 October 2014 20:01 (ten years ago) link
I've never heard of such a thing, no idea if it's possible, ever been done before, etc.
― Spirit of Match Game '76 (silby), Friday, 3 October 2014 20:11 (ten years ago) link
yeah i don't think it exists (yet!!) just wondering if it would be an awful idea hardware-wise
― linda cardellini (zachlyon), Friday, 3 October 2014 20:16 (ten years ago) link
I don't know enough about electricity to tell you it'd be dangerous or difficult, so I assume the reason it doesn't exist is that you're the first person to ever want it.
― Spirit of Match Game '76 (silby), Friday, 3 October 2014 20:17 (ten years ago) link
it would make things much easier for people like me who spend 90% of their time lying down on different couches and beds
― linda cardellini (zachlyon), Friday, 3 October 2014 20:25 (ten years ago) link
get an iPad tbh
― Spirit of Match Game '76 (silby), Friday, 3 October 2014 20:35 (ten years ago) link
Wait a couple years for wireless power transmission
― Elvis Telecom, Saturday, 4 October 2014 03:20 (ten years ago) link
hope you like that wireless power when it's burning a hole thru yr abdomen
― Spirit of Match Game '76 (silby), Saturday, 4 October 2014 03:27 (ten years ago) link
― linda cardellini (zachlyon), Friday, October 3, 2014 4:00 PM Bookmark Flag Post
No
― calstars, Saturday, 4 October 2014 03:32 (ten years ago) link
xp
Pretty sure I've irradiated most of my insides from being a computer jock for so long.
― Elvis Telecom, Saturday, 4 October 2014 03:37 (ten years ago) link
You know how on a PC you can upload an image found online to Facebook, etc. by copying the image's URL and pasting that URL in the address bar when searching for a file to upload? Can that be done w/ a Mac somehow?
― Je55e, Saturday, 25 October 2014 18:47 (ten years ago) link
not generally. save the image by dragging it to your desktop or whatever then upload it like a regular file.
― caek, Saturday, 25 October 2014 18:57 (ten years ago) link
I am looking at ILX using Chrome on Mac OSX, updated my Flash today and now there's just white space instead of a YT embed, can anybody advise on how to get them back?
― MaresNest, Sunday, 25 January 2015 20:54 (nine years ago) link
1. Somebody help MaresNest (or maybe try this thread would be better for that Q Ideas for ILX)
2. Recommendation for a good file search tool for a Windows 7 computer?
3. Is there a "favorite hoodjadoojas" (sp??) thread for windows? (I guess I could search but I'm using Zing so I can't right now.)
Thanks!
PS: a 3-legged dog just woofed at me like it wanted to play.
― Je55e, Saturday, 31 January 2015 01:00 (nine years ago) link
Jesse the built in search function in Win 7 is p decent esp if your drive is indexed. Are you having probs with it?
― Jennifer 8.-( (Stevie D(eux)), Saturday, 31 January 2015 02:04 (nine years ago) link
Don't know if this is related, but Youtube just changed its default display platform from Flash to HTML5
http://www.theverge.com/2015/1/27/7926001/youtube-drops-flash-for-html5-video-default
― Lee626, Saturday, 31 January 2015 05:58 (nine years ago) link
chrome uses its own built-in copy of flash so i don't think updating flash should fuck with it? i also think youtube has maybe been serving HTML5 video to chrome as default for a while now
― 1staethyr, Saturday, 31 January 2015 06:09 (nine years ago) link
Thanks for your help guys.
I figured it out, I typed 'about;plugins' in Chrome and got the list up in screen, a quick disable/enable of the Flash did the trick.
― MaresNest, Saturday, 31 January 2015 16:19 (nine years ago) link
Damn I could have answered that one, had that problem recently as well.
Handy to bookmark that plug in location, I can't see it in the options.
― Drop soap, not bombs (Ste), Saturday, 31 January 2015 16:52 (nine years ago) link