Pages

Saturday, January 30, 2021

Blocking an individual title on Netflix

I wasn't aware this was possible but apparently, it is! If you have a specific programme you want to not be available on Netflix then you can block it by name (rather than by content rating).

Here's an example;

I've done a search for Free Rein (nothing against this programme, I was just looking for an example!). You can see the result here;


You can see there is both Free Rein the series and Free Rein Valentines TV movie.

I'm going to test blocking the TV movie (as it's easier to see).

The first thing is to go into your account (top right) and then scroll down until you see "Profile and Parental Controls"-section. Find the profile you are using and click on the right arrow to expand the details and then click "change" in the Viewing Restrictions section.

You then need to enter your Netflix password in order to make changes.

You'll then be presented with something that looks like this;

The top part allows you to set the "maturity" ratings.

Beneath that is a "Title Restrictions for Andy" section. Here you can type the name of a title that you want to block (the auto-complete matches what you type to an existing Netflix title) and then you click save.

When I return to the main screen and attempt to search for Free Rein I now see this;


I still have access to the series "Free Rein" but I no longer even see the TV movie.

There are disadvantages to working this way; you can't pre-emptively block a title that isn't currently on Netflix. For example, if you're in the UK and you do a search for "Harry Potter" - you'll not find anything as the movies aren't available in the UK on Netflix yet.





Monday, September 28, 2020

Postgres "Default" (column data) behaviour

 I've started working a lot with Postgres lately and one of the interesting things I've noticed is how the DEFAULT value is treated when doing an insert into a table.

For example, let's take the following test table;

DROP TABLE IF EXISTS ap_test;

CREATE TABLE ap_test(

    id SERIAL NOT NULL,

    stuff TEXT DEFAULT 'ok',

    CONSTRAINT ap_test_pk PRIMARY KEY (id)

);

So now let's look at the necessary inserts;

INSERT INTO ap_test(stuff) VALUES (null);

INSERT INTO ap_test(stuff) VALUES ('test');

INSERT INTO ap_test(stuff) VALUES (DEFAULT);

SELECT * FROM ap_test;

So basically we inserting three values into the table; NULL, 'test', and DEFAULT.

You get the following values in the table;


So "NULL" is not triggering the columns default value (as "NULL" is a value in itself). 

The problem comes when you're working with this table outside of SQL and using code. It's fairly typical to structure your code using a parametised string. For example;

insertSQL := 'INSERT INTO ap_test(stuff) VALUES (%)'

The problem is how do you handle the difference between NULL and DEFAULT. You need to include the logic in your code which ensures that if you mean NULL then it writes null, but if you mean "use the default" it writes DEFAULT.

I just found this interesting (coming from Oracle) and an environment where default values were handled very differently.

Thursday, May 17, 2018

Gmail: Blast from the Past!

I've subscribed to Office 365 and installed Outlook to access my Gmail account. Just for testing. I haven't gone insane.

One of the interesting default features of Outlook is that it downloads every single email you've ever received. Every one. By default. Given that GDPR is on the horizon (7 days and counting!) I thought you might be interested in this one before the bonfire of the emails begins.

Gmail was launched on 1st April 2004 (the entire History of which is available here via Wikipedia), I purchased a beta key off of eBay (I think!) and signed up in February 2005.

Here's the first ever email I received in my Gmail account; a Welcome from the Gmail Team:

Original Gmail "welcome" email

My particular favourite section;

"As you're using Gmail, you might also see some ads or related links. We believe that you shouldn't have to share your inbox with large, blinking, irrelevant ads. Gmail's small text ads are matched by computers, and designed to be relevant to the messages you're viewing. Which means for once, you might even find ads to be interesting and useful."

See? Outlook can be useful for some things ...

Friday, May 11, 2018

Office 365: Creating a Simple Flow (Workflow) in a SharePoint Online Document Library

I've not done a great deal of playing around with SharePoint Online in the past and so jumped at the chance during a recent rollout. One of the things I've always wanted to do is automatically group documents in a SharePoint document library based on the name of the file. To me this feature has always been one of the ones I've most wanted - the ability to name a word document (for example);

High-Level Design - Microsoft - Exchange - Andy Pellew - 20180510.doc

And have the SharePoint document library where I've saved it extract the Document Type, Vendor, Software, Author, and Date directly into the corresponding properties of the document in the SharePoint library (rather than getting the user to update it manually) would be fantastic. In SharePoint Online with the new "Flow" functionality, it looks like this was possible *without* having to resort to SharePoint designer (and the consequent "upgrade issues" use of that software always seems to raise).

So to test this, I set up a new document library called "Help and Support". I added a column called "Active" as a simple Yes/No column (default "Yes"), and then created an "Active Documents" view to only show documents with "Active" set to "yes", and left the "All Documents" view to show everything. I created a new flow (clicking on "Flow" and then "Create a flow").

Once I was happy it was working I  uploaded a few documents;

SharePoint Online document library
You'll notice that all the documents in the view are PDF's. While it would be great to jump straight in and create all the columns I listed above it would be a little complicated for this post, so I'm going to make it simple; if it's a PDF active is "yes", if it's not then active is "no". Clear?

Let's see how it works. Clicking on "Flow" and then "See your flows" takes you to a new page;

My Flows
Clicking on the name of the flow "When a new file is added in SharePoint, complete a custom action", this then takes you to the details page;

My Flows > Flow Details
As you can see I haven't changed the description from the default (terrible practice, if it were staying then I would update it!).

Clicking "Edit flow" at the top shows the flow;

