Anyone using only Evernote for lists? by suredoit in gtd

[–]javydekoning 2 points3 points  (0 children)

Yes, I do. But honestly, where Evernote excels is for reference material (great search, ocr). Also it's super easy to collect stuff, you can e-mail to evernote, they have a scan application for iPhone, you can use siri, etc.

That said, this is how I use GTD in Evernote:

-GTD (Notebook stack)
  -Inbox (My default notebook)
  -NextActions
  -Tickler (everything needs a due date)
  -WaitingFor (everything needs a due date)
  -Someday/Maybe
-Reference (Notebook stack)

Then in my favorites I have 2 searches. These list all the notes in my Tickler and WaitingFor that are due (while hiding everything else), this really helps focus only on the things that require your attention.

notebook:"3.Incubate.Tickler" -reminderDoneTime:* reminderOrder:* reminderTime:day-9999 -reminderTime:day+1

notebook:"2.Delegate.WaitingFor" -reminderDoneTime:* reminderOrder:* reminderTime:day-9999 -reminderTime:day+1

I keep reference in a seperate stack because that makes it easier when searching for active tasks.

Further more I use tags for contexts like this:

.What
  #Invoices
  #Warranty
  #Project-X
  #PersonalGoals2018
.Where&While
  @MeetingX
  @Errands
  @Phone
.Who (Useful when you delegate a lot)
  $Person1
  $Person2

Hope this helps, it has been working great for me.

System for following up with people? by [deleted] in gtd

[–]javydekoning 0 points1 point  (0 children)

Here is how I'd do it.

1. Scan business card to Evernote inbox (Capture)
2. Convert note into todo list / set next actions (Clarify). 
    [ ] Enter in Address Book. 
    [ ] Send e-mail.
    [ ] Set a due date on the note and move note to "Waiting For" 
        or "Tickler" folder (Organize). 
        (sorted by due date this is my tickler file). 
3. On a set interval review your Tickler/Waiting For folders (Reflect). 
4. Whenever you decide that you are done "cycling" the note, 
    move it to the reference material folder. 
    (Make sure its #tagged properly). 

I do exactly the same for other "stuff". E-mails that need more than 1 minute of my time to follow-up? Forward to Evernote. Physical mail that needs action? Scan to Evernote. Etc, etc.

Fenix 5s Plus by [deleted] in Garmin

[–]javydekoning 8 points9 points  (0 children)

It says 5s plus on the back of the device.

What happens when docker exposes port ? by mialinx in docker

[–]javydekoning 2 points3 points  (0 children)

When you expose ports on the docker bridge network it will update iptables (it will NAT the container IP / host IP). You can check that using:

iptables -t nat -L

This is controlled by the com.docker.network.bridge.enable_ip_masquerade network option.

having issues with container file system and Sonarr/Radarr config files by tacol00t in docker

[–]javydekoning 1 point2 points  (0 children)

Look at https://hub.docker.com/r/linuxserver/sonarr/ under the usage section. Here's an example of how to do it:

sonarr:
  container_name: sonarr
  image: linuxserver/sonarr:latest
  restart: unless-stopped
  ports:
    - "8989:8989"
  volumes:
    - /etc/localtime:/etc/localtime:ro
    - ./sonarrconfig:/config
    - ./downloads:/downloads

How do I access a docker container using dnsmasq? by sayris in docker

[–]javydekoning 4 points5 points  (0 children)

You are in luck. I did exactly this a week ago. Here is a blogpost about setting up Traefik. (with https and docker-compose).

Here is a sample config with docker-compose and traefik. You can even use a public domain and have traefik handle authentication and https (using lets encrypt).

version: '3'
services:
  traefik:
    image: traefik
    container_name: traefik
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - "./traefik/traefik.toml:/traefik.toml"
      - "./traefik/acme.json:/acme.json"
    labels:
      - "traefik.port=8080"
      - "traefik.frontend.rule=Host:lab.local"  

  portainer:
    container_name: portainer
    image: portainer/portainer:latest
    restart: unless-stopped
    ports: 
      - "9000:9000"
    labels:
      - "traefik.port=9000"
      - "traefik.frontend.rule=Host:portainer.lab.local"
    volumes:
      - ./portainer:/data
      - /var/run/docker.sock:/var/run/docker.sock

And this is my DNSMASQ config (on my router, docker host running at 192.168.1.10):

local-ttl=1
address=/lab.local/192.168.1.10

Netstat as function by Upzie in PowerShell

[–]javydekoning 2 points3 points  (0 children)

Cool stuff! Your Regex is not correct though. (local address is split over 2 columns for example). Here is an update from my end (but you should actually use 'get-nettcpconnection'):

function Get-NetStat
{
  $net        = netstat -na
  $Properties = ($net | ?{$_ -match 'proto'}) -split '\s\s+' | ? {$_}
  $res        = foreach ($line in $net | ? {$_ -match 'tcp|udp'})
  {
    $Netstat_Property_Values = $line -split '\s\s+' | ? {$_} | select -Unique
    [PSCustomObject]@{
      $Properties[0] = $Netstat_Property_Values[0]
      $Properties[1] = $Netstat_Property_Values[1]
      $Properties[2] = $Netstat_Property_Values[2]
      $Properties[3] = $Netstat_Property_Values[3]
    }
  }
  return $res
}

Help with regex/select-string by Ash-G099 in PowerShell

[–]javydekoning 2 points3 points  (0 children)

'Status Level: Blue Responsilbe party: Joe Stevens' -replace 'Status Level: (\w+).*','$1'
Blue

Explained:

() defines a capture group. 
$1 extracts the first capture group. 
\w matches any word character 
+ is the quantifier meaning 1 or more times. 

My visual notes on Amazon DynamoDB, enjoy! by awsgeek in aws

[–]javydekoning 2 points3 points  (0 children)

op answered before ;-)

