Skip to content

Instantly share code, notes, and snippets.

View goldcoders's full-sized avatar

GOLDCODERS CORP goldcoders

View GitHub Profile
@goldcoders
goldcoders / 3-variables-ex-1
Created August 20, 2023 16:08
Rust bootcamp
fn main() {
let x = 5;
println!("x has the value {}", x);
}
@goldcoders
goldcoders / Installation.md
Last active December 23, 2021 20:56
Develop Flutter Apps on Windows WSLg for Native Linux Apps and Android

Windows 11 with WSLg - Android , WSL(Ubuntu) Linux Desktop - Flutter SetUp

Install Dart on Ubuntu

sudo wget -qO /etc/apt/trusted.gpg.d/dart_linux_signing_key.asc https://dl-ssl.google.com/linux/linux_signing_key.pub
sudo wget -qO /etc/apt/sources.list.d/dart_stable.list https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list
sudo apt update
sudo apt install -y dart
dart --version
@goldcoders
goldcoders / .tmux.conf
Last active March 31, 2022 12:39
tmux alacritty combo
# INSTALL
# cp tmuxconf ~/.tmux.conf
#
# Set prefix key to c-a instead of default c-b
# Tmux Overried Keybinding on Alacritty
# Vim Workflow Goodness
unbind C-b
set -g prefix C-a
bind C-a send-prefix
// Q2 Week 2
// No. 4
using System;
public class Program
{
public static void Main()
{
Console.WriteLine("Enter a number: ");
// Q2 Week 2
// No 3.
using System;
public class Program
{
public static void Main()
{
// get the first number and 2nd number
// Q2 Week2
// No. 2
using System;
public class Program
{
public static void Main()
{
// get the first number and 2nd number
// and show result which is greater than the two numbers
// Q2 Week 4
// No.3
using System;
public class Program
{
public static void Main()
{
// create a program that show descending value numbers from smallest to largest
// Q2 Week 4
// No.2
using System;
public class Program
{
public static void Main()
{
// create a program that show ascending value numbers from smallest to largest
int number = 1;
// Q2 Week 3
// No. 3
using System;
public class Program
{
public static void Main()
{
// show the descending value numbers from smallest to largest.
// Q2 Week 3
// No. 2
using System;
public class Program
{
public static void Main()
{
// show the ascending value numbers from smallest to largest.
int i = 0;