Re: [OT] Internet use on 4G LTE

2018-01-07 Thread Greg Wood
Hi Tony, All,

I used to have a script on a mac to enable/disable EVERY piece of traffic
on my computers firewall that wasn't just chrome - I can find it if anyone
wants a copy.

So at a place like Thailand you could run it before you connected and only
chrome(or other browser) was allowed in/out.

I just had a look about for a windows PowerShell one but couldn't find an
equivalent. This might help in the future if you had a list of allowed
programs/ports to stop all the background chatter.

There are probably apps out there but i think I would rather know exactly
what is running to stop/allow items




Greg Wood
e: g...@woodgreg.com
t: +61417044439


On 4 January 2018 at 01:36, Tony Wright <tonyw...@gmail.com> wrote:

> Hi guys,
>
> On holiday at the moment in Thailand, and I purchased 4GB of data on a
> local mobile network for the princely sum of A$6. I managed to use the
> entire amount in about 2 hours and I can't figure out how, because I was
> mostly just browsing the web.
>
> I took a look at the logs and it shows:
> 03/01/2018
> 17:49:53
> internet
> AIS
> 7
> 0.00
> 03/01/2018
> 17:50:53
> internet
> AIS
> 1,615,783
> 0.00
>
> So in about 1 minute, it apparently managed to download 1.6GB of data. So
> my first thought was, perhaps windows update downloaded some data, or
> onedrive perhaps (although I haven't put anything on onedrive lately.)
>
> Either way, 1.6GB of data is extraordinarily high. So I think I have to
> call BS.
>
> My understanding is that the top speed of 4G LTE is 50Mbps, so the minimum
> time in perfect conditions to download that amount of data would be 4
> minutes, and in usual conditions, it would probably take about 20 minutes.
>
> Just hoping someone can confirm it for me before I potentially go and
> embarrass myself.
>
> Do I have it right?
>
> Kind regards,
> Tony
>


Re: Apache and WordPress redirects and mime types - trying to fix SQLDownUnder podcast feed

2017-12-10 Thread Greg Wood
blame the network guy ;)



Greg Wood
e: g...@woodgreg.com
t: +61417044439


On 11 December 2017 at 09:30, Greg Low <g...@greglow.com> wrote:

> Got it sorted thanks.
>
>
>
> The real problem turned out to be the HTTP redirect at the DNS level.
> After removing that, and just setting www to the same IP, those issues
> disappeared.
>
>
>
> Thanks!
>
>
>
> Regards,
>
>
>
> Greg
>
>
>
> Dr Greg Low
>
>
>
> 1300SQLSQL (1300 775 775) office | +61 419201410 <+61%20419%20201%20410>
> mobile│ +61 3 8676 4913 <+61%203%208676%204913> fax
>
> SQL Down Under | Web: www.sqldownunder.com |http://greglow.me
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-bounces@
> ozdotnet.com] *On Behalf Of *Greg Wood
> *Sent:* Sunday, 10 December 2017 4:31 PM
> *To:* ozDotNet <ozdotnet@ozdotnet.com>
> *Subject:* Re: Apache and WordPress redirects and mime types - trying to
> fix SQLDownUnder podcast feed
>
>
>
> Hi Greg,
>
> This rings bells for me about the order it applies the rules and
> subsequently stops processing the remainder of the rules.
>
>
>
> There is another way you could do this. It is to put a explicit rule for
> your xml file before anything else and then do a FilesMatch .xml then do a
> ForceType to rss+xml
>
>
>
> Have a search on those two terms and you might find some examples
>
>
>
> Greg
>
>
>
>
> Greg Wood
>
> e: g...@woodgreg.com
>
> t: +61417044439 <+61%20417%20044%20439>
>
>
>
>
>
> On 10 December 2017 at 11:24, Greg Low <g...@greglow.com> wrote:
>
> Hi Brains Trust,
>
>
>
> Hoping someone on the list knows about this stuff.
>
>
>
> I've moved our old site at www.sqldownunder.com to a WordPress site at
> sqldownunder.com (long story). Most things are ok now. I added a DNS HTML
> redirect from www to http://sqldownunder.com and that seems to get people
> there.
>
>
>
> One issue though is our RSS feed. It was http://www.sqldownunder.com/
> SQLDownUnderMP3Feed.xml.
>
>
>
> I set up a mime type mapping from xml to application/rss+xml in the
> .htaccesss file and if I access it via http://sqldownunder.com/
> SQLDownUnderMP3Feed.xml it works fine. If, however, I access it via
> http://www.sqldownunder.com/SQLDownUnderMP3Feed.xml, it's returned with
> the mime type text/html and fails. I've got the following in the .htaccess
> file:
>
>
>
> # BEGIN WordPress
>
> AddType application/rss+xml xml
>
> 
>
> RewriteEngine On
>
> RewriteCond %{HTTP_HOST} ^www.sqldownunder.com [NC]
>
> RewriteRule ^(.*)$ http://sqldownunder.com/$1 [L,R=301,NC]
>
> RewriteBase /
>
> RewriteRule ^index\.php$ - [L]
>
> RewriteCond %{REQUEST_FILENAME} !-f
>
> RewriteCond %{REQUEST_FILENAME} !-d
>
> RewriteRule . /index.php [L]
>
> 
>
>
>
> # END WordPress
>
>
>
>
>
> Anyone have any clues on this?
>
>
>
> Regards,
>
>
>
> Greg
>
>
>
> Dr Greg Low
>
>
>
> 1300SQLSQL (1300 775 775) office | +61 419201410 <+61%20419%20201%20410>
> mobile│ +61 3 8676 4913 <+61%203%208676%204913> fax
>
> SQL Down Under | Web: www.sqldownunder.com |http://greglow.me
>
>
>
>
>


