105 Search results

For the term "評判のMicrosoft AZ-104日本語認定試験の問題集 🐫 “ www.goshiken.com ”を開いて➤ AZ-104日本語 ⮘を検索し、試験資料を無料でダウンロードしてくださいAZ-104日本語日本語対策問題集".

Get Week of Month in a Salesforce Formula Field

…of the date we want to get the week of the month of. Once we have the difference in days we can take that value divided by 7 less the remainder to get the day of the week index. Completed Formula CEILING( ( DAY( Date__c ) + MOD( DATE( YEAR( Date__c ), MONTH( Date__c ), 1 ) – DATE( 1900, 4, 1 ), 7 ) ) / 7 )…

Day 36: Las Vegas Ski & Snowboard Resort

…ll the way back to 55 once I got to them about 10 minutes after leaving. Crazy. I headed north again, and in the distance I saw some big dunes. I’ve always wanted to ride some real dunes, and figured this was why I have a Subaru, and headed out across the desert. It was further than I thought, and there were no real roads, just lots and lots of sand, so it started getting pretty sketchy. I finally made it out there, and while the actual ride was a…

Reinstall All Homebrew Packages

…lding openssl which fixed the signal 4 error, likely due to changes in the compiler. I decided that recompiling all the packages would be a good idea to prevent any future issues, and after some digging found this script which I modifying slightly. #!/bin/bash # Reinstall all brew packages and dependencies in the correct order # – list all installed packages # – print the package followed by its dependencies # – print the package and a single depe…

Use jQuery + Plugins with Visualforce Pages

…n is being reported as an undefined function in the console? To the rescue comes jQuery.noConflict(true);. First you will want to upload both jQuery and your plugin as Static Resources, or from a CDN if you prefer. For our purposes we will assume they are Static Resources called jQuery and jQueryPlugin. As soon as the javascript sources is includes – jQuery first followed by plugins – we need to make a call to noConflict() to free up the $ resourc…

Github + Multiple Repository SSH Deploy Keys

…f the repositories you want to specify a deploy key for. Host repo1 github.com Hostname github.com IdentityFile /home/username/.ssh/github_repo1 Host repo2 github.com Hostname github.com IdentityFile /home/username/.ssh/github_repo2 SSH will refuse to use the config file if it has the wrong permissions, so set them to 400. chmod 400 /home/username/.ssh/config Clone Git Repository Using Alias Now we can clone the repository using the SSH alias whic…

MongoDB Clustering for CentOS 7

…do from the Query Router. So either log on to MongoDB using mongo from the command line, or from a different server use mongo –host app01. use admin; db.runCommand( { addShard: “shard01:27018”, name: “shard01” } ); { “shardAdded” : “shard01”, “ok” : 1 } db.runCommand( { addShard: “shard02:27018”, name: “shard02” } ); { “shardAdded” : “shard02”, “ok” : 1 } db.runCommand( { listShards: 1 } ); { “shards” : [ { “_id” : “shard01”, “host” : “shard01:27…