- Create a new user with administrator permissions
- Sign out of the current user and sign in as the newly created user
- Navigate to
C:\Users
in File Explorer - Click into the account you want move AppData from
- There could be a popup telling you that you need to allow yourself to access that user's data, do so
- Cut the AppData folder
- If invisible, go to View and check Hidden Items
- Paste in the desired location
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;nyquist plug-in | |
;version 4 | |
;type tool analyze | |
;name "Simple Clips Label" | |
;get data from audacity | |
(setf clips | |
(get '*TRACK* 'CLIPS)) | |
(setf time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jan 02 21:57:14 manjaro ts3client_linux_amd64[25699]: libpng warning: iCCP: known incorrect sRGB profile | |
Jan 02 22:01:43 manjaro sudo[6084]: pam_unix(sudo:auth): authentication failure; logname=demiu uid=1000 euid=0 tty=/dev/tty2 ruser=demiu rhost= user=demiu | |
Jan 02 22:01:46 manjaro pulseaudio[6425]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0" | |
Jan 02 22:01:46 manjaro pulseaudio[6425]: after 12 requests (6 known processed) with 0 events remaining. | |
Jan 02 22:01:46 manjaro systemd[5703]: pulseaudio.service: Main process exited, code=exited, status=1/FAILURE | |
Jan 02 22:01:46 manjaro org.a11y.atspi.Registry[6458]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0" | |
Jan 02 22:01:46 manjaro org.a11y.atspi.Registry[6458]: after 120670 requests (120670 known processed) with 0 events remaining. | |
Jan 02 22:01:46 manjaro systemd[5703]: pulseaudio.service: Unit entered failed state. | |
Jan 02 22:01:46 manjaro systemd[5703]: pulseaudio.service: Failed with r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[82909.554563] wlp0s20f0u2: associated | |
[86399.298277] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 13 in queue 2 | |
[86399.299625] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 1 in queue 2 | |
[86399.299657] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 1 in queue 2 | |
[86399.300972] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 4 in queue 2 | |
[88187.075754] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 11 in queue 2 | |
[88187.076483] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 4 in queue 2 | |
[88187.086204] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 3 in queue 2 | |
[88187.086422] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 5 in queue 2 | |
[88187.086631] ieee80211 phy0: rt2800usb_txdone: Warning - Data pending for entry 7 in queue 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Taken from journalctl | |
Dec 31 15:36:23 manjaro systemd-coredump[6910]: Process 1379 (steamwebhelper) of user 1000 dumped core. | |
Stack trace of thread 1398: | |
#0 0x000055fe11260cb7 _ZN3IPC17SharedObjectEvent4WaitEj (steamwebhelper) | |
#1 0x000055fe112b8e52 _ZN10CCEFThread12CIPCTaskPost3RunEv (steamwebhelper) | |
#2 0x000055fe1132789a _ZN16SteamThreadTools7CThread22ThreadExceptionWrapperEPv (steamwebhelper) | |
#3 0x000055fe11327113 _Z26CatchAndWriteMiniDump_ImplR22CatchAndWriteContext_t (steamwebhelper) | |
#4 0x000055fe113273b5 n/a (steamwebhelper) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As of 01/01/17 | |
Microphone I'm using is Samson GoMic, Steam probably is just set for default PA recording device | |
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
update() { | |
echo "Downloading lastest version..." | |
wget -q --show-progress http://downloads.counterplay.co/duelyst/v$VERSION/duelyst-v$VERSION-win32-x64.zip | |
echo "Extracting lastest version..." | |
unzip -q "duelyst-v$VERSION-win32-x64.zip" -d "duelyst-v$VERSION" | |
#Edit to run on Linux | |
echo "Editing files..." |