Skip to content

Instantly share code, notes, and snippets.

View sambhav2612's full-sized avatar
👋
Building Suitable AI

Sambhav Jain sambhav2612

👋
Building Suitable AI
View GitHub Profile
@sambhav2612
sambhav2612 / astradot-frontend-challenge.markdown
Created August 8, 2020 09:34
AstraDot Frontend Challenge
@sambhav2612
sambhav2612 / _.md
Last active May 24, 2020 14:05
javascript - the good parts
  • objects pass by reference not copy
    • when any enclosed property is deleted, it'll delete the current object's property however due to object reflection, it'll now inherit parent objects valye for that property.
    • object reflection: every object intrinsically spans its control back to the Object.prototype spec, even those objects literals we define internally map to that.
  • anoymous functions: self-invokating functions with no name
(() => {
 ..
 ..
})();
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" package="com.credboapp">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
/**
* common shareable state
*/
export const INITIAL_STATE = {
userName: null,
userReferralCode: null,
userToken: null,
userSignup: false,
userLoggedIn: false

Keybase proof

I hereby claim:

  • I am sambhav2612 on github.
  • I am sambhav2612 (https://keybase.io/sambhav2612) on keybase.
  • I have a public key ASAgA2uEpghN_6Y8rmRY_vrfIMrgkOExvHcBBGwQR1lzsQo

To claim this, I am signing this object:

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sambhav2612
sambhav2612 / gist:1973513bc22d31fa2fdc17dab9ec3a05
Created June 1, 2018 16:37 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
ENO
ENAME
JOB_TYPE
MANAGER
HIRE_DATE
DNO
COMMISSION
SALARY
783
select * from emp33;
update dept33
set DNAME = 'Accounting'
where DNO = 10;
delete from dept33 where DNO = 60;
select ENO, ENAME from emp33 where MANAGER = null;
select ENO, ENAME from emp33 order by ENAME, ENO;
select * from emp33, dept33 where emp33.DNO = dept33.DNO;