Tag: en
-
All the Swift tutorials in one place
On SoSoSwift you can find hundreds of project in Swift, updated to the last version.
-
MacBooks without batteries severely throttled
Link https://tinyapps.org/blog/201811150700_macbook_slow_no_battery.html And more https://apple.stackexchange.com/questions/335247/macbook-pro-with-shot-battery-possible-to-prevent-cpu-throttling
-
How to flash Tuya or SmartLife switches over the air
So… no soldering required: https://youtu.be/O5GYh470m5k git clone https://github.com/ct-Open-Source/tuya-convert cd tuya-convert ./install_prereq.sh And you can find other information here: https://github.com/ct-Open-Source/tuya-convert/blob/master/README.md Also support with Reddit: https://www.reddit.com/r/homeassistant/comments/akea2n/flash_your_tuyasmartlife_switches_over_the_air_no/
-
Fix InnoDB error: The InnoDB memory heap is disabled
160826 14:07:30 mysqld_safe Number of processes running now: 0 160826 14:07:30 mysqld_safe mysqld restarted 160826 14:07:30 [Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead. 160826 14:07:30 [Note] /usr/sbin/mysqld (mysqld 5.5.50) starting as process 24167 … 160826 14:07:30 [Warning] […]
-
Top 10 MySQL mistakes made by PHP developers
Here https://www.sitepoint.com/mysql-mistakes-php-developers/
-
How to remove primary key on MySQL
First of all remove AI (auto increment) on the cols and then: ALTER TABLE name_table DROP PRIMARY KEY;
-
How to set locale variables automatically
On macOS of course, because in Ubuntu and other distro you probably already have. So… open terminal and create a new file: sudo nano ~/.profile Then paste this two line and save: export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 You need to have the mark on “Set locale environment variables on startup” like in the screenshot.
-
How to reset all iOS simulators
Open the terminal and then execute: osascript -e ‘tell application “iOS Simulator” to quit’ osascript -e ‘tell application “Simulator” to quit’ xcrun simctl erase all Source: https://gist.github.com/ZevEisenberg/5a172662cb576872d1ab
-
Why TunnelBear is the best VPN
Because it is. You need to try to understand what I mean. Try it for 7 days and then you can say to me that is the best VPN out here.
-
Where to find the log of the Raspberry Pi
If you want to find where, how and why your Raspberry Pi doesn’t work like it should… well. cat /var/log/syslog This save your life and start to understand what’s happen.