Posts

Showing posts with the label Actionscript Example

Debian Server Iso Download Code Example

Example 1: download debian 505 a1522daa30d77f4fa5acd4fa3d8c5e1a1cbb4 debian - 10.7 .0 - amd64 - netinst . iso 75088471 b359cd21635afe427a1598ce111dfc41 debian - 10.7 .0 - amd64 - xfce - CD - 1. iso 66 bf9321fcda7cc32040bf644a8a714d9b62adbe debian - edu - 10.7 .0 - amd64 - netinst . iso 5 b326dc3fd2e6c1b686dfa16b0b6d83e81bc5455 debian - mac - 10.7 .0 - amd64 - netinst . iso Example 2: download debian -- -- - BEGIN PGP SIGNATURE -- -- - iQIzBAABCAAdFiEE35ucSeqpKYQyWJ122ofoDWKUvpsFAl / MN + AACgkQ2ofoDWKU vpuPRg / + P / Lc7hlQGGt9a9aCxxikMmLqnsaEi7w0LkvOxzb9SSvRkc55xv / uSwJ / u + G6gezVGctMPTHEXgt19b4jOpw + xxyqkLIQ0MZzzGNOkXbP5chaie + IFxWXBXiI ybP1sixHnpTW1LfyUK6sA / + ayZMNoYb3VIlfVyYXgRzoG7qCFDkhu + WnsALESCG + 1 ffZBgEqA24XkKjp1cDUzmxy9ZvtRIlSiV3rWq0opCyzhYFI44GNZXatDd4jyjOH bgT / LhUPj / dFISFOBYEGL5jWwl + nZP3k6k3JUU30YXlisAu4JLA08UXdzIpgHjCf VRn6oWlx8Gs0Zi19mZ6giaG / zDy4EuHZP0MvQeD53ixXJb3MlLc0zAhYGKnpBzuV R90W3WcbNfu0DTCVQvgtaOQG + XUMlsXB8zGl9cjpUYsKYlceWc5xsVY...

Update Multiple Columns Sql Code Example

Example 1: update column sql server UPDATE table_name SET column1 = value1 , column2 = value2 , . . . WHERE condition ; Example 2: add multiple columns to table sql //Example ALTER TABLE employees ADD last_name VARCHAR ( 50 ) , first_name VARCHAR ( 40 ) ; Example 3: sql update multiple columns from another table -- Oracle UPDATE table2 t2 SET ( VALUE1 , VALUE2 ) = ( SELECT COL1 AS VALUE1 , COL1 AS VALUE2 FROM table1 t1 WHERE t1 . ID = t2 . ID ) ; -- SQL Server UPDATE table2 t2 SET t2 . VALUE1 = t1 . COL1 , t2 . VALUE2 = t1 . COL2 FROM table1 t1 INNER JOIN t2 ON t1 . ID = t2 . ID ; -- MySQL UPDATE table2 t2 INNER JOIN table1 t1 USING ( ID ) SET T2 . VALUE1 = t1 . COL1 , t2 . VALUE2 = t1 . COL2 ; Example 4: sql server update multiple columns at once UPDATE Person . Person Set FirstName = 'Kenneth' , LastName = 'Smith' WHERE BusinessEntityID = 1 Example 5: update multi...

Media Querry For Smart Phone Code Example

Example 1: css tricks media queries /* ----------- iPhone 4 and 4S ----------- */ /* Portrait and Landscape */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 480 px ) and ( - webkit - min - device - pixel - ratio : 2 ) { } /* Portrait */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 480 px ) and ( - webkit - min - device - pixel - ratio : 2 ) and ( orientation : portrait ) { } /* Landscape */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 480 px ) and ( - webkit - min - device - pixel - ratio : 2 ) and ( orientation : landscape ) { } /* ----------- iPhone 5, 5S, 5C and 5SE ----------- */ /* Portrait and Landscape */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 568 px ) and ( - webkit - min - device - pixel - ratio : 2 ) { } ...

Sql Update Set Multiple Columns Code Example

Example 1: sql update multiple columns from another table -- Oracle UPDATE table2 t2 SET ( VALUE1 , VALUE2 ) = ( SELECT COL1 AS VALUE1 , COL1 AS VALUE2 FROM table1 t1 WHERE t1 . ID = t2 . ID ) ; -- SQL Server UPDATE table2 t2 SET t2 . VALUE1 = t1 . COL1 , t2 . VALUE2 = t1 . COL2 FROM table1 t1 INNER JOIN t2 ON t1 . ID = t2 . ID ; -- MySQL UPDATE table2 t2 INNER JOIN table1 t1 USING ( ID ) SET T2 . VALUE1 = t1 . COL1 , t2 . VALUE2 = t1 . COL2 ; Example 2: sql server update multiple columns at once UPDATE Person . Person Set FirstName = 'Kenneth' , LastName = 'Smith' WHERE BusinessEntityID = 1 Example 3: update multiple columns in sql UPDATE table - name SET column - name = value , column - name = value WHERE condition = value Example 4: update table sql multiple set -- CANT do multiple sets but can do case UPDATE table SET ID = CASE WHEN ID = 2555 THEN 111111259 ...

Open Local Pdf File In Webview Android Code Example

Example: read pdf web on android webView . loadUrl ( "https://docs.google.com/viewer?url=" + "url of pdf file" ) ;

Media Query For Tablet And Mobile Code Example

