This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a asp-area="" asp-controller="Home" asp-action="Index" class="navbar-brand">My Movie App List</a> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git init | |
git add --all | |
git commit -m "Initial commit" | |
ahora pal push | |
git remote add origin ssh://[email protected]:22/_ssh/MyFirstProject | |
git push -u origin --all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/bin/keytool>keytool -list -v -keystore "/Users/ymatias/.local/share/Xamarin/Mono for Android/debug.keystore" -alias pruebadebugkey -storepass matias -keypass matias | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
keytool -list -v -keystore [STORE FILENAME] -alias [ALIAS NAME] -storepass [STORE PASSWORD] -keypass [KEY PASSWORD] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta-data android:name="com.google.android.maps.v2.API_KEY" | |
android:value="AIzaSyCMNgOOa6Qmi5fVI8JQViLHLdcIGFe8VJg" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Label Text="Email: "/> | |
<Entry Keyboard="Email" Placeholder="Digite su Email"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Demo20 | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
byte CAMB, CANH, CANP; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:StarWarsPage" x:Class="StarWarsPage.MainPage"> | |
<Grid> | |
<Image Source="war.jpg" Aspect="AspectFill" HorizontalOptions="Fill" VerticalOptions="Fill"/> | |
<ScrollView x:Name="TextScrollView" Orientation="Vertical" RotationX="24" Padding="16,800"> | |
<Label x:Name="Text" Text="{StaticResource StarWarsText}" TextColor="Yellow" FontAttributes="Bold" FontSize="30" | |
HorizontalOptions="Fill"/> | |
</ScrollView> | |
</Grid> | |
<ContentPage.Resources> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Servidor | |
{ | |
private SqlConnection myConnection; | |
string cadenaConexion; | |
public void Conectar | |
{ | |
cadenaConexion = "cadena conexion" | |
myConnection = new SqlConnection(cadenaConexion) | |
myConnection.Open() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ON REDIRECT BY LANGUAGE | |
RewriteEngine on | |
RewriteCond %{HTTP:Accept-Language} (en) [NC] | |
RewriteRule .* http://en.example.com/ [R,L] | |
# OFF REDIRECT BY LANGUAGE |
NewerOlder