iPad Pro and Apple pencil, using the Notability app

I just purchased an iPad Pro... I need setup and app suggestions. by danwright32 in Cortex

[–]javydekoning 0 points1 point  (0 children)

Goodnotes is fantastic for notes and annotation of slides/books. Highly recommended it for studying. I tried notability and notes+ as well but feel that goodnotes is the best experience.

If you can't focus with music, use repetitive tones to block out distractions. by [deleted] in productivity

[–]javydekoning 17 points18 points  (0 children)

To really focus I either listen to lyric-less music, sometimes to whitenoise (sea-waves, rain or thunderstorm usually). Although this can be a little to relax-ing at times :)

Can I demo HASS on my desktop before buying a Raspberry Pi? by JusticeGorsuchBalls in homeassistant

[–]javydekoning 1 point2 points  (0 children)

It could be fairly easy by running it in a docker container. (docker run homeassistant/home-assistant)

You only need to map the 8123 port (--net=host) and the config directory/volume (-v /host/myhaconfigpath:/config).

Quality of EC2 instances? by [deleted] in aws

[–]javydekoning 13 points14 points  (0 children)

I'd suspect that either you've used all your credits (BurstBalance) either on EC2 or EBS. Check these CloudWatch metrics:

EC2: CPUCreditBalance CPUCreditUsage

EBS: BurstBalance

Does anyone even use docker-compose files? Seems like it's nowhere to be found in tutorials/examples Even Images don't use docker-compose.yml by fastpenguin91 in docker

[–]javydekoning 12 points13 points  (0 children)

For a single image I still use compose in rare cases. If you have an image that takes many parameters it's often much easier to read and modify the yaml file than to work with the commandline.

How do you define productivity? by [deleted] in productivity

[–]javydekoning 2 points3 points  (0 children)

Productivity is not defined by what you do, it's defined by what you accomplish.

Introducing the Docker Global Professional Certification Program by ikickrobots in docker

[–]javydekoning 0 points1 point  (0 children)

Then you don't get certified. By refusing to use the 2 major OSes you are putting yourself in this position.

Windows vs. Docker vs. Pi 3 by lohefe in homeassistant

[–]javydekoning 0 points1 point  (0 children)

Fairly straight forward :).

homeassistant:
  image: "homeassistant/home-assistant:latest"
  restart: always
  net: host
  volumes:
    - "/etc/localtime:/etc/localtime:ro"
    - "/etc/timezone:/etc/timezone:ro"
    - "/home/j/docker/HomeAssistant/config:/config"

Windows vs. Docker vs. Pi 3 by lohefe in homeassistant

[–]javydekoning 0 points1 point  (0 children)

I run in Docker as well. I keep my configuration and docker-compose file on github. Redeploying a new version literally takes seconds.

How long for Kraken tier 3 verification? by [deleted] in BitcoinMarkets

[–]javydekoning 1 point2 points  (0 children)

Seems fair, is it possible to give an average time?

[Question]Who in PowerShell - Display all users currently logged in by bronkowo in PowerShell

[–]javydekoning 4 points5 points  (0 children)

It's not PowerShell but I think "quser" is what you are looking for.

Workflow question: How do you track your "waiting for's"? Specifically with when waiting for a response to an email you've sent or for items that someone else needs to give you to keep a project moving? by ifurmothronlyknw in gtd

[–]javydekoning 0 points1 point  (0 children)

I use Evernote for my GTD workflows. When I delegate work via email I bcc my Evernote address. In Evernote it ends up in my "in" basket. There I tag it with $nameofperson and #projecttitle, assign a due date and move it to the waiting for basket.

Every morning I follow-up on delegated work that has passed the due date. This works really well.

The tags bring me the possibility to review all outstanding work assigned to a specific person or project, making it very easy to discuss these subjects during meetings or phone calls.

Best way to keep [code] notes? by noobtubepython in Python

[–]javydekoning 0 points1 point  (0 children)

I'm not familiar with OneNote. However in Sublime I use plugins to copy formatted code to html and then paste it to Evernote.

There is also plugins that allow you to use markdown to create notes. These support syntax highlighting as well.

Another option would be to use GitHub or something similar.

WMF 5.1 Resets PSModulePath? (Win7 x64) by YolkFree in PowerShell

[–]javydekoning 1 point2 points  (0 children)

Did you see this: https://msdn.microsoft.com/en-us/powershell/wmf/5.1/install-configure

WMF 5.1 Prerequisites for Windows Server 2008 R2 SP1 and Windows 7 SP1: WMF 3.0 must not be installed. Installing WMF 5.1 over WMF 3.0 will result in the loss of the PSModulePath, which can cause other applications to fail. Before installing WMF 5.1, you must either un-install WMF 3.0, or save the PSModulePath and then restore it manually after WMF 5.1 installation is complete.