Flow details
As you can see this is an effortless flow. Basically, it's just a simple condition (does it end in pdf), followed by setting the property depending on the result (yes or no)*.

Starting at the top; the flow fires every time a file is created.

The condition was a relatively simple "end with .pdf" however I wanted to add a small amount of complexity here by converting the name of the file into lowercase so that PDF, Pdf, pdf, etc. are all treated the same. This made things a bit more complicated as there didn't seem to be a way to use the simple editor to do this and I was forced to click "Edit in advanced mode". The code I added was this;

@endswith(toLower(triggerBody()?['{FilenameWithExtension}']), '.pdf')

From the simple dialogue I started with this;

@endswith(triggerBody()?['{FilenameWithExtension}'], '.pdf')

The help showed that toLower was a function so when I dropped that in it worked the first time - I was actually very impressed!

Next was updating the file's properties based on the result. Here everything was very much "select from a list"; picking SharePoint, picking "Update file properties", then the SharePoint site, and document library.

The one little bump in what was looking like a very intuitive process (the Active field had already appeared once I picked the library name) was the mandatory field Id;

Update file properties dialogue
As you can see it's currently set to the ID of the SharePoint item. It became clear that it should be this on entering the field and help popped up with ID as the only option, but until I'd actually entered and the help had appeared I literally had no idea what this was going to require!

I repeated the process with "if no", setting Active to "no".

Testing was quick and relatively easy - I clicked the "Test" icon and then uploaded a file.

And that was it.

*- Yes, I know, you could just do this in a simple step by doing everything in one go (setting the property based on the filename), but that's not really in the spirit of either or this example or how to do workflows in general!

Thursday, May 10, 2018

Office 365: Turning off Focused Mailbox in Outlook.com (Shared Mailbox hidden emails issue)

Welcome back. It's been a while :-)

Anyway, we recently had an issue with an Office 365 implementation that was preventing users who were accessing a shared mailbox from seeing all the emails. The problem was traced back to the "Focused" inbox. For the uses Inbox there was a clear option to disable this;

Focused Inbox (outlook.com)
As you can see the "Focused" and "Other" links in the inbox enable a quick way to switch between the types of email you wish to view. Unfortunately when the user scrolls down and looks in a shared mailbox the top options are no longer available;

Shared mailbox (without Focused and Other options)
Rather than default to showing all the emails the shared mailbox is only showing the Focused emails but with no way to switch this off.

On the plus side it's relatively easy to switch off the Focused inbox - but unfortunately, it has to be switched off for all mailboxes at once.

Click the settings cog at the top-right, and then the "Display Settings" option;

Settings > Display settings
This gives you the Display options;

Display settings
First, click the "Focused inbox", and then at the bottom select "Don't sort messages".

Finally, click "OK".

And that's it, the "Focused" link will have vanished and you'll see all emails in your inbox.





Wednesday, February 1, 2017

Communication & The Joys of Written English

I’ve been attending a communication course that’s been looking at the building blocks for how we communicate with each other. One of the first things the course highlighted is how much we rely on non-verbal communication when we’re attempting to understand what someone else it trying to communicate and how difficult this in in the modern world when you’re not dealing with someone face-to-face. For me I found this particularly relevant due to the large number of emails I receive and send every day, and as email is my preferred means of communication (for work anyway!).

One of the examples they used was around this simple phrase;
“I didn’t say he stole the money”.
The meaning of this simple phrase changes entirely depending on the one word you choose to emphasise;
I didn’t say he stole the money - It was someone else who said it
I didn’t say he stole the money – It really was someone else, not me
I didn’t say he stole the money – Was it implied? Did I write it down?
I didn’t say he stole the money – I said someone did it, but not him
I didn’t say he stole the money – Maybe it was his money (he got it from the bank for example)?
I didn’t say he stole the money – not that money, the other money (context)
I didn’t say he stole the money – I said he stole something else
It’s easy to see when it’s put like this how confusing it must be for people who just have the exact words someone is using (without any emphasis) to decide on the message they are trying to get across. To make things slightly more confusing we then discussed how exactly the same message, with the same emphasis, delivered by two different people could be taken multiple ways when the listener takes into account things like the relationship between them and the person talking, the wider context of the discussion, etc.

We didn’t even get as far as to touch on what if someone is not communicating in their first language.

Something to think about the next time you read something in an email …

Wednesday, October 12, 2016

Searching vs Filtering

This is one of the questions that keeps coming up (usually in discussion featuring Microsoft SharePoint and equally usually starting with a complaint about not being able to find something they "know is there").

Mostly the issues come down to the differences between searching and filtering and I put together the little example below which helped explain things;
Bob lives in a house. He's got lot of books one of which is the Great Gatsby. His bookshelf is in his lounge and everything in his life is nicely indexed and searchable and all result sets include the location. 
Bob wants to find his book. 
He does a search "book=great gatsby AND location=lounge". He gets the result that the book he's looking for is in the bedroom (where he left it). 
Now if he'd used the same text as a filter then he'd have had no results as the book wasn't in the lounge and filters don't have the flexibility to, if no result matches exactly, to widen out to include "close enough"-matches that, in this case, give him the result he's looking for.
This worked quite well so I thought I'd share it.

As a side note this also demonstrates the effectiveness of a really good search engine. Take, for instance, the majority of users habit of "filing" their emails into folders. If everyone in an enterprise was reliably able to search for things just think of all the time that could be saved by everyone just archiving emails out of their inbox rather than filing them away.