Skip to content

Instantly share code, notes, and snippets.

@GeorgeJ1986
GeorgeJ1986 / PY0101EN-1-2-Strings.ipynb
Created Oct 4, 2020
Created on Skills Network Labs
View PY0101EN-1-2-Strings.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@oliviabrownn
oliviabrownn / gist:d922b980313ea71ba524ad06dd77f107
Created Oct 4, 2020
I will give a professional and high quality company logo design
View gist:d922b980313ea71ba524ad06dd77f107
I will give a professional and high quality Company Logo design in 12 hours for $5.
Hi Dear,
You will receive high quality professional logo from my gig. I always provide creative concept. I give 100% satisfaction guarantee to all my clients. Final file will send in transparent PNG and JPG formats. I recommend to all my clients, purchase the vector files.
My services:
100% High quality logo design
100% very fast delivery
100% high rating logo design
View listcomp_conditional_assign.py
>>> # The list of integers
>>> integers = [1, 2, 3, 4, 5, 6]
>>> # Create a list of numbers, when the item is even, take the square
>>> # when the item is odd, take the cube
>>> custom_powers = [x*x if x % 2 == 0 else pow(x, 3) for x in integers]
>>> print(custom_powers)
[1, 4, 27, 16, 125, 36]
@delewit
delewit / PascalsTriangle.hs
Created Oct 4, 2020
Print out Pascal's triangle.
View PascalsTriangle.hs
import Data.List (intercalate)
import Control.Concurrent (threadDelay)
import System.IO
{- Douglas Lewit of Oakton Community College and Northeastern Illinois University is the
writer of this program. I love how amazingly concise Haskell code can be. This same
program in C, C++ or Java would be at least twice as long. -}
View Salam.java
public class Salam
{
public static void main(String[] args) {
System.out.println("salam");
}
}
View gist:46af3c041c421c4fe559497a4de503a7
Messenger-LoRa.h:29:3: style: Class 'MessengerLoRa' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
MessengerLoRa(Settings * settings);
^
Message.h:19:3: style: Class 'Message' has a constructor with 1 argument that is not explicit. [noExplicitConstructor]
Message(char * packetPayload);
^
Meshtastic-ESP32CryptoEngine.h:29:18: style: The function 'setKey' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride]
virtual void setKey(size_t numBytes, uint8_t *bytes)
^
Meshtastic-CryptoEngine.h:25:18: note: Virtual function in base class
View Reporte_alebrijes_3_10_2020.md

Antología de publicaciones seleccionadas por la Comunidad Alebrijes # La Comunidad Alebrijes se enfoca en crear nuevas cuentas y dar delegaciones gratis de hasta 100 HP a los nuevos usuarios y a su vez cuenta con un proyecto de curación de contenido original principalmente en español.

Si estas teniendo problemas con la cantidad de créditos de recursos (RC) para realizar transacciones en la blockchain de Hive acércate a nuestro Servidor de Discord para solicitar una delegación gratis desde 15 HP hasta 100 HP que tengas tus propios 30 HP.
View FamilyTree - Grandpa output.txt
0: Grandpa
1: Dad
1: My Uncle
2: Me
2: My sister
2: My Cousin
3: My Daughter
3: My niece
3: My nephew
View post-receive
#!/bin/bash
# auto deploy and install dependencies using yarn
while read oldrev newrev ref
do
# only checking out the master (or whatever branch you would like to deploy)
if [[ $ref =~ .*/master$ ]];
then
echo "Master ref received. Deploying master branch to production..."
git --work-tree=/home/user/deploy-folder/ --git-dir=/home/user/project.git/ checkout -f
cd /home/user/deploy-folder/
@crodjer
crodjer / a80-cleanup.sh
Created Oct 4, 2020
Remove Samsung A80 Bloatware
View a80-cleanup.sh
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon
adb shell pm uninstall -k --user 0 com.netflix.mediaclient
adb shell pm uninstall -k --user 0 com.netflix.partner.activation
adb shell pm uninstall -k --user 0 com.facebook.services
adb shell pm uninstall -k --user 0 com.facebook.system
adb shell pm uninstall -k --user 0 com.facebook.appmanager
adb shell pm uninstall -k --user 0 com.android.stk2
adb shell pm uninstall -k --user 0 com.samsung.android.aremoji
adb shell pm uninstall -k --user 0 com.samsung.android.ardrawing
adb shell pm uninstall -k --user 0 com.sec.android.app.fm
You can’t perform that action at this time.