$ docker
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
| 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 | |
| -- Insert faculties | |
| INSERT INTO faculties (name) VALUES | |
| ('Faculty of Business and Management'), | |
| ('Faculty of Computer Science and Technology'), | |
| ('Faculty of Creative Arts and Design'), | |
| ('Faculty of Education'), | |
| ('Faculty of Environmental Studies'), | |
| ('Faculty of Social Sciences'), |
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
| - Open Automator | |
| - File -> New -> Service | |
| - Change "Service Receives" to "files or folders" in "Finder" | |
| - Add a "Run Shell Script" action | |
| - Change "Pass input" to "as arguments" | |
| - Paste the following in the shell script box: open -n -b "com.microsoft.VSCode" --args "$*" | |
| - Save it as something like "Open in Visual Studio Code" |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
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 list of banks in Nigeria | |
| nigerianBanks = [ | |
| 'Access Bank', | |
| 'Citibank', | |
| 'Diamond Bank', | |
| 'Dynamic Standard Bank', | |
| 'Ecobank Nigeria', | |
| 'Fidelity Bank Nigeria', | |
| 'First Bank of Nigeria', |
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
| import java.util.Scanner; | |
| public class Solution { | |
| static boolean isAnagram(String a, String b) { | |
| // // once you declare a.toUppercase you should assign it to a. you cannot define it as just a.toUppercase... | |
| // //I solved it with the long way however I could put a and b in a character array and then use Arrays.sort(arrayname). after this steps convert them to string and check if they are equel. | |
| a=a.toUpperCase(); | |
| b=b.toUpperCase(); | |
| boolean ret = false; | |
| StringBuilder c= new StringBuilder(b); |