topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 10, 2026, 12:55 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 60 61 62 63 64 [65] 66 67 68 69 70 ... 225next
1601
Living Room / Re: I have a new found love for taking 360 degree panoramic photos!
« Last post by 4wd on October 05, 2015, 08:29 PM »
Funny, I couldn't get either of those images to show 360° in  either Firefox or MS Edge browsers.

Worked fine in Pale Moon, K-Meleon, IE11, Chromodo.

I did notice stitching errors in both of them, by the way.

Almost always going to happen where you have straight lines.
1602
I have the same problem with a tablet when connecting to TVs via mini-HDMI -> HDMI, the TV blanks every 10-15 seconds as it tries to resync with the tablet.

Nothing can be done about it other than find a TV it doesn't happen with - as Shades mentioned, unintended consequences arise from using differing versions of the standards.
1603
Find And Run Robot / Re: Plugin Request: Active Directory users
« Last post by 4wd on October 03, 2015, 08:51 PM »
You can have Powershell format the output any way you like, eg:

Code: PowerShell [Select]
  1. Get-ADUser -Filter * | Format-Table Name

will return a list of names for all AD users - in theory, I've got no way to test it.

Output will be:

Code: Text [Select]
  1. Name
  2. ----
  3. name 1
  4. name 2
  5. etc
  6. etc

Add the -HideTableHeaders parameter if you want to lose the headers, eg:

Code: PowerShell [Select]
  1. Get-ADUser -Filter * | Format-Table Name -HideTableHeaders

Get-ADGroup - cmdlet for listing/searching groups.

Full list of AD cmdlets: https://technet.micr...ibrary/ee617195.aspx
1604
Find And Run Robot / Re: Plugin Request: Active Directory users
« Last post by 4wd on October 03, 2015, 07:46 PM »
You can do it using Powershell since it can access pretty much anything to do with ADs, eg:

