O
O
orbit0702020-02-14 17:27:54
redux
orbit070, 2020-02-14 17:27:54

What is the best way to create a workspace on a home PC?

I used to use a separate laptop for work, but there is not enough power in it, so I wanted to ask for advice: what is the best way to create a working environment on a home PC so that it does not have access to a non-working environment? At work, I have to connect via VPN, which is why I want an isolated environment. A separate local Windows account will not be enough for these purposes? Or is it better to raise a virtual machine? Please tell me who is using

Answer the question

In order to leave comments, you need to log in

3 answer(s)
W
webe, 2019-06-09
@webe

The task is not entirely clear.
make 3 reducers for each entity, here is an example for one.

const initialState = [{
    id: 1,
    name: "тест1"
  },

  {
    id: 2,
    name: "тест2"
  }
]

function boardReducer(state = initialState, action) {
  switch (action.type) {
    case 'ADD_BOARD':
      return [...state, {
        id: Math.random(),
        name: action.payload
      }]
    case 'EDIT_BOARD':
      return state.map((item) => item.id === action.payload.id ? { ...item.action.payload.name
      } : item)
    case 'DELETE_BOARD':
      return state.filter((item) => item.id !== action.payload)

    default:
      return state
  }
}

I
Ivan Yakushenko, 2020-02-14
@orbit070

I have some porridge + a virtual machine with Linux.
In general, a strange question, look from the needs. It's convenient to work with different accounts - do it with different accounts, if it's not convenient - don't do it. A virtual machine is often used when an OS is needed that is different from the main one, but not enough to install it as a second system, it is not very comfortable to use it fully for work.
For work accounts, I just have a different browser installed, and that's it.

V
Vladimir Korotenko, 2020-02-15
@firedragon

I'll write my config.
HP Z 420
Xeon e5-2680 v2
64 GB
256 Samsung 860 boot
512 Samsung 960 virtual
1 TB raid 1
2 TB file dump
2 monitors 4K + FHD
Operating system Windows 10
Hyper-V role raised
Inside mac-os, debian, ubuntu, several stands with windows server
In principle, if I installed it now, I would choose windows server 2019 and enable deduplication on the disk with virtual machines.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question