[
// ===================================================
// window navigation
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl+l",
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
#include<iostream> | |
using namespace std; | |
int main() | |
{ | |
char ch; | |
cin >> ch; | |
if(ch >= 65 && ch <= 90) | |
cout << “UpperCase character”; | |
else if(ch >= 97 && ch <= 122) | |
cout << “Lower Case Character”; |
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
using System; | |
namespace Algorithms { | |
class CustomLinkedList { | |
Node head; | |
public class Node { | |
public int data; | |
public Node next; |
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 names = new[] | |
{ | |
"Ana", | |
"Felipe", | |
"Emillia" | |
}; | |
foreach (var name in names) | |
{ | |
Console.WriteLine($"Hello {name}"); |
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
LAlt & i::Send, {3} | |
LAlt & e::Send, {2} | |
LAlt & n::Send, {1} | |
LAlt & o::Send, {0} | |
LAlt & l::Send, {4} | |
LAlt & y::Send, {6} | |
LAlt & u::Send, {5} | |
LAlt & '::Send, {7} | |
LAlt & )::Send, {8} |
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
#### Functional requirements. | |
1. Mantain a library of albums/songs. | |
2. Allow users to browse albums/songs. | |
3. Allow users to select individual songs. | |
4. Prevent user from selecting entire albums. | |
5. Maitain a queue of song to play. | |
6. Play music. | |
7. Allow users to sort by artist. |
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
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
[ | |
{ | |
"name": "Advanced Git Workshop", | |
"instructor": "Edwin Kamau", | |
"description": "level up your Git Skills", | |
"website": "https://eduuh.codes", | |
"phone": "(333) 333-3333", | |
"email": "[email protected]", | |
"address": "Dkut Kenya", | |
"careers": ["Web Development", "Data Science", "Business"], |
NewerOlder