Searching Active Directory with Windows PowerShell
Get-ADUser
Essential PowerShell Cmdlets for Managing Active Directory - This has good examples of searching for a user
1605
General Software Discussion / Re: Request: Deepdream frontend.
« Last post by 4wd on October 03, 2015, 02:33 AM »
Well, it ran for a while and then died. :(

Here's the console/terminal log:

[libprotobuf WARNING google/protobuf/io/coded_stream.cc:505] Reading dangerously large protocol message.  If the message turns out to be larger than 1073741824 bytes, parsing will be halted for security reasons.  To increase the limit (or to disable these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.
[libprotobuf WARNING google/protobuf/io/coded_stream.cc:78] The total number of bytes read was 574671192
Successfully loaded models/VGG_ILSVRC_19_layers.caffemodel
conv1_1: 64 3 3 3                                                        [3/276]
...
Setting up style layer          2       :       relu1_1
Setting up style layer          7       :       relu2_1
Setting up style layer          12      :       relu3_1
Killed

I'm trying again with smaller images, but don't expect different results....

I had the exact same problem, I swapped over to a VPS (running Debian 7) with twice the RAM/VSWAP and it got as far you did above.

I think it's going to take a machine with a fair bit of RAM, (eg. 16GB), before it'll do something useful.

The style image I was using is only 190x266 (12.5kB) and the picture is 160x107 (11.1kB) and it still bombs out.
1606
Living Room / Re: Tweets > 140 characters?
« Last post by 4wd on October 03, 2015, 01:39 AM »
Oddly enough, he could have gained an extra character  :P
1607
General Software Discussion / Re: Request: Deepdream frontend.
« Last post by 4wd on October 03, 2015, 01:25 AM »
@JavaJones, if you want to post some pictures in this thread, I'd be happy to try them out once it's done getting set up, if 4wd doesn't get to them first. :)

I gave up, Debian 8.1 in a VM didn't want to work so then I swapped to a VPS running Ubuntu 14.04 and while the whole installation took less than 10 minutes, the process was killed when it came to generating images due to the following:

[02:13 root@wc neural-style] >  th neural_style.lua -style_image image.jpg -content_image GEDC1428.JPG -gpu -1
[libprotobuf WARNING google/protobuf/io/coded_stream.cc:505] Reading dangerously large protocol message.  If the message turns out to be larger than 1073741824 bytes, parsing will be halted for security reasons.  To increase the limit (or to disable these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.
[libprotobuf WARNING google/protobuf/io/coded_stream.cc:78] The total number of bytes read was 574671192
Successfully loaded models/VGG_ILSVRC_19_layers.caffemodel
Killed
[02:13 root@wc neural-style] >
1608
General Software Discussion / Re: Request: Deepdream frontend.
« Last post by 4wd on October 02, 2015, 07:25 PM »
P.S. If anyone gets the "DeepStyle" software running locally I'd love to send a few image pairs through it. I have some things I want to test. :D

For those interested in DeepDream, there's a downloadable VirtualBox VM available with it already installed, Ubuntu + Google's DeepDream.

Dodger Tools (5th image down the list) - 1.6GB

EDIT: The VM is set to German language, you can set it to English by opening a Term, editing /etc/default/locale, and then rebooting.

I'm currently installing Debian 8.1 to a VM to play with DeepStyle.
1609
General Software Discussion / Re: macro to edit a .txt file?
« Last post by 4wd on October 01, 2015, 05:43 PM »
That's because until you enter the ) the capture group hasn't been completed.
1610
Official Announcements / Re: Forum Upgraded August 30, 2015 - Report issues here
« Last post by 4wd on October 01, 2015, 03:22 AM »
I never tried it in a preview, but the spoiler in your post does nothing for me in IE, but works fine in Edge or FF.

Seems to work fine in IE11 on Win8.1Pro here in Deo's post but I can confirm it doesn't work in preview.
1611
General Software Discussion / Re: macro to edit a .txt file?
« Last post by 4wd on October 01, 2015, 01:45 AM »
How would I tell WG to find numbers 0 thru 9 and colon [:] all in one shot and make them disappear?

([\[\]\d":]) - match [, ], digits, ", or :
1612
General Software Discussion / Re: macro to edit a .txt file?
« Last post by 4wd on September 30, 2015, 08:47 PM »
WildGem

2015-10-01 11_46_22.png

Or if you want to do a global search and replace over multiple files there's Find & Replace or PSPad, both free.
1613
General Software Discussion / Re: macro to edit a .txt file?
« Last post by 4wd on September 30, 2015, 02:28 AM »
Some text sources list unwanted numbers in [square brackets], and although SedTester still removes the numbers, the square brackets cannot be removed with SedTester.

s/[][0-9\":]//g

Place the closing square bracket immediately after the opening square bracket, it'll be read as a character, and so will the following opening square bracket.

You also need to escape the quote (\") to have them removed.

2015-09-30 17_28_03.png

You could also remove double spaces created by character removal (see last two lines in example) by using a SED Script:

s/[][0-9\":]//g
s/(  )/ /g


2015-09-30 17_36_56.png

But that may screw up any space formatted tables.
1614
Living Room / Re: Quirky Asian Movies
« Last post by 4wd on September 24, 2015, 08:18 AM »
Don't know about quirky but a triplet of my favourite Japanese Sci-Fi are:

Gantz
Another Gantz
Gantz: Perfect Answer
1615
Living Room / Re: TOR Vidalia - cannot connect
« Last post by 4wd on September 23, 2015, 10:27 PM »
Try the alpha version: https://www.torproje...tall-5.5a3_en-US.exe

All I did was run it to extract, then run the Start Tor Browser shortcut, clicking Connect on the next window.

Just tried again, took 35 seconds for connection on first run, 5 seconds for subsequent runs.

Copy the folder to a flash drive and try it on another computer.

I entered Firewall and set a rule to 'allow' TOR connect & TOR exe; no success.

What TOR Connect ?
1616
Living Room / Re: TOR Vidalia - cannot connect
« Last post by 4wd on September 23, 2015, 09:13 PM »
Hasn't TOR Vidalia ceased to exist?

Now it's either TorBrowser or the main gateway/relay program.

TorBrowser 5.5a3 (latest alpha) connected OK after about a minute the first time I started it, thereafter it connected in about 10 seconds.

Only needed to allow tor.exe through the firewall.
1617
I usually install any drivers first thing after a Windows install, (then let it do its updates), if for nothing else than to let the chipset/video/SATA work optimally using the correct drivers rather than MS generics.

But seeing as it's a baseline recovery install, it's probably got all that already.
1618
Living Room / Re: Movies you've seen lately
« Last post by 4wd on September 23, 2015, 06:39 PM »
How would I get it to show just the video in full-screen?

Via streaming?

Use VLC, Media->Open Network Stream->paste in Youtube link.

Go to Tools->Effects & Filters->Video Effects->Geometry and enable Interactive Zoom.

2015-09-24 09_36_01.png

Click Hide to hide the controls after you're done.
1619
0. Remove any manufacturer bloatware  :)
1620
General Software Discussion / Re: Windows 10 Announced
« Last post by 4wd on September 23, 2015, 12:39 AM »
^Yeah, I want to vote 0 and I can't.
1621
General Software Discussion / Re: CCleaner Cloud
« Last post by 4wd on September 23, 2015, 12:36 AM »
Don't know if you had to have been running Agomo up until now to keep the 10 computer limit, (as opposed to signing up and not installing/running).

I've been running it over the same four computers since the start of the beta.
1622
General Software Discussion / Re: CCleaner Cloud
« Last post by 4wd on September 22, 2015, 11:44 PM »
The advantage is when your dad turns up and mentions that Youtube is complaining that Flashplayer is out of date and you tell him that it was updated on his computer at 11:56 this morning ;)

Or that you can also uninstall some unintentional program installations, (eg. Chrome), and see what other junk has been installed since the last time you were roped into fixing the computer without having to ring up and walk them through the steps.
1623
General Software Discussion / CCleaner Cloud
« Last post by 4wd on September 22, 2015, 07:56 PM »
Piriform's Agomo has finally come out of beta and is now called CCleaner Cloud.

Free users: If you sign up now you're limited to managing three (3) computers; if you signed up while Agomo was in beta you're limited to ten (10) computers, (you're listed as CCleaner Cloud FreeBetaUsers).

2015-09-23 10_32_17.png

2015-09-23 10_21_30.png

2015-09-23 10_33_42.png
1624
Official Announcements / Re: Forum Upgraded August 30, 2015 - Report issues here
« Last post by 4wd on September 22, 2015, 06:03 PM »
Thanks mouser!
1625
Official Announcements / Re: Forum Upgraded August 30, 2015 - Report issues here
« Last post by 4wd on September 22, 2015, 05:57 PM »
Speaking of Search, is there any chance 'Sort by' option could be moved to the result page rather than having to go into Advanced Search?

The default Relevant never seems to be AFAIAC and it's always been quicker to sort by date because I'm usually searching for a post I've already seen and therefore have a good idea of when it occurred.
Pages: prev1 ... 60 61 62 63 64 [65] 66 67 68 69 70 ... 225next