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
| #include "llvm/DerivedTypes.h" | |
| #include "llvm/IRBuilder.h" | |
| #include "llvm/LLVMContext.h" | |
| #include "llvm/Module.h" | |
| #include "llvm/Analysis/Verifier.h" | |
| #include "llvm/Support/raw_os_ostream.h" | |
| #include <iostream> | |
| #include <fstream> | |
| #include <vector> |
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
| SystemPropertiesRemote.exe | |
| ipconfig |
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> | |
| <html lang="en"> | |
| <head> | |
| <style> | |
| .blocks { | |
| display: inline; | |
| } | |
| p { | |
| padding: 0; | |
| margin: 0; |
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
| $scope.ondernemingnr = "BE1111.111.111"; | |
| lastenboekData.getLastenboeken($scope.ondernemingnr, function(err, data) { | |
| if (err) { | |
| console.log(err); | |
| } else { | |
| $scope.lastenboeken = data; | |
| if ($scope.lastenboeken.length > 0) { | |
| $scope.LastenboekId = $scope.lastenboeken[0].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
| res.header('content-type', contentType); | |
| res.send({ 'cards': cards, | |
| 'links': [{ | |
| 'method': 'get', | |
| 'rel': 'http://relations.stackofcards.com/card', | |
| 'href': '/api/card/' | |
| }] | |
| }); |
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
| using System; | |
| namespace MacRocketFly | |
| { | |
| public class Point | |
| { | |
| public float X { | |
| get; | |
| set; | |
| } |
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> | |
| <html > | |
| <head> | |
| <title>Files property test</title> | |
| <script type="text/javascript"> | |
| function reqListener() { | |
| console.log('listened'); | |
| } | |
| function getFiles() { |
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
| mymodule.directive('nullIfEmpty', [function() { | |
| return { | |
| require: 'ngModel', | |
| link: function(scope, elm, attr, ctrl) { | |
| ctrl.$parsers.unshift(function(value) { | |
| return value === '' ? null : value; | |
| }); | |
| } | |
| }; | |
| }] |
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
| ## Arrived at page 52 (Statements) | |
| class Number < Struct.new(:value) | |
| def to_s | |
| value.to_s | |
| end | |
| def inspect | |
| "<<#{self}>>" | |
| end |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Xml; | |
| namespace TOCParser | |
| { | |
| public class XHtmlDocParser | |
| { | |
| private XmlNamespaceManager _mgr; |