Skip to content

Instantly share code, notes, and snippets.

View sustained's full-sized avatar
😓
working on website remake in Saber and exploring generative art and fractals

sustained sustained

😓
working on website remake in Saber and exploring generative art and fractals
View GitHub Profile
#!/bin/bash
PRIMARY="HDMI1"
SECONDARY="VGA1"
if [ ! -f "/home/sustained/Scripts/monitor_mode.dat" ]; then
monitor_mode="primary"
else
monitor_mode=`cat /home/sustained/Scripts/monitor_mode.dat`
fi
!!! IRRELEVANT LINES SNIPPED !!!
<sustained> Anyway, I'm just trying to find out some information on the AMD 990 FX memory bus. There's tons of information on HyperTransport but I'm struggling to find anything on the memory bus. I've been searching around for a while.
<wak-work> the chipset has nothing to do with that
<wak-work> look at the processor docs
<wak-work> but idk what you are looking to find
<sustained> Well, I'm making a presentation that breaks down the block diagram and explains everything for "someone who is not good with computers". I just don't really have any information for the bus that connects the CPU socket to RAM.
<sustained> But I'll look up the CPU docs.
<wak-work> you probably aren't going to get much beyond the traces are directly connected from the cpu to dimms unless you sign an NDA
<wak-work> most of the stuff is directly attached
const database = require('@/library/Database').default.db;
const Dictionary = require('@/library/Dictionary').default;
const state = {
words: {},
lookups: {}
};
const mutations = {
ADD_WORD(state, data) {
[padda@fladdermus Homestead]$ vagrant destroy
default: Are you sure you want to destroy the 'default' VM? [y/N] y
==> default: Forcing shutdown of VM...
==> default: Destroying VM and associated drives...
[padda@fladdermus Homestead]$
@sustained
sustained / ActivityTest.php
Created December 12, 2018 04:13
Medium - Laravel/PHP - Better (?) Activity Feeds (Laracasts Series: Let's build a Forum with TDD)
<?php
namespace Tests\Feature;
use App\User;
use App\Reply;
use App\Thread;
use App\Activity;
use Tests\TestCase;
id action subject_id subject_type
1 created 1 App\Models\Thread
2 created 1 App\Models\Reply
3 edited 1 App\Models\Reply
id action subject_id subject_type
1 created 1 thread
2 created 1 reply
3 edited 1 reply
<?php
namespace App\Providers;
use App\Reply;
use App\Thread;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Relations\Relation;
id action subject_id subject_type
1 created_thread 1 App\Models\Thread
2 created_reply 1 App\Models\Reply
3 edited_reply 1 App\Models\Reply
<?php
namespace Tests\Feature;
use App\User;
use App\Reply;
use App\Thread;
use App\Activity;
use Tests\TestCase;