Re: Apache and WordPress redirects and mime types - trying to fix SQLDownUnder podcast feed

2017-12-09 Thread Greg Wood
Hi Greg,
This rings bells for me about the order it applies the rules and
subsequently stops processing the remainder of the rules.

There is another way you could do this. It is to put a explicit rule for
your xml file before anything else and then do a FilesMatch .xml then do a
ForceType to rss+xml

Have a search on those two terms and you might find some examples

Greg


Greg Wood
e: g...@woodgreg.com
t: +61417044439


On 10 December 2017 at 11:24, Greg Low <g...@greglow.com> wrote:

> Hi Brains Trust,
>
>
>
> Hoping someone on the list knows about this stuff.
>
>
>
> I've moved our old site at www.sqldownunder.com to a WordPress site at
> sqldownunder.com (long story). Most things are ok now. I added a DNS HTML
> redirect from www to http://sqldownunder.com and that seems to get people
> there.
>
>
>
> One issue though is our RSS feed. It was http://www.sqldownunder.com/
> SQLDownUnderMP3Feed.xml.
>
>
>
> I set up a mime type mapping from xml to application/rss+xml in the
> .htaccesss file and if I access it via http://sqldownunder.com/
> SQLDownUnderMP3Feed.xml it works fine. If, however, I access it via
> http://www.sqldownunder.com/SQLDownUnderMP3Feed.xml, it's returned with
> the mime type text/html and fails. I've got the following in the .htaccess
> file:
>
>
>
> # BEGIN WordPress
>
> AddType application/rss+xml xml
>
> 
>
> RewriteEngine On
>
> RewriteCond %{HTTP_HOST} ^www.sqldownunder.com [NC]
>
> RewriteRule ^(.*)$ http://sqldownunder.com/$1 [L,R=301,NC]
>
> RewriteBase /
>
> RewriteRule ^index\.php$ - [L]
>
> RewriteCond %{REQUEST_FILENAME} !-f
>
> RewriteCond %{REQUEST_FILENAME} !-d
>
> RewriteRule . /index.php [L]
>
> 
>
>
>
> # END WordPress
>
>
>
>
>
> Anyone have any clues on this?
>
>
>
> Regards,
>
>
>
> Greg
>
>
>
> Dr Greg Low
>
>
>
> 1300SQLSQL (1300 775 775) office | +61 419201410 <+61%20419%20201%20410>
> mobile│ +61 3 8676 4913 <+61%203%208676%204913> fax
>
> SQL Down Under | Web: www.sqldownunder.com |http://greglow.me
>
>
>


Re: [OT] New surface laptop

2017-07-03 Thread Greg Wood
I have always had issues with DPI, external monitors and my Surface Pro 3.

The way I resolve,  is to only ever bootup/login to windows 10 with your
external monitors plugged in.
Then you can plug, unplug all you wish, as long as that first login is with
the screens in

But if you first login to the surface with no screens connected, then go
and connect, it is crazy DPI problems. I have to then log off or reboot to
make it look better.


I have 3 Dell U2414H screens daisy chained into the mini display port - no
dock needed.

Greg




Greg Wood
e: g...@woodgreg.com
t: +61417044439


On 3 July 2017 at 21:08, Ken Schaefer <k...@adopenstatic.com> wrote:

