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
| $ tools/dev/v8gen.py -vv x64.debug | |
| ################################################################################ | |
| /usr/bin/python -u tools/mb/mb.py gen -f infra/mb/mb_config.pyl -m developer_default -b x64.debug out.gn/x64.debug | |
| Writing """\ | |
| is_debug = true | |
| target_cpu = "x64" | |
| v8_enable_backtrace = true | |
| v8_enable_slow_dchecks = true | |
| v8_optimized_debug = false |
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
| Posted here: https://fftsys.azurewebsites.net/atiq/tech/msql-command-examples | |
| create table customer | |
| (WordAlias varchar(50), | |
| WordSerial tinyint, | |
| PartsOfSpeech varchar(30), | |
| Meaning varchar(1000), | |
| UseInSentence varchar(200), | |
| BPron varchar(30), | |
| BAntonym varchar(100), |
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
| How to install editable comment plugin? | |
| - Copy the editable comment plugin dir to plugin dir | |
| http://wordpress.org/extend/plugins/editable-comments/ | |
| - Activate plugin from admin account | |
| - Edit this file, "WORDPRESSINSTALLDIR\wp-includes\comment-template.php" | |
| - After line | |
| <?php comment_text() ?> | |
| Please Add, | |
| <?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::edit('Edit'); } ?> |
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
| /* | |
| Example output (on sparc), | |
| 1969772169 | |
| 1969772169 | |
| 0x75685689 | |
| 75685689 | |
| 016532053211 | |
| 16532053211 | |
| */ |
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
| diff --git a/bootstrap/win/get_file.js b/bootstrap/win/get_file.js | |
| index 2561fb3c..a4a5c4f6 100644 | |
| --- a/bootstrap/win/get_file.js | |
| +++ b/bootstrap/win/get_file.js | |
| @@ -6,20 +6,37 @@ function Download(url, path, verbose) { | |
| if (verbose) { | |
| WScript.StdOut.Write(" * GET " + url + "..."); | |
| } | |
| - try { | |
| - xml_http = new ActiveXObject("MSXML2.ServerXMLHTTP"); |
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
| $ git show HEAD | |
| commit e8480ae76179949c08c90b81fc3b16792b5f514c (HEAD -> solaris-os-supoort) | |
| Author: Atiq Rahman <[email protected]> | |
| Date: Sun Jul 30 19:14:27 2017 -0700 | |
| Support Solaris platform on a few arch | |
| diff --git a/cipd b/cipd | |
| index ef2e4ad5..f2884bff 100755 | |
| --- a/cipd |
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
| /* | |
| * Copied from: https://paste.ofcode.org/e2wNKmt5QyriNTeEZYbNei | |
| * In case that paste content expires | |
| */ | |
| #include <cmath> | |
| #include <cstdio> | |
| #include <vector> | |
| #include <iostream> | |
| #include <algorithm> | |
| using namespace std; |
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
| /* Question 1 of a C# Test | |
| What will be outputs | |
| 0 | |
| 10 | |
| 60 | |
| Possibly from: wiziq.com | |
| */ | |
| using System; | |
| using System.Collections.Generic; |
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
| /* Question 2 of a C# Test | |
| http://www.wiziq.com/online-tests/14096-csharp-your-skills-1 | |
| ref Convert.ToString: | |
| https://msdn.microsoft.com/en-us/library/astxcyeh(v=vs.110).aspx | |
| Quote: | |
| Return Value | |
| Type: System.String | |
| The string representation of value, or String.Empty if value is an object | |
| whose value is null. If value is null, the method returns null. |
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; | |
| class KthSmallest { | |
| int[] A; | |
| public KthSmallest() { | |
| } | |
| // representation should be taken, process input | |
| public void TakeInput() { | |
| A = Array.ConvertAll(Console.ReadLine().Split(), int.Parse); |