__m128 _mm_load_ps (float * a)
{
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
#ifndef _USB_CONFIG_H | |
#define _USB_CONFIG_H | |
//Defines the number of endpoints for this device. (Always add one for EP0) | |
#define ENDPOINTS 3 | |
//Defines a pin that is useful for debugging USB on a logic analyzer | |
//#define DEBUGPIN 2 | |
//DPLUS and DMINUS are not actually used except for setting things up. |
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
#ifndef _USB_CONFIG_H | |
#define _USB_CONFIG_H | |
//Defines the number of endpoints for this device. (Always add one for EP0) | |
#define ENDPOINTS 5 | |
//Defines a pin that is useful for debugging USB on a logic analyzer | |
//#define DEBUGPIN 2 | |
//DPLUS and DMINUS are not actually used except for setting things up. |
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
1. Setup Nvidia driver | |
Go to Drivers > Install Tested Nvidia | |
2. After installing Nvidia the dither for the background of Ubuntu would be horrible. You'll need to go into Nvidia settings and enable Dither | |
NVIDIA X Server Settings > DFP-0-(LGD) > Change to Controls tab > "Dithering" > Enabled | |
3. Setup kb backlight | |
# 0 - 3 and 3 is the brightest |
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
#How to mount a volume in Windows Docker toolbox | |
1. docker run --rm -it -v "/c/Users/Public:/home" ubuntu bash | |
-v source <host>:<vm_client> | |
#How to get GUI from Linux container into Windows host | |
#Installing Docker in Windows | |
Occasionally we have issues with Oracle VirtualBox, uninstall and reinstall with this command |
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
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
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
#include <SPIFFS.h> | |
/* | |
* | |
* Copyright (C) 2017 CS.NOL https://github.com/csnol/1CHIP-Programmers | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, | |
* and You have to keep below webserver code |