IPv4 Addr | IPv6 Addr | ASn | Loc | Svc | Org |
---|---|---|---|---|---|
8.8.8.8 | 2001:4860:4860::8888 | AS15169 | Worldwide (Anycast) | Google Public DNS | |
8.8.4.4 | 2001:4860:4860::8844 | AS15169 | Worldwide (Anycast) | Google Public DNS | |
77.88.8.8 | 2a02:6b8::feed:0ff | AS13238 | Worldwide (Anycast) | Yandex.DNS | Yandex |
77.88.8.1 | 2a02:6b8:0:1::feed:0ff | AS13238 | Worldwide (Anycast) | Yandex.DNS | Yandex |
1.1.1.1 | 2606:4700:4700::1111 | AS13335 | Worldwide (Anycast) | Cloudflare-DNS | Cloudflare/APNIC |
1.0.0.1 | 2606:4700:4700::1001 | AS13335 | Worldwide (Anycast) | Cloudflare-DNS | Clou |
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
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | |
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | |
<link rel="icon" type="image/png" sizes="36x36" href="/android-chrome-36x36.png"> | |
<link rel="icon" type="image/png" sizes="48x48" href="/android-chrome-48x48.png"> | |
<link rel="icon" type="image/png" sizes="72x72" href="/android-chrome-72x72.png"> | |
<link rel="icon" type="image/png" sizes="96x96" href="/android-chrome-96x96.png"> | |
<link rel="icon" type="image/png" sizes="144x144" href="/android-chrome-144x144.png"> | |
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png"> | |
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png"> | |
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png"> |
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
'Simulants by Curtis White for ChatGPT | |
'This demonstrates keeping track of world state such as turn variables and outputing at random probabilities. | |
'I found that using clear english and numbered instructions worked much more consistently then trying other types of data structures | |
'The random state variable is an implementation of an "Agent". | |
'Agents may be very useful for exploring conscious and developing games. They might be used to drive Finite State Machine or Markov Chains? | |
'A simulant is an expansion of a persona because we add state data. | |
'Output state data is useful for seeing whether the internal world data is processing or being fabricated or when it is processed, as well. | |
'Copy and paste everything starting from "The following" into the first prompt. You will get "..". Execute ".p Corp" to verify. | |
'Updated for controlling its output |
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
<style> | |
/* customizable snowflake styling */ | |
.snowflake { | |
color: #fff; | |
font-size: 1em; | |
font-family: Arial, sans-serif; | |
text-shadow: 0 0 5px #000; | |
} | |
@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:line |
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
##need-to-change-urls–in-css | |
##Example | |
##background-image: ##url('https://s3-eu-west-1.amazonaws.com/static-ressources/s1.png'), ##url('https://s3-eu-west-1.amazonaws.com/static-ressources/s2.png'), ##url('https://s3-eu-west-1.amazonaws.com/static-ressources/s3.png'); | |
##z-index:100; | |
<div class="snow" /> | |
<style> | |
.editor-stage .snow { | |
height:50px; | |
background: #fff; |
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
{% if settings.shopifytips_enable_effect %} | |
<script> | |
/*********************** | |
wWw.ShopifyTips.Com | |
***********************/ | |
var snowmax={{settings.shopifytips_number_of_snowflakes}}; | |
var snowcolor=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff"); | |
var snowtype=new Array("Times","Arial","Times","Verdana"); | |
var snowletter="*"; |
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
share-buttons.xyz | |
traffic2cash.xyz | |
с.новым.годом.рф | |
net-profits.xyz | |
social-widget.xyz | |
free-social-buttons.xyz | |
4webmasters.org | |
76brighton.co.uk | |
7makemoneyonline.com | |
acads.net |
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
function wpseo_cdn_filter( $uri ) { | |
return str_replace( 'http://yourdomain.com', 'http://cdn.yourdomain.com', $uri ); | |
} | |
add_filter( 'wpseo_xml_sitemap_img_src', 'wpseo_cdn_filter' ); |
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
# This is a Wordpress-optimised VCL configuration file for varnish. | |
backend default { | |
.host = "127.0.0.1"; | |
.port = "8080"; | |
.connect_timeout = 600s; | |
.first_byte_timeout = 600s; | |
.between_bytes_timeout = 600s; | |
.max_connections = 800; | |
} |
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
version: 2 | |
jobs: | |
validate_terraform: | |
docker: | |
- image: hashicorp/terraform | |
steps: | |
- checkout | |
- run: | |
name: Validate Terraform Formatting |
NewerOlder