So I was wondering what would my friends list would look like if represented on a node graph. Turns out there are people who already did it so i decided to enlist them and try a few later on the road.
Search for your favorite game, once you click on JOIN the json pack you unzipped and added on step 4 will auto download the required roms for you to play.
If for some reason you rely on xkey website for information, its awful the support is non existent, therefore you have to find the files yourself on the wayback machine.
Also if for some reason you’re scrolling infinitely through forums looking for the answer to “Red led is blinking when connected to usb xkey keyboard”, the reason is that the micro usb port is malfunctioning, either due to a bad cable o bad connection or bad unit. Those are the only answers, there’s no reset button and the latest firmware version is 2.4
And then they did VFX Apprentice pack with tutorials for other fx but this bunch of tuts it’s pretty hefty, plenty of good tips to setup your workspace and timing/spacing howtos for basic FX like impact, flames, smoke, etc…
Just found this promising software for 2D animation, pretty similar to what Cacani does but on a more simplified and straightforward way, also this tool is open source and free.
For those looking for 123 by autodesk, calligary truespace, carrara, azdrawing, azpainter, apdviewer, etc… this is a great website with all that abandonware hosted locally.
So you’ve been having problems reactivating your codemeter licenses, this website has the instructions on how to remove codemeter licenses via the cmd prompt.
Found this website for Peng Zhihui’s work that goes from robot building, pcb boards, to neural networks, image recognition, etc… must see if you’re curious about programming and robotics.
So you’ve been having issues with your wacom tablet (Intuos, Cintiq, Grapphire) 😛 and it stops being pressure sensitive or it just stops displaying the cursor altogether.
Then the only solution is to open Services.msc and stop/start the wacom service manually?
I made a tool that does it automatically for you, just create a new text file, copy the following code and save it as a .bat file, Example. Wacom_restart_service.bat
@echo off
set /p c= Quieres Reiniciar el Servicio Wacom [Y/N]?
if /I "%c%" EQU "Y" goto :4
if /I "%c%" EQU "N" goto :2
:1
set /p var= Service name:
:2
set /p c= Quieres Iniciar el Servicio Wacom[Y/N]?
if /I "%c%" EQU "Y" goto :5
if /I "%c%" EQU "N" goto :6
:4
sc stop WTabletServicePro
:5
sc start WTabletServicePro
echo Reiniciado por cocoalopez.com
pause
After you run it, it will display a question prompt, just press Y and it will stop and restart the service automatically for you.
Remember to press Y and ENTER
After it’s done, it will display this info
You’re all set.
Remember to run it as administrator in case it says you have no permission and if you cant use any mouse to do so, use the right click shortcut SHIFT+F10 on the .bat and select RUN AS ADMINISTRATOR
Edit 2022. If you want the code without the prompts, just paste this code on a BAT file.
@echo off
echo Reiniciando WTabletServicePro...
sc stop WTabletServicePro
sc start WTabletServicePro
echo Reiniciado por cocoalopez.com
pause