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
| diff --git a/Engine/Plugins/MetaHuman/MetaHumanCharacter/MetaHumanCharacter.uplugin b/Engine/Plugins/MetaHuman/MetaHumanCharacter/MetaHumanCharacter.uplugin | |
| index a8d8d6cead22..4a2a956de9f4 100644 | |
| --- a/Engine/Plugins/MetaHuman/MetaHumanCharacter/MetaHumanCharacter.uplugin | |
| +++ b/Engine/Plugins/MetaHuman/MetaHumanCharacter/MetaHumanCharacter.uplugin | |
| @@ -19,10 +19,7 @@ | |
| { | |
| "Name": "MetaHumanCharacterEditor", | |
| "Type": "Editor", | |
| - "LoadingPhase": "Default", | |
| - "PlatformAllowList": [ |
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 | |
| { | |
| echo '{"version":["sessionrestore",1],"windows":[{"tabs":[' | |
| while read url; do | |
| echo '{' | |
| echo '"entries":[{"url":"'$url'"}]' | |
| echo '},' | |
| done <links | |
| echo '{}' |
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 | |
| [ -n "$_LOCK" ] || _LOCK=x exec flock -n $0 $0 | |
| echo once | |
| sleep 5s |
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 main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" | |
| "time" | |
| ) | |
| func main() { |
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 {my,yours}{,-}{domain,host}.{com,org} | xargs -P16 -n1 host | awk '/NX/{print "\033[32;1m[free]\033[0m "$2}' |
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 | |
| http -a"$2:$3" http://jira.rn/rest/api/2/search\?jql\="labels in (jwh:$2:in-work)" \ | |
| | jq '.issues[0].key' \ | |
| | sed -res#^#$1browse/# \ | |
| | xargs -n1 xdg-open |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/mman.h> | |
| #define FUNC1_PLACEHOLDER 0xDEADBEEFABADF00D | |
| int func1() { | |
| int *ptr = (int*)FUNC1_PLACEHOLDER; |
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
| COMMENT::=Converts arbitary number to binary. | |
| COMMENT::=Number must be surrounded by ^ and $. | |
| 1::=(on)| | |
| 2::=(tw)| | |
| 3::=(th)| | |
| 4::=(fo)| | |
| 5::=(fi)| | |
| 6::=(si)| | |
| 7::=(se)| | |
| 8::=(ei)| |