Example 1: media query for mobile view css @ media only screen and ( max - width : 600 px ) { body { background - color : lightblue ; } } Example 2: media query desktop /* Extra small devices (phones, 600px and down) */ @ media only screen and ( max - width : 600 px ) { . . . } /* Small devices (portrait tablets and large phones, 600px and up) */ @ media only screen and ( min - width : 600 px ) { . . . } /* Medium devices (landscape tablets, 768px and up) */ @ media only screen and ( min - width : 768 px ) { . . . } /* Large devices (laptops/desktops, 992px and up) */ @ media only screen and ( min - width : 992 px ) { . . . } /* Extra large devices (large laptops and desktops, 1200px and up) */ @ media only screen and ( min - width : 1200 px ) { . . . } Example 3: media querries for tablets /* ----------- iPad 1, 2, Mini and Air ----------- */ /* Portrait and Landscape */ @ media only screen and ( min - device - width : 768 px...

Change Color Scheme Windows Terminal Code Example

Example: visual studio code change terminal color "workbench.colorCustomizations" : { "terminal.background" : "#1D2021" , "terminal.foreground" : "#A89984" , "terminalCursor.background" : "#A89984" , "terminalCursor.foreground" : "#A89984" , "terminal.ansiBlack" : "#1D2021" , "terminal.ansiBlue" : "#0D6678" , "terminal.ansiBrightBlack" : "#665C54" , "terminal.ansiBrightBlue" : "#0D6678" , "terminal.ansiBrightCyan" : "#8BA59B" , "terminal.ansiBrightGreen" : "#95C085" , "terminal.ansiBrightMagenta" : "#8F4673" , "terminal.ansiBrightRed" : "#FB543F" , "terminal.ansiBrightWhite" : "#FDF4C1" , "terminal.ansiBrightYellow...

Vs Code Terminal Colors Code Example

Example 1: visual studio code change terminal color "workbench.colorCustomizations" : { "terminal.background" : "#1D2021" , "terminal.foreground" : "#A89984" , "terminalCursor.background" : "#A89984" , "terminalCursor.foreground" : "#A89984" , "terminal.ansiBlack" : "#1D2021" , "terminal.ansiBlue" : "#0D6678" , "terminal.ansiBrightBlack" : "#665C54" , "terminal.ansiBrightBlue" : "#0D6678" , "terminal.ansiBrightCyan" : "#8BA59B" , "terminal.ansiBrightGreen" : "#95C085" , "terminal.ansiBrightMagenta" : "#8F4673" , "terminal.ansiBrightRed" : "#FB543F" , "terminal.ansiBrightWhite" : "#FDF4C1" , "terminal.ansiBrightYell...

Mongodb Docker Hub Code Example

Example: mongodb docker docker run - d - p 27017 - 27019 : 27017 - 27019 -- name mongodb mongo : 4.0 .4

Python Ascii Colors Code Example

Example 1: ansi colors Black \e [ 0 ; 30 m Blue \e [ 0 ; 34 m Green \e [ 0 ; 32 m Cyan \e [ 0 ; 36 m Red \e [ 0 ; 31 m Purple \e [ 0 ; 35 m Brown \e [ 0 ; 33 m Gray \e [ 0 ; 37 m Dark Gray \e [ 1 ; 30 m Light Blue \e [ 1 ; 34 m Light Green \e [ 1 ; 32 m Light Cyan \e [ 1 ; 36 m Light Red \e [ 1 ; 31 m Light Purple \e [ 1 ; 35 m Yellow \e [ 1 ; 33 m White \e [ 1 ; 37 m Example 2: python ansi escape sequences color collection class colors : reset = "\033[0m" # Black fgBlack = "\033[30m" fgBrightBlack = "\033[30;1m" bgBlack = "\033[40m" bgBrightBlack = "\033[40;1m" # Red fgRed = "\033[31m" fgBrightRed = "\033[31;1m" bgRed = "\033[41m" bgBrightRed = "\033[41;1m" # Green fgGree...

Docker-compose Healthcheck Curl Container Code Example

Example: healthcheck docker compose healthcheck : test : [ "CMD" , "curl" , "-f" , "http://localhost" ] interval : 1 m30s timeout : 10 s retries : 3 start_period : 40 s

Update Multiple Columns In Sql Server Code Example

Example 1: sql update multiple columns from another table -- Oracle UPDATE table2 t2 SET ( VALUE1 , VALUE2 ) = ( SELECT COL1 AS VALUE1 , COL1 AS VALUE2 FROM table1 t1 WHERE t1 . ID = t2 . ID ) ; -- SQL Server UPDATE table2 t2 SET t2 . VALUE1 = t1 . COL1 , t2 . VALUE2 = t1 . COL2 FROM table1 t1 INNER JOIN t2 ON t1 . ID = t2 . ID ; -- MySQL UPDATE table2 t2 INNER JOIN table1 t1 USING ( ID ) SET T2 . VALUE1 = t1 . COL1 , t2 . VALUE2 = t1 . COL2 ; Example 2: sql server update multiple columns at once UPDATE Person . Person Set FirstName = 'Kenneth' , LastName = 'Smith' WHERE BusinessEntityID = 1 Example 3: update multiple columns in sql UPDATE table - name SET column - name = value , column - name = value WHERE condition = value

Css Tricks Media Queries Code Example

Example 1: css tricks media queries /* ----------- iPhone 4 and 4S ----------- */ /* Portrait and Landscape */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 480 px ) and ( - webkit - min - device - pixel - ratio : 2 ) { } /* Portrait */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 480 px ) and ( - webkit - min - device - pixel - ratio : 2 ) and ( orientation : portrait ) { } /* Landscape */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 480 px ) and ( - webkit - min - device - pixel - ratio : 2 ) and ( orientation : landscape ) { } /* ----------- iPhone 5, 5S, 5C and 5SE ----------- */ /* Portrait and Landscape */ @ media only screen and ( min - device - width : 320 px ) and ( max - device - width : 568 px ) and ( - webkit - min - device - pixel - ratio : 2 ) { } ...