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/sh | |
sudo apt-get install git build-essential linux-headers-$(uname -r) | |
git clone https://github.com/lwfinger/rtl8723bu | |
sed -i 's/EXTRA_CFLAGS += -DCONFIG_CONCURRENT_MODE/#EXTRA_CFLAGS += -DCONFIG_CONCURRENT_MODE/g' ~/rtl8723bu/Makefile | |
cd rtl8723bu | |
make | |
sudo make install | |
xed admin:///etc/modprobe.d/blacklist.conf |
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
[Unit] | |
Description=HTIX5288 driver workaround | |
[email protected] | |
After=systemd-user-sessions.service [email protected] plymouth-quit.service systemd-logind.service suspend.target | |
[Service] | |
ExecStart=/usr/local/bin/touchpad.sh | |
[Install] | |
WantedBy=multi-user.target suspend.target |
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
<?sap.transform simple?> | |
<tt:transform xmlns:tt="http://www.sap.com/transformation-templates"> | |
<tt:root name="ROOT"/> | |
<tt:variable name="skip"/> | |
<tt:template> | |
<root> | |
<values> | |
<tt:assign to-var="skip" val="0"/> | |
<tt:group> | |
<tt:d-cond frq="?"> |
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
<root> | |
<values> | |
<material>1</material> | |
<prod>XXXX</prod> | |
<foo>bar</foo> | |
<values> | |
</root> |
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
REPORT ZTEST_SORT_DUP_DELETE_VS_HASH. | |
TYPES: | |
BEGIN OF ts_data, | |
num TYPE i, | |
END OF ts_data. | |
TYPES: | |
BEGIN OF ts_result, | |
lines TYPE i, |
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
REPORT zaz_unlock_editor. | |
PARAMETERS p_prog TYPE trdir-name OBLIGATORY. | |
START-OF-SELECTION. | |
UPDATE PROGDIR SET edtx = space WHERE name = p_prog AND edtx = 'X'. | |
COMMIT WORK. | |
WRITE 'Done'. |
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
*DEFINITION | |
private section. | |
types: | |
begin of ts_dest, | |
bskey type SLD_BSKEY, | |
logsys type TBLSYSDEST-logsys, | |
dest type TBLSYSDEST-rfcdest, | |
end of ts_dest, | |
tt_dest type HASHED TABLE OF ts_dest with UNIQUE key bskey. |
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
class-methods SY2RETURN | |
exporting | |
!ES_RETURN type BAPIRET2 | |
changing | |
!CT_RETURN type BAPIRET2_T optional . | |
METHOD sy2return. | |
CALL FUNCTION 'BALW_BAPIRETURN_GET2' | |
EXPORTING | |
type = sy-msgty |
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
function logClass(target: any) { | |
// save a reference to the original constructor | |
var original = target; | |
// a utility function to generate instances of a class | |
function construct(constructor, args) { | |
var c : any = function () { | |
return constructor.apply(this, args); | |
} |
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
class ZCL_TVARVC definition | |
public | |
abstract | |
final | |
create public . | |
public section. | |
class-methods CHECK_VALUE | |
importing |