This file contains hidden or 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
The specified host network collides with a non-hostonly network! | |
This will cause your specified IP to be inaccessible. Please change | |
the IP or name of your host only network so that it no longer matches that of | |
a bridged or non-hostonly network. |
This file contains hidden or 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
<?php | |
class HTMLObject{ | |
private $id; | |
private $elem_class; | |
private $type; | |
private $extra_props; | |
//Do this for each property | |
public function setId($id = null){ | |
$this->id = $id; |
This file contains hidden or 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
System.ArgumentNullException: Value cannot be null. Parameter name: key at System.Collections.Generic.Dictionary`2.FindEntry(TKey key) at Microsoft.VisualStudio.Html.Package.Extensions.ExtensionsManager.OnTextViewCreated(ITextView textView, ITextBuffer textBuffer) at Microsoft.Web.Editor.Controller.TextViewConnectionListener.OnTextViewGotAggregateFocus(ITextView textView, ITextBuffer textBuffer) at Microsoft.VisualStudio.Html.Package.Commands.Html.VsHtmlTextViewConnectionListener.OnTextViewGotAggregateFocus(ITextView textView, ITextBuffer textBuffer) at Microsoft.Web.Editor.Controller.TextViewConnectionListener.<>c__DisplayClass24_0.<OnTextViewConnected>b__0(Object sender, EventArgs eventArgs) at Microsoft.VisualStudio.Text.Utilities.GuardedOperations.RaiseEvent(Object sender, EventHandler eventHandlers) |
This file contains hidden or 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
<?php | |
interface stuffShouldDo{ | |
public function whoo(); | |
} | |
class stuffDoer implements stuffShouldDo{ | |
public function __construct(){ | |
} | |
public function oneFunction(){ |
This file contains hidden or 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
var app = (() => { | |
class Example{ | |
Method(){ | |
let blaa = 4; | |
{ | |
console.log(4); | |
} | |
} | |
} |
This file contains hidden or 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
fn main(){ | |
match imaginary_thing.stuff(){ | |
Imaginary::ConstHere => || { | |
//Do stuff | |
}, | |
Imaginary::AnotherConst => || { | |
//Do Other stuff | |
} | |
} | |
} |
This file contains hidden or 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
{ | |
"serverConfig": { | |
"serverName": "example Server", | |
"serverAddress": "0.0.0.0:8080", | |
"maxConcurrentConnections": 10, | |
"maxConcurrentJobsRunning": 0 | |
}, | |
"databaseConfig": { | |
"databaseType": "mysql", | |
"databaseAddress": "127.0.0.7", |
This file contains hidden or 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
<?php | |
include 'vendor/autoload.php' | |
//NOTHING ELSE BELONGS IN THIS FILE | |
Application::Start(array('SettingsStuff' => array( | |
'AppName' => 'MyApp' | |
)),'POST,GET',true,function(){}); | |
?> |
This file contains hidden or 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
PHP-Stuffs | |
============= | |
1.Variables | |
2.LHS vs RHS. Types of evaluations | |
3.If i see you use eval() ill fucking kil you | |
4. Never use EVAL()! | |
5.functions | |
6. Classes | |
1.Constructor | |
2.Methods |
This file contains hidden or 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
<!DOCTYPE HTML> | |
<head> | |
<title>HTML5 Generators - RootZero</title> | |
<!--NO-CACHE-VERSIONING--> | |
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script> | |
<link rel="stylesheet" href="/core/style.css?v=0.1"/> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> | |
<meta charset="UTF8"> | |
</head> |