This file contains 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.validate.executablePath": "D:\\xampp\\php\\php-win.exe", | |
"php.executablePath": "D:\\xampp\\php\\php-win.exe", | |
"php.suggest.basic": false |
This file contains 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
[xdebug] | |
zend_extension="D:\xampp\php\ext\php_xdebug~.dll" | |
xdebug.remote_host=127.0.0.1 | |
xdebug.remote_port=9000 | |
xdebug.remote_enable=1 | |
xdebug.remote_autostart=1 |
This file contains 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
"pathMappings": { | |
"d:\\xampp\\htdocs": "d:\\work\\test_php" | |
}, |
This file contains 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
{ | |
"require": { | |
"felixfbecker/language-server": "*" | |
} | |
} |
This file contains 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
Gem::Ext::BuildError: ERROR: Failed to build gem native extension. | |
current directory: /home/mastodon/live/vendor/bundle/ruby/2.4.0/gems/idn-ruby-0.1.0/ext | |
/home/mastodon/.rbenv/versions/2.4.1/bin/ruby -r ./siteconf20170723-4482-j09tun.rb extconf.rb | |
checking for -lidn... no | |
ERROR: could not find idn library! | |
Please install the GNU IDN library or alternatively specify at least one | |
of the following options if the library can only be found in a non-standard | |
location: |
This file contains 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
Gem::Ext::BuildError: ERROR: Failed to build gem native extension. | |
current directory: /home/mastodon/live/vendor/bundle/ruby/2.4.0/gems/charlock_holmes-0.7.3/ext/charlock_holmes | |
/home/mastodon/.rbenv/versions/2.4.1/bin/ruby -r ./siteconf20170723-4139-33ca7g.rb extconf.rb | |
checking for -licui18n... no | |
which: no brew in | |
(/home/mastodon/.rbenv/versions/2.4.1/bin:/home/mastodon/.rbenv/libexec:/home/mastodon/.rbenv/plugins/ruby-build/bin:/home/mastodon/.rbenv/shims:~/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin) | |
checking for -licui18n... no | |
This file contains 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
List<string> personListB = new List<string>(); | |
personListB.AddRange(personList.Select(p => p.Name)); | |
personListB.RemoveAt(2); | |
var personSequence = personList.Select(p => p.Name).SequenceEqual(personListB); | |
Console.WriteLine(personSequence); |
This file contains 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
List<string> personListB = new List<string>(); | |
personListB.AddRange(personList.Select(p => p.Name)); | |
//personListB.RemoveAt(2); | |
var personSequence = personList.Select(p => p.Name).SequenceEqual(personListB); | |
Console.WriteLine(personSequence); |
This file contains 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 personContains = personList.Select(p => p.Name).Contains("とぅーびー"); | |
var personContains = personList.Select(p => p.Name).Contains("しー"); | |
Console.WriteLine(personContains); |
This file contains 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 personContains = personList.Select(p => p.Name).Contains("とぅーびー"); | |
//var personContains = personList.Select(p => p.Name).Contains("しー"); | |
Console.WriteLine(personContains); |
NewerOlder