MS SQL Server Copy Field Data from Another Table without SELECT
Had to try this without a SELECT statement. UPDATE Designs SET Designs.ParentCompanyName = C.CompanyName FROM Designs D INNER JOIN Customers AS C ON D.ParentCustomerID = C.CustomerID
Had to try this without a SELECT statement. UPDATE Designs SET Designs.ParentCompanyName = C.CompanyName FROM Designs D INNER JOIN Customers AS C ON D.ParentCustomerID = C.CustomerID
The LED flashes approximately 150ms every 5 seconds. RC1 (pin 9), triggers the LED. Interestingly, the PIC consumes 28uA at idle, no matter which method is used. Compiles with Microchip’s XC8 (v1.38) Delay function, 28 bytes Timer 0 delay, 31 …
PIC16F684 Flashing an LED with delay_ms, TMR0, Interrupt, & WDT Read more »
Prerequisites Raspberry Pi Zero 4GB or larger microSDHC card, with either USB or SD card adapter for PC Mini HDMI to HDMI adapter Mini USB to female USB-A adapter USB-Fast Ethernet adapter Powered USB 2.0 hub Install an OS on …
HOWTO: Install Poisontap on Raspberry Pi Zero 1.3 – Linux/Windows IN PROGRESS Read more »
Create user ‘git’ with password xxx su – vi /etc/bashrc export PATH=$PATH:$HOME/bin save su – git mkdir -p $HOME/bin chmod 755 $HOME/bin mkdir ../.gitolite mkdir ../.gitolite/logs homebrew install git gitolite setup -pk .ssh/id_rsa.pub ssh-keygen -t rsa -C “git” eval `ssh-agent …
Install a git server on PPC Mac OS X 10.5.8 – IN PROGRESS Read more »
This isn’t a magical cut and paste example. YOU need to do some work. Why? There are a number of Vishay thermistors, all with different properties and I don’t know which one you have. The values included here are for …
Using Vishay NTCASCWE3102J or NTCASWE3xx NTC Thermistors with the PIC18F2550 Read more »
So, you’re missing a few 32 bit libraries on your 64 bit Fedora install. Note, I DID NOT need to install 32-bit java. # java -version openjdk version “1.8.0_111” OpenJDK Runtime Environment (build 1.8.0_111-b16) OpenJDK 64-Bit Server VM (build 25.111-b16, …
This example demonstrates a high priority interrupt on the PIC18F2550 and MPLABX 3.40 IDE with the XC 1.38 compiler. Make sure YOU remove the spaces WordPress throws in, if not your compiler will whine. Sorry, I can’t assist if you …
Lets make this easy and switch up to root: $ su – Password: Install the following files: dnf install samba samba-common samba-client system-config-samba dnf install policycoreutils-python-utils Configure SELinux to enable read/write access to shared dirs: semanage fcontext -a -t samba_share_t …
Below is a 16-bit Timer0 example for the PIC18F2550 using the XC8 1.38 compiler. I’ve included two examples: INITCONbits and straight up INTCON. Why? Well, In one project, the XC8 compiler bitched with: C:\Program Files (x86)\Microchip\xc8\v1.38\include\pic18f2550.h:8051: error: (1098) conflicting declarations …
Eagle CAD complains of missing libraries > sh eagle-lin64* Ensure the following libraries are available: libssl.so.1.0.0 => not found libcrypto.so.1.0.0 => not found The fix: # cd /usr/lib64 # ln -s libssl.so.10 libssl.so.1.0.0 # ln -s libcrypto.so.10 libcrypto.so.1.0.0