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
| lspci -vvnn | grep 14e4 | |
| sudo apt-get install firmware-b43-lpphy-installer | |
| echo "blacklist wl" >> /etc/modprobe.d/blacklist | |
| modprobe -r wl | |
| modprobe b43 | |
| Installation: | |
| - Install the Firmware: | |
| Code: | |
| sudo apt-get install build-essential |
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
| Decimal to Hexadecimal | |
| 10->A | |
| echo 'obase=16;10'| bc | |
| Or | |
| wcalc -h 10 | |
| Decimal to Octal | |
| 10->12 | |
| echo 'obase=8;10' | bc | |
| Or |
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
| style "gtkcompact" { | |
| font_name="Sans 8" | |
| GtkButton::default_border={0,0,0,0} | |
| GtkButton::default_outside_border={0,0,0,0} | |
| GtkButtonBox::child_min_width=0 | |
| GtkButtonBox::child_min_heigth=0 | |
| GtkButtonBox::child_internal_pad_x=0 | |
| GtkButtonBox::child_internal_pad_y=0 | |
| GtkMenu::vertical-padding=1 | |
| GtkMenuBar::internal_padding=0 |
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
| package org.kata.util.matchers; | |
| import org.hamcrest.Description; | |
| import org.json.JSONException; | |
| import org.mockito.ArgumentMatcher; | |
| import org.skyscreamer.jsonassert.JSONCompare; | |
| import org.skyscreamer.jsonassert.JSONCompareMode; | |
| import org.skyscreamer.jsonassert.JSONCompareResult; | |
| import static org.mockito.Matchers.argThat; |
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
| package org.kata.util.matchers; | |
| import com.fasterxml.jackson.databind.JsonNode; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import com.fasterxml.jackson.databind.node.ObjectNode; | |
| import org.hamcrest.Description; | |
| import org.json.JSONException; | |
| import org.mockito.ArgumentMatcher; |