> Why would UI performance suck if the DPI were different? It’s just raw
> rendering data pumped out over displayPort – and surely driver only cares
> about how many horizontal vs. vertical pixels to render. If anything this
> would be a Microsoft OS problem surely?
>
>
>
> FWIW, I haven’t experienced anything like David (I’ve got two different 4K
> monitors at home – 32” and 24”, plus 1080i monitors, and a whole bunch of
> different projectors, TV screens and monitors at work) – this is the first
> I’ve ever heard of this issue.
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-bounces@
> ozdotnet.com] *On Behalf Of *David Kean
> *Sent:* Monday, 3 July 2017 4:30 PM
> *To:* ozDotNet <ozdotnet@ozdotnet.com>
> *Subject:* RE: [OT] New surface laptop
>
>
>
> (I work for Microsoft)
>
>
>
> I purchased the i5, 256 GB one for my wife last week.
>
>
>
> First impressions, screen is really bright. The Alcantara cover is very
> different to what I thought it would be (less material-like than I
> thought). Much lighter and smaller when closed to my original Surface Book
> (mind you this is the fastest Surface Book you can buy). Curves are really
> nice on the hands and must less sharp than its Surface Book cousin. I found
> my Surface Book lacking as dev-box (as I find with a  lot of laptops), and
> UI performance really sucked if you connected an external monitor that
> wasn’t the same DPI – I suspect this thing would suffer from the same thing.
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-bounces@
> ozdotnet.com <ozdotnet-boun...@ozdotnet.com>] *On Behalf Of *Tom Rutter
> *Sent:* Monday, July 3, 2017 1:20 PM
> *To:* ozDotNet <ozdotnet@ozdotnet.com>
> *Subject:* [OT] New surface laptop
>
>
>
> Anyone got the new surface laptop? If so, thoughts?
>
> My old reliable dell laptop took its last breath today. :(
>
>
>
> Cheers
>


Re: Have Surface Pro 4 multi monitor Display issues been resolved?

2016-01-24 Thread Greg Wood
Hi All,

I guess a few days have passed and you might have all of this solved! One
thing is try better cables.


Not sure if this is going to help anyone but I have an SP3 running 3
Dell U2414H (rev3) monitors running straight off the tablet, no docking
station. But i lose the Sp3 display when they are connected.

It was a pretty simple setup, with the Dell's having daisy chain of display
ports in and out. I just have one plug to plug into the side and a usb hub
for other devices.

One setup issue I had was a flickering screens, or not working at all at
the start, i chucked ALL of the Dell cables out and got decent ones from
cable chick. Many forum posts kept saying cables are bad, so i just
replaced them all.

The daily issue I have for the dells is I need to turn the power off for 10
seconds each morning ( i ended up putting on there own power board and
switch) before they would be detected. But that is now just part of my
routine to plug it all in.

Not sure if this is relevant at all for sp4, but just how i operate my sp3
setup and no dock required.

Greg


Greg Wood
e: g...@woodgreg.com
t: +61417044439


On Tue, Jan 12, 2016 at 1:53 PM, Adrian Halid <adr...@halid.com.au> wrote:

> Thanks for the update. This was what I also wanted to know.
>
>
>
> Hopefully they resolve these issues quickly. I will have to keep my main
> setup as is until they are resolved.
>
>
>
> *Regards*
>
>
>
> *Adrian Halid*
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [mailto:
> ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Christopher Walsh
> *Sent:* Tuesday, 12 January 2016 10:05 AM
>
> *To:* ozDotNet <ozdotnet@ozdotnet.com>
> *Subject:* RE: Have Surface Pro 4 multi monitor Display issues been
> resolved?
>
>
>
> Further to Anthony’s issues.  There is an issue with the new Dock
> requiring a firmware update in the coming months (still waiting for
> Microsoft to provide a date!!!)
>
>
>
> Case is if you are using passive converters (cables from MiniDP to DVI, or
> MiniDP to HDMI or the shipped adapters) the connection between the dock and
> monitor will “drop out”.  This is a known issue at the moment and only
> affects HDMI/DVI connections, VGA isn’t an issue.
>
>
>
>
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [
> mailto:ozdotnet-boun...@ozdotnet.com <ozdotnet-boun...@ozdotnet.com>] *On
> Behalf Of *Anthony Borton
> *Sent:* Tuesday, 12 January 2016 9:51 AM
> *To:* ozDotNet <ozdotnet@ozdotnet.com>
> *Subject:* RE: Have Surface Pro 4 multi monitor Display issues been
> resolved?
>
>
>
> I wanted to add a word of caution with regard to the Surface Display Dock.
>
>
>
> I purchased the Surface Display Dock in the hopes of running 2 x 2560x1440
> monitors via the two mini display ports in the dock. Something the device
> should well be able to do. I am using a Surface Pro 4 with the display dock
> and have applied all the latest firmware and driver updates I can find. I
> am using two mini-DP to full size DP cables so no adapters.
>
>
>
> At the moment I am struggling to get reliable connection to just ONE of my
> BENQ BL2420PT monitors. Given up on two for now. After trying every
> possible solution I can think of and find online, this is what I end up
> doing just to get it displaying on one of the external monitors about 90%
> of the time.
>
>
>
> 1.   Unplug the power from the display dock. (I also remove the
> connection from the Surface but I’m not sure I need to)
>
> 2.   Wait for 45-60seconds.
>
> 3.   Plug the power cables back into the dock and connect the dock to
> the SP4
>
> 4.   Turn the SP4 on.
>
>
>
> This is the ONLY way I can get the device to display on my external
> monitor and even then it’s only 90% of the time. I’ve also changed the
> power settings to ensure the SP4 doesn’t go into sleep mode as it never
> comes back with the external display working.
>
>
>
> I have also used the same Display Dock and SP4 in another office using a
> DELL monitor at 1920x1080 and it seems to work far more reliably. Can’t
> easily confirm if the issue is more related to the BENQ monitor or the
> Display Dock at this time.
>
>
>
> It really shouldn’t be too much to expect these things just work surely.
>
>
>
> Cheers
>
>
> Anthony
>
>
>
> *From:* ozdotnet-boun...@ozdotnet.com [
> mailto:ozdotnet-boun...@ozdotnet.com <ozdotnet-boun...@ozdotnet.com>] *On
> Behalf Of *Adrian Halid
> *Sent:* Tuesday, 12 January 2016 10:37 AM
> *To:* 'ozDotNet' <ozdotnet@ozdotnet.com>
> *Subject:* RE: Have Surface Pro 4 multi monitor Display issues been
> resolved?
>
>
>
> Something else to be aware of.
>
>
>

Re: [OT] SSL testing

2015-11-05 Thread Greg Wood
Great site to check SSL certs. Thanks!

I ran this powershell on a win 2012 r2 machine and went from C to A with a
reboot

https://www.hass.de/content/setup-your-iis-ssl-perfect-forward-secrecy-and-tls-12





On Thu, Nov 5, 2015 at 3:54 PM, Tom Rutter  wrote:

> Further to my original email it turns out my mate's site has been
> compromised twice in the last few months. They didn't take the ssllabs test
> seriously either from what I've heard and the score remains. I guess I will
> be testing every site I shop from now on.
>
> Cheers
>
> On Mon, Nov 2, 2015 at 2:24 PM, Tom Rutter  wrote:
>
>> Folks
>>
>> I noticed a mate's shopping site over the weekend returning the following
>> in the connection info for the certificate:
>>
>> *Your connection to www.somesite.com  is
>> encypted using an obsolete cipher suite.*
>>
>> Did some googling, didn't understand much of it but landed on ssllabs.com
>> which runs a test on the site. It gave the site an F rating with the
>> following info
>>
>> - This server supports anonymous (insecure) suites (see below for
>> details). Grade set to F.
>> - This server supports weak Diffie-Hellman (DH) key exchange parameters.
>> Grade capped to B.
>> - This server accepts the RC4 cipher, which is weak. Grade capped to B.
>> - This server supports TLS_FALLBACK_SCSV to prevent protocol downgrade
>> attacks.
>>
>> Should my mate be concerned? The people who created and run his site I
>> assume don't know or do know and aren't concerned. Anybody here used
>> ssllabs before or an alternative and how much should you care about the
>> rating? Even the microsoft store only gets a B with various warnings about
>> inconsistent server configurations.
>>
>> Cheers
>>
>
>


Re: Optus to sell Office365

2014-08-01 Thread Greg Wood
On trying to find my latest office 365 query i found this thread again..

So, 1 month ago I raised a ticket to get a company name change via
Telstra

Maybe it will get done by Christmas.



Greg Wood
-- In October 2014,  I'm riding 200km to help Cure Cancer
-- Please donate, I need $2500 to actually ride -
http://www.conquercancer.org.au/site/TR?px=1394961pg=personalfr_id=1141s_src=GregWoodButton

g...@woodgreg.com
0417044439


On Mon, Jun 30, 2014 at 11:57 AM, Greg Wood g...@woodgreg.com wrote:

 If you have ever tried to deal with Telstra about T-suite / office 365 you
 should be prepared to put your brain in neutral and set aside at least an
 hour...

 Talking from experience, the most trivial request turns into a support
 call going around in circles a few times.


 Greg Wood
 -- In October 2014,  I'm riding 200km to help Cure Cancer
 -- Please donate, I need $2500 to actually ride -

 http://www.conquercancer.org.au/site/TR?px=1394961pg=personalfr_id=1141s_src=GregWoodButton

 g...@woodgreg.com
 0417044439


 On Sat, Jun 28, 2014 at 1:05 PM, ILT (O) il.tho...@outlook.com wrote:

 Greg, I agree. Peripheral to the Office365 matter, I would like to see
 Microsoft with a more prominent “marketing presence” than has been so in
 the last many years. But not to the extent and manner of Apple Stores and
 the Genius Bar.

 Perhaps the 3-year deal with Telstra hinged on Telstra’s large commitment
 to ‘cloud’ in Australia, a platform which did require some selling – as did
 software as a service. I know the SBIT Pro group members were annoyed at
 the Telstra-only model, and I don’t think the addition of Optus would
 ameliorate that irritation.

 It was interesting to note the 1Tb cloud storage trumped by Google
 announcing ‘unlimited’.
 --

 Ian Thomas
 Victoria Park, Western Australia

 *From:* ozdotnet-boun...@ozdotnet.com [mailto:
 ozdotnet-boun...@ozdotnet.com] *On Behalf Of *GregAtGregLowDotCom
 *Sent:* Saturday, June 28, 2014 10:41 AM
 *To:* ozdotnet@ozdotnet.com
 *Subject:* RE: Optus to sell Office365



 I don’t want to see it forced through any reseller. I just want to have
 the option to deal directly with Microsoft. Other people in the loop just
 complicate support for me. I can do that with Google and with any number of
 other global providers, so why not Microsoft?



 If I was running a milk bar or a cafe, I might feel differently.



 Both options should be available (ie: dealing with a partner if you need
 that type of help, or not dealing with one if you don’t need that type of
 help). And partners that push the products should be part of the ongoing
 return on the products. I used to like the model that some companies used
 when ADSL first appeared. Customers could deal directly with them if they
 wanted. Partners could be involved in getting people signed up, and if they
 did, they were part of the revenue stream from that point on (indefinitely
 in relation to those connections).



 Bottom line is that I shouldn’t be penalised for being based in Australia.



 Regards,



 Greg



 Dr Greg Low



 1300SQLSQL (1300 775 775) office | +61 419201410 mobile│ +61 3 8676 4913
 fax

 SQL Down Under | Web: www.sqldownunder.com



 *From:* ozdotnet-boun...@ozdotnet.com [
 mailto:ozdotnet-boun...@ozdotnet.com ozdotnet-boun...@ozdotnet.com] *On
 Behalf Of *ILT (O)
 *Sent:* Friday, 27 June 2014 7:56 PM
 *To:* ozdotnet@ozdotnet.com
 *Subject:* Optus to sell Office365



 I know the Small Business IT professionals groups around Australia have
 been p!ssed off with O365 sales being Telstra-controlled for so long, so
 this
 http://www.smh.com.au/it-pro/cloud/optus-gearing-up-to-fight-telstra-on-microsoft-365-turf-20140623-zse9x.html
 announcement (SMH, today) is good news.

 *Optus gearing up to fight Telstra on Microsoft 365 turf *

 Optus is preparing to tread on Telstra’s turf in the cloud computing
 market after securing a long overdue partnership with Microsoft.

 There’s more interesting information in that SMH IT Pro article.


 --

 Ian Thomas
 Victoria Park, Western Australia





Re: Optus to sell Office365

2014-06-29 Thread Greg Wood
If you have ever tried to deal with Telstra about T-suite / office 365 you
should be prepared to put your brain in neutral and set aside at least an
hour...

Talking from experience, the most trivial request turns into a support call
going around in circles a few times.


Greg Wood
-- In October 2014,  I'm riding 200km to help Cure Cancer
-- Please donate, I need $2500 to actually ride -
http://www.conquercancer.org.au/site/TR?px=1394961pg=personalfr_id=1141s_src=GregWoodButton

g...@woodgreg.com
0417044439


On Sat, Jun 28, 2014 at 1:05 PM, ILT (O) il.tho...@outlook.com wrote:

 Greg, I agree. Peripheral to the Office365 matter, I would like to see
 Microsoft with a more prominent “marketing presence” than has been so in
 the last many years. But not to the extent and manner of Apple Stores and
 the Genius Bar.

 Perhaps the 3-year deal with Telstra hinged on Telstra’s large commitment
 to ‘cloud’ in Australia, a platform which did require some selling – as did
 software as a service. I know the SBIT Pro group members were annoyed at
 the Telstra-only model, and I don’t think the addition of Optus would
 ameliorate that irritation.

 It was interesting to note the 1Tb cloud storage trumped by Google
 announcing ‘unlimited’.
 --

 Ian Thomas
 Victoria Park, Western Australia

 *From:* ozdotnet-boun...@ozdotnet.com [mailto:
 ozdotnet-boun...@ozdotnet.com] *On Behalf Of *GregAtGregLowDotCom
 *Sent:* Saturday, June 28, 2014 10:41 AM
 *To:* ozdotnet@ozdotnet.com
 *Subject:* RE: Optus to sell Office365



 I don’t want to see it forced through any reseller. I just want to have
 the option to deal directly with Microsoft. Other people in the loop just
 complicate support for me. I can do that with Google and with any number of
 other global providers, so why not Microsoft?



 If I was running a milk bar or a cafe, I might feel differently.



 Both options should be available (ie: dealing with a partner if you need
 that type of help, or not dealing with one if you don’t need that type of
 help). And partners that push the products should be part of the ongoing
 return on the products. I used to like the model that some companies used
 when ADSL first appeared. Customers could deal directly with them if they
 wanted. Partners could be involved in getting people signed up, and if they
 did, they were part of the revenue stream from that point on (indefinitely
 in relation to those connections).



 Bottom line is that I shouldn’t be penalised for being based in Australia.



 Regards,



 Greg



 Dr Greg Low



 1300SQLSQL (1300 775 775) office | +61 419201410 mobile│ +61 3 8676 4913
 fax

 SQL Down Under | Web: www.sqldownunder.com



 *From:* ozdotnet-boun...@ozdotnet.com [
 mailto:ozdotnet-boun...@ozdotnet.com ozdotnet-boun...@ozdotnet.com] *On
 Behalf Of *ILT (O)
 *Sent:* Friday, 27 June 2014 7:56 PM
 *To:* ozdotnet@ozdotnet.com
 *Subject:* Optus to sell Office365



 I know the Small Business IT professionals groups around Australia have
 been p!ssed off with O365 sales being Telstra-controlled for so long, so
 this
 http://www.smh.com.au/it-pro/cloud/optus-gearing-up-to-fight-telstra-on-microsoft-365-turf-20140623-zse9x.html
 announcement (SMH, today) is good news.

 *Optus gearing up to fight Telstra on Microsoft 365 turf *

 Optus is preparing to tread on Telstra’s turf in the cloud computing
 market after securing a long overdue partnership with Microsoft.

 There’s more interesting information in that SMH IT Pro article.


 --

 Ian Thomas
 Victoria Park, Western Australia



Re: [OT] Great SSMS add in

2013-06-08 Thread Greg Wood
Usual application not responding error.

Over a 4mb link to a site in Sydney from Melbourne. I will try reproduce
and see if anything I can spot for you.


Greg


Greg Wood
g...@woodgreg.com
0417044439


On Fri, Jun 7, 2013 at 11:56 AM, Alex Maslyukov maslu...@gmail.com wrote:

 Hi Greg,

 I am keen to find out what is the problem (I am the guy who developed this
 Add-in). if you can e-mailme exact error (like exception if it crushes)  I
 will try to resolve it.

 Regards,
  Alex


 On 7 June 2013 09:36, David Burstin david.burs...@gmail.com wrote:


 On 7 June 2013 09:31, Greg Wood g...@woodgreg.com wrote:

 Crashes my SSMS - 2008 R2

 Over a network to a database with 1000's of objects at most


 We are running SSMS - 2008 R2 and no one has had any problems. I suggest
 contacting the developer via his website. These are exactly the sort of
 issues he wants reported to him so that he can fix them.





Re: [OT] Great SSMS add in

2013-06-06 Thread Greg Wood
Crashes my SSMS - 2008 R2

Over a network to a database with 1000's of objects at most



Greg Wood
g...@woodgreg.com
0417044439


On Wed, Jun 5, 2013 at 1:26 PM, Rinaldo De Paolis 
rina...@connectedsystems.com wrote:

  Nice Work, just installed it works great

 ** **

 *Rinaldo De Paolis*

 * rina...@connectedsystems.com

 ( +61 8 9227 0416

 ( +61 4 5107 6211

 [image: cid:image001.png@01CDB070.49664FC0]  bjj4me

 [image: cid:image002.png@01CDB070.49664FC0]@bjj4me

 [image: Description: cid:image002.jpg@01C76545.12AE9A90]

 [image: Description: MSGoldPartner]

 ** **

 *From:* ozdotnet-boun...@ozdotnet.com [mailto:
 ozdotnet-boun...@ozdotnet.com] *On Behalf Of *Wallace Turner
 *Sent:* Wednesday, 5 June 2013 7:21 AM
 *To:* ozDotNet
 *Subject:* Re: [OT] Great SSMS add in

 ** **

 thanks, is installed and adding value already!

 On 4/06/2013 9:55 AM, David Burstin wrote:

  Hi folks, 

 ** **

 A friend of mine wrote this *free *add-in for SSMS. It's a great search
 tool for finding and manipulating tables, stored procs, functions and views.
 

 ** **

 http://sql-hunting-dog.com/

 ** **

 I love it. Of course, YMMV.

 ** **

 Cheers

 DB

 ** **

image001.pngimage003.jpgimage004.jpgimage002.png

Re: Sending emails from extra domains in Office 365

2013-04-27 Thread Greg Wood
Hi Greg,

Have you switched from Google hosted to Office 365 now?

Thoughts? comments? worth the hassle just yet?



Greg Wood
g...@woodgreg.com
0417044439


On Fri, Apr 26, 2013 at 5:57 PM, GregAtGregLowDotCom g...@greglow.comwrote:

 Spoke too soon. That still didn't work correctly.

 Loryan’s suggestion of a DL still seems to be the correct one. What I had
 to do was:

 1.  Remove the extra email address from the user
 2.  Create a distribution list that holds just that user
 3.  Configure the DL to have the target email address
 4.  Using Powershell, assign “SendAs” permission on the DL to that
 user:

 Start Powershell

 Enter your primary office 365 credentials using this command

 PS $MyCreds = Get-Credential

 Start a new session to the server

 PS $Session = New-PSSession -ConfigurationName Microsoft.Exchange
 -ConnectionUri https://ps.outlook.com/powershell/ -Credential $MyCreds
 -Authentication Basic -AllowRedirection
 PS Import-PSSession $Session

 Check the real name of the target distribution list

 PS Get-Group *

 Assign SendAs permission to the user

 PS Add-RecipientPermission distributionlistname -AccessRights SendAs
 -Trustee primaryuser

 When prompted, confirm that you want to assign it

 5.  When sending, choose the “From” option, from that pick the groups
 option, select the new group, and make sure the “Sending As” is still
 pointing to the primary user

 Hope that helps someone else.

 Regards,

 Greg

 Dr Greg Low

 1300SQLSQL (1300 775 775) office | +61 419201410 mobile│ +61 3 8676 4913fax
 SQL Down Under | Web: www.sqldownunder.com
 -Original Message-
 From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
 On Behalf Of Mark Hurd
 Sent: Friday, 26 April 2013 5:24 PM
 To: ozDotNet
 Subject: Re: Sending emails from extra domains in Office 365

 Ha! That's what I do with Outlook Express. I didn't think it'd still be
 the same!

 --
 Regards,
 Mark Hurd, B.Sc.(Ma.)(Hons.)

 On 26 April 2013 11:50,  g...@greglow.com wrote:
  Magic Grant. That's the winner. It's a pity that it's necessary but this
 would of course work and is simpler.
 
  Regards,
 
  Greg
 
  -Original Message-
  From: Grant Castner [mailto:gcast...@castnerit.com]
  Sent: Wednesday, 24 April 2013 9:25 PM
  To: Greg Low; 'ozDotNet'
  Subject: RE: Sending emails from extra domains in Office 365
 
  Hi Greg,
  One more option if you are using Outlook. It involves setting up a
 phantom POP account. More information on using distribution lists as well.
 
  http://community.office365.com/en-us/forums/158/p/12859/58290.aspx
 
  Cheers,
  Grant
 
 
  -Original Message-
  From: ozdotnet-boun...@ozdotnet.com
  [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Greg Low
  Sent: Wednesday, 24 April 2013 5:52 PM
  To: 'Ian Thomas'; 'ozDotNet'
  Subject: RE: Sending emails from extra domains in Office 365
 
  Wow, that's interesting thanks Ian. So it looks like the only way of
 doing it is to set up a distribution group for each email address rather
 just adding the email address to each user. I'll give it a shot tomorrow.
 
  Regards,
 
  Greg
 
 
  Greg
  Maybe this is the way to do it?
  http://community.office365.com/en-us/forums/158/t/22116.aspx
 
  Otherwise, I know a SMBiT Pro member (Robert Crane, in Brisbane) who
 would be able to definitively answer your question.
 
  
  Ian Thomas
  Victoria Park, Western Australia
 
  -Original Message-
  From: ozdotnet-boun...@ozdotnet.com
  [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Greg Low
  Sent: Wednesday, April 24, 2013 3:01 PM
  To: 'Mark Hurd'; ozDotNet
  Subject: RE: Sending emails from extra domains in Office 365
 
  Yes, I'm guessing the answer is going to be that you can't...
 
  (I was trying to replace our use of Gmail)
 
  Regards,
 
  Greg
 
  -Original Message-
  From: Mark Hurd [mailto:markeh...@gmail.com]
  Sent: Wednesday, 24 April 2013 4:54 PM
  To: Greg Low; ozDotNet
  Subject: Re: Sending emails from extra domains in Office 365
 
  IIRC Gmail took a while to implement that second feature too...
 
  --
  Regards,
  Mark Hurd, B.Sc.(Ma.)(Hons.)
 
  On 24 April 2013 13:32, Greg Low (GregLow.com) g...@greglow.com wrote:
  Sorry, have no idea why that one ended up blank. This was it:
 
 
 
  Hi Folks,
 
 
 
  Office 365 had the option to add another domain so you can receive
  email addressed to another domain.
 
 
 
  Ie: if you are a...@lincoln.com in Office 365, you can add
  abelincoln.com as an extra domain, then add a...@abelincoln.com as an
  extra email address to receive mail on.
 
 
 
  Anyone how you to then send email in Office 365 from a...@abelincoln.com
 ?
 
 
 
  Regards,
 
 
 
  Greg
 
 
 
  Regards,
 
 
 
  Greg
 
 
 
  Dr Greg Low
 
 
 
  1300SQLSQL (1300 775 775) office | +61 419201410 mobile│ +61 3 8676
  4913 fax
 
  SQL Down Under | Web: www.sqldownunder.com
 




Re: [OT] SQL Server Windows Authentication

2011-03-28 Thread Greg Wood
Hi Greg K,

I see you can only use sa. If you make a new sql login user on the SQL
Server and give it sysadmin does it see the databases just like sa?

Greg


Greg Wood
g...@woodgreg.com
0417044439



On Thu, Mar 24, 2011 at 1:58 PM, Greg Keogh g...@mira.net wrote:
 Hi Greg L and others,



 I’ve spent many hours over the last couple of days trying to get SQL Server
 2008 R2 Windows Authentication working over the LAN, with absolutely no
 success. I’m not experienced in this area, but I’ve tried every sensible
 trick I can think and nothing makes any difference. The worst thing is that
 I don’t know who to blame: the domain, SQL Server, user/group settings,
 what?



 I have now found that just one of the thirteen databases CAN be accessed and
 twelve can’t. I tried carefully comparing the attributes of a working and
 non-working DB, but the one that works comes from outside my office and is a
 mess, making it a useless apples and oranges comparison.



 Grant: I don’t see any strange schemas that are candidates for deletion.



 My only workaround for now is to use ‘sa’ in all connection strings.



 Greg K


Re: Databases for Local apps

2011-03-28 Thread Greg Wood
I've been waiting for someone to use -

http://simonwillison.net/static/2010/redis-tutorial/

Let us know how it goes.



Greg Wood
g...@woodgreg.com
0417044439



On Mon, Mar 28, 2011 at 11:16 AM, Greg Keogh g...@mira.net wrote:
 ESENT looks... interesting. Sounds similar to Isolated storage. (the key'd
 value part of it anyhow)

 No, quite different. Isolated Storage is just a piece of the file system.
 ESENT is a complete ISAM database. The C API is quite low-level and fiddly.
 The ManagedEsent project puts a managed wrapper around the API.

 Greg


Re: Propagate Database changes to application

2011-03-28 Thread Greg Wood
I presume SQL Server 2008, so a data driven subscription is probably
your choice.

You will see that MS dropped Notification Services, as no one used it.

Good luck!


Greg Wood
g...@woodgreg.com
0417044439



On Mon, Mar 28, 2011 at 5:06 PM, Stephen Liedig slie...@gmail.com wrote:
 Grant,
 Another way to do it would be to push changes to your application based on
 an update event occurring in your system. Whenever data changes, publish a
 my data has just been updated event and notify your clients of the update.
 This would negate the need to do unnecessary polling and remove the
 dependency on any caching mechanisms (which is not to say you can't use
 caching to store your data).
 - Steve

 On 27 March 2011 23:33, Grant Molloy graken...@gmail.com wrote:

 Hi list,
 I'm looking to have an application automagically update it's view of the
 data when the data in the connected database table changes.
 I've seen two main ways to do this so far.
 1. Poll the database every n seconds
 2. Use the System.Web.Caching.SqlDependancy object.
 Does anyone else know of any other better or smarter way of doing this ?
 thanks
 Grant



Re: Remote control hardware / software

2010-09-24 Thread Greg Wood
There is a solution with SMS and it even does a temperature check !! You
would need to rig up a reed/open close for the door etc etc etc etc


http://www.insitesms.com/tech.htm


http://www.solutionscentre.net.au/ProductList.htm


Greg



Greg Wood
g...@woodgreg.com
0417044439


On Fri, Sep 24, 2010 at 3:58 PM, Grant Molloy graken...@gmail.com wrote:

 Just send an SMS to one of the dancing girls !!


 On Fri, Sep 24, 2010 at 3:50 PM, mike smith meski...@gmail.com wrote:

 On 24 September 2010 15:21, Glen Harvy g...@aquarius.com.au wrote:

  Hi,

 I have received a few requests for a hardware / software solution that
 will allow a user to enter a PIN at a remote unattended site that will then
 contact via a wireless connection my software located off-site and providing
 the PIN is accepted, at least allow a door/gate to be opened, lights come
 on, dancing girls flash their tits etc etc etc.

 Does anyone know of such a beast available within Australia that will do
 such a thing via a suitable wireless interface?


 DO you have cost constraints?   I'm thinking too, if there are dancing
 girls, can you really claim it's unattended?  (if it is, the problems are
 going to be vandalism and people hacking it)  (Look at the construction of
 modern outdoor public phones, they're built like tanks)


 Thanks,

 Glen Harvy.




 --
 Meski

 Going to Starbucks for coffee is like going to prison for sex. Sure,
 you'll get it, but it's going to be rough - Adam Hills





[OT] C# Position Melbourne

2010-06-11 Thread Greg Wood
Just posted an advert for a new .NET dev. Send through details if you
are interested

http://seek.com.au/job/b-net-b-web-developer/melbourne-inner/17495324/87/1/

http://seek.com.au/job/b-net-b-web-developer/melbourne-inner/17495324/87/1/Greg