This file contains hidden or 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 Connect a Mooer Radar to a computer running MacOS and be able to use it with "Mooer Studio For Radar" | |
I purchased a Mooer Radar and never got it to work before because there always appeared an error or it always asked me to | |
update the firmware. | |
I tried different USB ports, different cables, different computers (even a laptop with Windows but got the same results) | |
but nothing seemed to work. | |
Fortunately today I was messing around with it and found that just by plugging the Mooer Radar powered on normally | |
(like when you use it) made the software finally recognize it. | |
Every other tutorial online shows that you have to press the red button before powering the unit until the |
This file contains hidden or 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 | |
use Carbon\Carbon; | |
//your class starts here | |
public function getLastTwelveMonthNames($date){ | |
Carbon::setlocale(config('app.locale')); | |
$month_names = [ | |
ucfirst((new Carbon($date))->translatedFormat('F')) |
This file contains hidden or 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/bash | |
#=============================================================================== | |
# | |
# FILE: iso2wbfs | |
# | |
# USAGE: ./iso2wbfs [option] FILE... [wbfs directory] | |
# | |
# DESCRIPTION: Uses wit to convert one or more Wii ISO into a WBFS file | |
# properly named for use on non-WBFS partitions. | |
# |
This file contains hidden or 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
<html> | |
<head> | |
<style> | |
.footer{ | |
justify-content: center; | |
} | |
p{ | |
text-align: center; | |
} |
This file contains hidden or 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
echo "Removing hostapd binaries..." | |
sudo rm /usr/bin/hostapd* | |
echo "Downloading jenssegers hostapd for R8188EU.." | |
wget https://github.com/jenssegers/RTL8188-hostapd/archive/v2.0.tar.gz | |
echo "Extracting files..." | |
tar -zxvf v2.0.tar.gz | |
echo "Changing directory to RTL8188-hostapd-2.0/hostapd..." | |
cd RTL8188-hostapd-2.0/hostapd | |
echo "Compiling..." | |
sudo make |