Ta bort alla inställningar, paket och liknande som tillhör Sublime:
$ cd ~/Library/Application\ Support/ && open .
Leta upp "Sublime Text 3" och ta bort hela mappen.
<script> | |
window.intercomSettings = { | |
// Definiera intercomSettings på window. | |
app_id: 'APP_ID', | |
name: "Jane Doe", // Full name | |
email: "[email protected]", // Email address | |
created_at: 1312182000 // Signup date as a Unix timestamp | |
}; | |
</script> |
Place the following in the server block of your sites nginx config, ie /etc/nginx/sites-enabled/example.com
# Allow CORS
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Credentials' 'true' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Requested-With' always;
Place the following in the server block of your sites nginx config, ie /etc/nginx/sites-available/example.com
# Multisite
# https://github.com/roots/trellis/blob/master/roles/wordpress-setup/templates/wordpress-site.conf.j2
if (!-e $request_filename) {
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
rewrite ^(/[^/]+)?(/wp-.*) /wp$2 last;
// This file is overwritten whenever you change your user settings in the game. | |
// Add custom configurations to the file "userconfig.cfg". | |
unbindall | |
bind "TAB" "+showscores" | |
bind "ENTER" "+attack" | |
bind "ESCAPE" "cancelselect" | |
bind "SPACE" "+attack2" | |
bind "'" "+moveup" | |
bind "+" "sizeup" |
const puppeteer = require('puppeteer'); | |
const o2c = require('objects-to-csv'); | |
const list = require('./list'); | |
const res = []; | |
(async () => { | |
const browser = await puppeteer.launch({ | |
headless: false, | |
// slowMo: 200 // slow down by 250ms |
This is my constantly updated CS:GO autoexec config. Changelogs can be found under revisions here
Put autoexec.cfg in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg
or take what you want from it and add to your autoexec config!
After the Wild West Simulator 2015 update, video.txt needs to be put in ...\Steam\userdata\<Steam3 ID>\730\local\cfg
var title; | |
var story; | |
var garbage = ["should", "designers"]; | |
var stories = document.getElementsByClassName("list-story"); | |
for (var i in stories) { | |
story = stories[i]; | |
if ( story.classList.length === 1 ) { | |
title = story.getElementsByClassName("story-link")[0].getAttribute("alt").toLowerCase(); | |
if ( check(garbage[0], title) && check(garbage[1], title) ) { |