This file contains 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
Record (levy.no zone) Type Value | |
A 208.113.196.74 | |
MX 0 mx1.sub5.homie.mail.dreamhost.com. | |
MX 0 mx2.sub5.homie.mail.dreamhost.com. | |
NS ns1.dreamhost.com. | |
NS ns2.dreamhost.com. | |
NS ns3.dreamhost.com. | |
_domainkey TXT o=~; [email protected] | |
levy.no._domainkey TXT k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDfOpmWfQc0Ay14sM1fu26MysRct4R9sV3 | |
Znu8GJuJ1GWiUhlUKtECHI2EQDA9ZMItAtmiNSJyd2wRDI4ZnLGbp/3RPmzdpHE0m+CRcHz12PkvRBG8 |
This file contains 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/chrome/android/java/src/org/chromium/chrome/browser/media/router/cast/CastMediaRouteProvider.java b/chrome/android/java/src/org/chromium/chrome/browser/media/router/cast/CastMediaRouteProvider.java | |
index 211afd2abe62..5a897d98f120 100644 | |
--- a/chrome/android/java/src/org/chromium/chrome/browser/media/router/cast/CastMediaRouteProvider.java | |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/media/router/cast/CastMediaRouteProvider.java | |
@@ -10,6 +10,9 @@ import android.support.v7.media.MediaRouteSelector; | |
import android.support.v7.media.MediaRouter; | |
import android.support.v7.media.MediaRouter.RouteInfo; | |
+import org.json.JSONException; | |
+import org.json.JSONObject; |
This file contains 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
$ cat out-linux/Debug/args.gn | |
is_debug = true | |
is_clang = true | |
is_component_build = true | |
symbol_level = 1 | |
use_goma = true | |
$ cat out-engine/Debug/args.gn | |
import("//build/args/blimp_engine.gn") | |
is_debug = true |
This file contains 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
name: foo-target | |
cmd: make foo | |
sh: true | |
targets: | |
bar-target: | |
cmd: make bar | |
sh: true | |
baz-target: | |
cmd: make baz | |
sh: true |
This file contains 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
<html> | |
<head> | |
<title> | |
California Avenue project | |
</title> | |
</head> | |
<body> | |
<h1>California Avenue project website</h1> |
This file contains 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
<html> | |
<body> | |
<h1>Hello world!</h1> | |
<p> | |
Welcome to my world. | |
</p> | |
</body> |
This file contains 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
### Dockerfile | |
FROM ubuntu | |
RUN apt-get update && apt-get install -yq xvfb | |
ADD xvfb-run-wrapper.sh /bin/xvfb-run-wrapper.sh | |
RUN chmod +x /bin/xvfb-run-wrapper.sh | |
ENTRYPOINT ["/bin/xvfb-run-wrapper.sh", "/bin/sleep"] | |
CMD ["10000"] | |
### | |
### xvfb-run-wrapper.sh |
This file contains 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
##### Dockerfile | |
FROM ubuntu | |
RUN apt-get update && apt-get install -yq xvfb | |
ENTRYPOINT ["xvfb-run", "-a", "/bin/sleep" ] | |
CMD ["10000"] | |
##### Result of docker exec -it container_name ps auxf | |
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND | |
root 35 0.0 0.0 15560 1100 ? Rs+ 20:27 0:00 ps auxf | |
root 1 0.1 0.0 4440 716 ? Ss 20:27 0:00 /bin/sh /usr/bin/xvfb-run -a /bin/sleep 10000 | |
root 16 0.7 0.0 266644 12992 ? Sl 20:27 0:00 Xvfb :99 -screen 0 640x480x8 -nolisten tcp -auth /tmp/xvfb-run.RU0s0T/Xauthority |
This file contains 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
"""Wrapper to fake the version info for pylama.exe on Windows. | |
This still requires a patch to linter-pylama for the regexp | |
to include \r\n.""" | |
import sys | |
import subprocess | |
PYLAMA_PATH = 'C:/Python27/ArcGIS10.2/Scripts/pylama.exe' |
This file contains 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
base::Time network_time; | |
base::TimeDelta uncertainty; | |
if (!g_browser_process->network_time_tracker()->GetNetworkTime( | |
base::TimeTicks::Now(), &network_time, &uncertainty)) { | |
// Fallback to local time if network time is not available. | |
network_time = base::Time::Now(); | |
} | |
if (network_time.is_null()) | |
NOTREACHED(); |
NewerOlder