ANSWERE:
sudo apt install -y broadcom-sta-dkms
Inspection TOOLS:
sudo apt list | grep broadcom
broadcom-sta-dkms
sudo lspci | grep Network
This is your tech spec’s abstract: the who/what/when/where/why of your entire proposal, made succinct. One or two sentences, keep it brief.
Contextualize your project:
- why build it?
- What is the motivation?
- What user problems are you attempting to solve?
- What previous efforts, if any, have been made to solve this problem?
I hereby claim:
- I am nelsonenzo on github.
- I am nelsonehernandez (https://keybase.io/nelsonehernandez) on keybase.
- I have a public key whose fingerprint is 6C44 BBC6 35AC A777 45D0 BFD0 D53B A0A9 F8A7 C6B5
To claim this, I am signing this object:
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
{ | |
/* Visit https://firebase.google.com/docs/database/security to learn more about security rules. */ | |
"rules": { | |
".read": "auth != null && auth.provider == 'anonymous' && auth.uid == 'SERVICE-ACCOUNT-CLIENT-ID'", | |
".write": "auth != null && auth.provider == 'anonymous' && auth.uid == 'SERVICE-ACCOUNT-CLIENT-ID'" | |
} | |
} |
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
# This is Git's per-user configuration file. | |
[user] | |
name = Nelbo Baggins | |
email = [email protected] | |
[alias] | |
shove = "!git push --set-upstream origin \"$(git rev-parse --abbrev-ref HEAD)\"" |
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
# A sample Gemfile | |
source "https://rubygems.org" | |
gem "capistrano" | |
gem "capistrano-node-deploy" |
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
Great Resource: http://www.json.org/js.html | |
// 99% of the time, you will want to be digest a json string from rails and read it into a javascript object. | |
response = JSON.parse(myJSONtext); | |
// then you can call the hash keys like they were methods | |
response.md5sum | |
response.file_name | |
// a reviver could be used as a pre-processor sort of, usually it will be left off. |
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
First include JQuery tools: | |
<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js"></script> | |
Then rename all it's functions | |
<script> | |
$.fn.jqt_tabs = $.fn.tabs; | |
$.fn.jqt_scrollable = $.fn.scrollable; | |
$.fn.jqt_tooltip = $.fn.tooltip; | |
$.fn.jqt_overlay = $.fn.overlay; |
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
$ rails generate refinery_engine singular_model_name attribute:type [attribute:type ...] | |
note: to see all the options supported by the refinery_engine generator just run rails g refinery_engine | |
field type description | |
text a multiline visual editor | |
resource a link which pops open a dialog which allows the user to select an existing file or upload a new one | |
image a link which pops open a dialog which allows the user to select an existing image or upload a new one | |
string and integer a standard single line text input |
NewerOlder