Companion to: "How I Set Up OpenClaw Without Giving It the Keys to My Life"
sudo sysadminctl -addUser openclaw -password - -home /Users/openclaw| import java.io.File; | |
| import java.io.IOException; | |
| import java.nio.charset.Charset; | |
| import java.text.DateFormat; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import java.util.Locale; | |
| import java.util.TimeZone; | |
| import okio.BufferedSource; | |
| import okio.ByteString; |
| // ==UserScript== | |
| // @name RTL Jira | |
| // @namespace medianesh.com:9090 | |
| // @include http://medianesh.com:9090/* | |
| // @version 0.2 | |
| // @grant none | |
| // ==/UserScript== | |
| function isRTL(text) { | |
| if (text !== "") { |
| // ==UserScript== | |
| // @name RTL Slack | |
| // @namespace slask.com | |
| // @include https://*.slack.com/* | |
| // @version 1.2.2 | |
| // @grant none | |
| // ==/UserScript== | |
| function isRTL(text) { | |
| if (text !== "") { |
| from tornado import gen, ioloop | |
| from rx import Observable | |
| def create_observable(observer): | |
| observer.on_next(50) | |
| observer.on_next(2) | |
| observer.on_next(8) |
| public class SomeFragment extends Fragment { | |
| MapView mapView; | |
| GoogleMap map; | |
| @Override | |
| public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { | |
| View v = inflater.inflate(R.layout.some_layout, container, false); | |